:root {
  --bg: #F7F4EE;
  --fg: #1A2C2A;
  --accent: #C9853A;
  --muted: #7A8E8B;
  --card-bg: #EDEAE3;
  --border: #D4CFBF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-loc {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 4rem;
  align-items: start;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
}
.hero-footer {
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

/* ── Approach ── */
.approach {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}
.approach-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3px 1fr 3px;
  gap: 2.5rem;
  align-items: center;
}
.approach-rule {
  height: 100%;
  background: var(--accent);
  width: 3px;
}
.approach-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
}

/* ── Services ── */
.services {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.25rem;
}

/* ── Lanes ── */
.lanes {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--fg);
}
.lanes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lanes-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3rem;
}
.lanes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lane {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: baseline;
}
.lane:last-child { border-bottom: none; }
.lane-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg);
}
.lane-desc {
  font-size: 0.9rem;
  color: rgba(247, 244, 238, 0.5);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-location {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-aside {
    flex-direction: row;
    gap: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .approach-inner {
    grid-template-columns: 0 1fr 0;
    gap: 1.5rem;
  }
  .approach-rule { display: none; }
  .lane {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.5rem 2.5rem; }
  .hero-stat { gap: 0.1rem; }
  .stat-num { font-size: 2.2rem; }
  .services, .lanes, .closing { padding: 3.5rem 1.5rem; }
}