:root {
  --bg: #111111;
  --header: #0a0a0a;
  --accent: #fe2f29;
  --text: #1a1a1a;
  --muted: #555555;
  --paper: #ffffff;
  --line: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

a:hover {
  color: #c41e1a;
}

.site-header {
  background: var(--header);
  color: #fff;
}

.site-header a {
  color: #fff;
  text-decoration: none;
}

.nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

.hero {
  background: var(--bg) center / cover no-repeat;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 96px 24px 48px;
}

.hero-inner h1,
.section h2,
.legal h1 {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-inner h1 {
  margin: 0 0 8px;
  font-size: 2.2rem;
}

.legal-name,
.lede,
.muted {
  font-family: system-ui, -apple-system, sans-serif;
}

.legal-name {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .legal-name {
  color: #ffd6d4;
}

.lede {
  margin: 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 48px;
}

.section {
  margin-bottom: 48px;
}

.section:last-child {
  margin-bottom: 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.section p,
.legal p,
.legal li {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
}

.contact p {
  margin: 0 0 8px;
}

.services {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.services li {
  font-family: system-ui, -apple-system, sans-serif;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 8px;
}

.sms {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sms h2 {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.sms p {
  margin: 0 0 6px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.sms p:last-child {
  margin-bottom: 0;
}

.sms a {
  color: #ffd6d4;
}

.legal h1 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.legal h2 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--header);
  color: rgba(255, 255, 255, 0.8);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.site-footer .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px;
}

.site-footer a {
  color: #fff;
}

.site-footer nav {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 55vh;
  }

  .hero-inner {
    padding: 72px 24px 36px;
  }

  .hero-inner h1 {
    font-size: 1.7rem;
  }
}
