﻿/* ===========================================
   THE LANDING HAVEN — Design System
   Luxury desert aesthetic
   =========================================== */

:root {
  --cream: #F7F5F2;
  --cream-light: #FDFCFA;
  --sand: #DCD7CD;
  --sand-deep: #C8C2B8;
  --brown: #A89E8B;
  --brown-deep: #7A7167;
  --charcoal: #0D1B2A;
  --charcoal-warm: #2B2B2B;
  --gold: #C4A265;
  --sage: #7D8A7A;
  --copper: #A67C52;
  --text: #2B2B2B;
  --text-light: #A89E8B;
  --text-muted: #C8C2B8;
  --accent: #A67C52;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-sub: 'Montserrat', 'Helvetica Neue', sans-serif;
  --section-py: 140px;
  --page-pad: clamp(20px, 5vw, 40px);
  --nav-height: 72px;
}

[data-spacing="standard"] { --section-py: 100px; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

/* --- Grain Texture Overlay --- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* --- Shared --- */
.is-hidden { display: none; }

.accent-rule {
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
  opacity: 0.7;
}
.accent-rule--hero {
  width: 40px;
  padding: 0;
  margin: 0 auto 30px;
}
.accent-rule--hero-end {
  width: 40px;
  padding: 0;
  margin: 30px auto 0;
}
.accent-rule--service {
  width: 28px;
  padding: 0;
  margin: 24px auto 30px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-delay-50 { transition-delay: 50ms; }
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-120 { transition-delay: 120ms; }
.reveal-delay-140 { transition-delay: 140ms; }
.reveal-delay-150 { transition-delay: 150ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-240 { transition-delay: 240ms; }
.reveal-delay-250 { transition-delay: 250ms; }
.reveal-delay-280 { transition-delay: 280ms; }
.reveal-delay-360 { transition-delay: 360ms; }
.reveal--vis { opacity: 1; transform: none; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--cream-light);
}
.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247,245,242,0.3);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg { padding: 18px 52px; font-size: 12px; }
.btn--full {
  width: 100%;
  text-align: center;
}

/* === NAVIGATION === */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: env(safe-area-inset-top) 40px 0;
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background: var(--charcoal);
  transition: background 0.4s ease;
  pointer-events: none;
}

.nav--scrolled {
  background: rgba(247,245,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav--scrolled::before {
  background: rgba(247,245,242,0.95);
}

.nav--on-dark:not(.nav--scrolled) .nav__brand-name { color: var(--cream); }
.nav--on-dark:not(.nav--scrolled) .nav__brand-sub { color: rgba(247,245,242,0.6); }
.nav--on-dark:not(.nav--scrolled) .nav__brand-divider { background: rgba(247,245,242,0.3); }
.nav--on-dark:not(.nav--scrolled) .nav__links a { color: rgba(247,245,242,0.6); }
.nav--on-dark:not(.nav--scrolled) .nav__links a:hover { color: var(--cream); }
.nav--on-dark:not(.nav--scrolled) .nav__cta { border-color: rgba(247,245,242,0.25); color: var(--cream); }
.nav--on-dark:not(.nav--scrolled) .nav__cta:hover { border-color: var(--gold); color: var(--gold); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.nav__brand-divider {
  width: 1px;
  height: 18px;
  background: var(--sand-deep);
  transition: background 0.3s;
}
.nav__brand-sub {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

.nav__links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--charcoal); }

.nav__cta {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 10px 24px;
  border: 1px solid var(--sand-deep);
  transition: all 0.3s;
}
.nav__cta:hover { border-color: var(--accent); color: var(--accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__cta-mobile { display: none; }
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--charcoal);
  transition: background 0.3s;
}
.nav--on-dark:not(.nav--scrolled) .nav__hamburger span { background: var(--cream); }

/* === HERO === */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--min-tall { min-height: 700px; }
.hero--dark { background: var(--charcoal); }

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 40px 80px;
  max-width: 700px;
}
.hero__inner--home {
  padding-top: 96px;
  padding-bottom: 80px;
}
.hero__inner--area { text-align: center; }
.hero__label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.hero__label--home {
  color: rgba(196,162,101,0.65);
  padding: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.hero__title--light { color: var(--cream); }
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto 20px;
  text-align: center;
}
.hero__body--home {
  color: rgba(247,245,242,0.6);
  max-width: 520px;
  margin: 0 auto 16px;
}
.hero__body--secondary {
  margin-top: 0;
  margin-bottom: 36px;
}
.hero__body--home-secondary {
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.btn--hero { margin-top: 24px; }
.hero__tagline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  max-width: 500px;
  margin: 28px auto 0;
  line-height: 1.7;
  text-align: center;
}
.hero__tagline--home { color: rgba(247,245,242,0.35); }

/* === SECTIONS === */

.section {
  position: relative;
  padding: var(--section-py) 40px;
  scroll-margin-top: 80px;
}

.section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section__inner--narrow { max-width: 740px; }
.section__inner--center { text-align: center; }

.section__label {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}
.section__label--light { color: var(--gold); }

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.section__heading--light { color: var(--cream); }

.section__intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.85;
}

/* Services */
.section--services { background: var(--cream-light); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.svc-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 44px 36px 40px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13,27,42,0.08);
}
.svc-card--featured { border-top: 2px solid var(--accent); }
.svc-card__badge {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,162,101,0.08);
  padding: 4px 12px;
}
.svc-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.svc-card__subtitle {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.svc-card__features {
  list-style: none;
  margin-bottom: 28px;
}
.svc-card__features li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.svc-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 11px;
}
.svc-card__features li:last-child { border-bottom: none; }
.svc-card__link {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}
.svc-card__link:hover { color: var(--brown-deep); }

/* Brand Voice */
.section--brand-voice {
  background: var(--charcoal);
}
.brand-voice__tagline {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(247,245,242,0.58);
  text-align: center;
  margin: -4px auto 0;
  line-height: 1.6;
}
.brand-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.brand-voice-item__label {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.brand-voice-item__rule {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin-bottom: 16px;
}
.brand-voice-item__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(247,245,242,0.45);
  line-height: 1.9;
}

/* FAQ */
.section--faq { background: var(--cream); }
.faq-list { margin-top: 20px; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__toggle {
  font-family: var(--font-sub);
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item__a-inner {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.85;
  padding-bottom: 24px;
  max-width: 600px;
}

/* CTA Section */
.section--cta {
  background: var(--sand);
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 40px;
}
.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 24px 0 16px;
  letter-spacing: 0.01em;
}
.cta__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.85;
}
.cta-next {
  max-width: 520px;
  margin: 0 auto 36px;
  text-align: left;
}
.cta-next__heading {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-align: center;
  text-transform: uppercase;
}
.cta-next__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-next__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.65;
}
.cta-next__list span {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  padding-top: 3px;
}
.cta-next__list-title {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.cta__contact {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 24px;
  letter-spacing: 0.08em;
}
.cta__phone {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 18px;
  letter-spacing: 0.1em;
}
.cta__phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.cta__phone a:hover { color: var(--cream-light); }
.cta__tagline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--brown-deep);
  max-width: 500px;
  margin: 28px auto 0;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--charcoal);
  padding: 56px 40px 0;
  text-align: center;
}
.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.footer__sub {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__icon {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}
.footer__links a {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.footer__links a:hover { color: var(--cream); }
.footer__copy {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 300;
  color: rgba(200,194,184,0.4);
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.footer__credit {
  white-space: nowrap;
}
.footer__credit a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.025em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,162,101,0.3);
  transition: color 0.3s, border-color 0.3s;
}
.footer__credit a:hover {
  color: var(--cream);
  border-bottom-color: var(--gold);
}
.footer__phone {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 300;
  color: rgba(200,194,184,0.4);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.footer__phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__phone a:hover { color: var(--cream); }
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
}
.footer__social-link {
  color: rgba(200,194,184,0.45);
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.footer__social-link:hover { color: var(--cream); }
.footer__social-icon { height: 18px; width: 18px; fill: currentColor; }
.footer__social-icon--nd { width: 88px; }
.footer__strip {
  border-top: 1px solid rgba(247,245,242,0.07);
  padding: 28px 40px 32px;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.2);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Privacy */
.privacy-page {
  background: var(--cream);
  color: var(--text);
}

.privacy-hero {
  position: relative;
  background: var(--charcoal);
  padding: 72px 20px 64px;
  text-align: center;
  overflow: hidden;
}

.privacy-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.privacy-hero .accent-rule--hero {
  background: var(--gold);
  margin: 20px auto 20px;
  opacity: 0.6;
}

.privacy {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.privacy__home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.privacy__home:hover { color: var(--gold); }

.privacy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.privacy__date {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.35);
  margin-top: 4px;
}

.privacy__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--brown-deep);
  font-style: italic;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 40px;
  margin-bottom: 16px;
}

.privacy__sections { margin-top: 8px; }

.privacy__section {
  padding: 32px 0 32px 24px;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--sand);
  transition: border-left-color 0.3s ease;
}
.privacy__section:last-child { border-bottom: none; }
.privacy__section:hover { border-left-color: var(--gold); }

.privacy__section h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.privacy__section p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown-deep);
}
.privacy__section p + p { margin-top: 14px; }

.privacy__list {
  list-style: none;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy__list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown-deep);
  padding-left: 16px;
  position: relative;
}
.privacy__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* Founder */
.section--founder { background: var(--cream-light); }

.founder__tagline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

.founder__layout {
  display: grid;
  grid-template-columns: clamp(260px, 33%, 360px) 1fr;
  gap: 72px;
  align-items: start;
}

.founder__photo-col {
  position: sticky;
  top: 88px;
}

.founder__photo {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 16px 52px rgba(13,27,42,0.12);
}

.founder__text-col p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: left;
}

.founder__emphasis {
  font-style: italic;
  color: var(--accent) !important;
}
.founder__text-col em {
  font-style: italic;
  color: var(--accent);
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .brand-voice-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .founder__layout { grid-template-columns: 1fr; gap: 36px; }
  .founder__photo-col { position: static; }
  .founder__photo { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 811px) {
  .nav__cta { display: none; }
}

/* === CONTACT MODAL === */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay--vis { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--cream);
  width: 100%;
  max-width: 560px;
  padding: 52px 48px 48px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1;
  padding: 6px;
  transition: color 0.2s;
  font-family: var(--font-sub);
}
.modal__close:hover { color: var(--text); }

.modal__label {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.modal__heading {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.modal__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 18px; }
.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: white;
  border: 1px solid var(--sand-deep);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-privacy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.85;
  margin: 24px 0 28px;
  padding: 18px 20px;
  background: var(--sand);
  border-left: 2px solid var(--accent);
}
.form-privacy strong {
  font-weight: 600;
  font-style: italic;
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.form-verification {
  display: flex;
  justify-content: center;
  margin: 20px 0 6px;
  min-height: 65px;
}

.form-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--copper);
  margin-bottom: 14px;
}

.modal__success {
  text-align: center;
  padding: 16px 0 8px;
}
.modal__success-rule {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 28px;
}
.modal__success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.modal__success p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 380px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .modal { padding: 40px 28px 36px; }
}

/* === RESPONSIVE === */

@media (max-width: 640px) {
  :root { --section-py: 80px; }
  [data-spacing="standard"] { --section-py: 64px; }

  .nav { padding: env(safe-area-inset-top) 20px 0; }
  .nav__inner { gap: 8px; }
  .nav__brand { flex-shrink: 1; min-width: 0; }
  .nav__brand-logo { width: 40px; height: 40px; }
  .nav__brand-divider,
  .nav__brand-sub { display: none; }
  .nav__brand-name { font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__cta-mobile {
    display: block;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
  }
  .nav__hamburger { display: flex; }
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(247,245,242,0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav--on-dark:not(.nav--scrolled) .nav__links--open a,
  .nav__links--open a {
    color: var(--charcoal);
  }
  .nav--on-dark:not(.nav--scrolled) .nav__links--open a:hover,
  .nav__links--open a:hover {
    color: var(--accent);
  }
  .nav--on-dark:not(.nav--scrolled) .nav__links--open .nav__cta-mobile,
  .nav__links--open .nav__cta-mobile {
    color: var(--accent);
  }

  .section { padding-left: 24px; padding-right: 24px; }
  .section__intro { margin-bottom: 40px; }
  .hero__inner { padding: calc(100px + env(safe-area-inset-top)) 24px 60px; }
  .hero__title { font-size: 38px; }

  .svc-card { padding: 32px 24px 28px; }
  .btn--lg { padding: 16px 36px; }

  .modal__heading { font-size: 26px; }

  .footer__brand { flex-direction: column; gap: 6px; }
  .footer__links { flex-wrap: wrap; gap: 16px; }
  .footer__credit-separator {
    display: none;
  }
  .footer__credit {
    display: block;
    margin-top: 4px;
    white-space: normal;
  }
  .footer__strip { padding: 24px; }

  .brand-voice-grid { grid-template-columns: 1fr; }

  .founder__photo { max-width: 100%; }
}

/* === NAV DROPDOWN === */

.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav--on-dark:not(.nav--scrolled) .nav__dropdown-toggle { color: rgba(247,245,242,0.6); }
.nav--on-dark:not(.nav--scrolled) .nav__dropdown-toggle:hover { color: var(--cream); }
.nav--scrolled .nav__dropdown-toggle:hover,
.nav__dropdown-toggle:hover { color: var(--charcoal); }

.nav__dropdown-arrow {
  font-style: normal;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1;
  font-size: 12px;
}

.nav__dropdown:hover .nav__dropdown-arrow,
.nav__dropdown--open .nav__dropdown-arrow { transform: rotate(90deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--charcoal);
  border: 1px solid rgba(196,162,101,0.2);
  box-shadow: 0 8px 28px rgba(13,27,42,0.35);
  min-width: 184px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

/* Bridge the gap so hover stays active as the mouse moves from toggle into the menu */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.7);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(247,245,242,0.08);
}

.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { color: var(--gold); background: rgba(247,245,242,0.06); }
.nav__dropdown-menu a.is-current { color: var(--gold); font-weight: 500; }

/* When nav is dark (at top of page) → flip dropdown to cream bg + charcoal text */
.nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu {
  background: var(--cream);
  border-color: rgba(166,124,82,0.2);
  box-shadow: 0 8px 28px rgba(13,27,42,0.12);
}
.nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu a {
  color: rgba(13,27,42,0.65);
  border-bottom-color: rgba(13,27,42,0.07);
}
.nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(13,27,42,0.04);
}
.nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu a.is-current {
  color: var(--accent);
}

/* Active navigation state */
.nav__links > a,
.nav__dropdown-toggle {
  position: relative;
}

.nav__links > a.nav__link--active,
.nav__dropdown-toggle.nav__dropdown-toggle--active {
  color: var(--accent);
  font-weight: 500;
}

.nav__links > a.nav__link--active::after,
.nav__dropdown-toggle.nav__dropdown-toggle--active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
  transform: translateX(-50%);
}

.nav--on-dark:not(.nav--scrolled) .nav__links > a.nav__link--active,
.nav--on-dark:not(.nav--scrolled) .nav__dropdown-toggle.nav__dropdown-toggle--active {
  color: var(--gold);
}

@media (max-width: 640px) {
  .nav__dropdown { width: 100%; }

  .nav__dropdown-toggle {
    color: var(--text-light);
    width: 100%;
    justify-content: space-between;
  }
  .nav--on-dark:not(.nav--scrolled) .nav__links--open .nav__dropdown-toggle,
  .nav__links--open .nav__dropdown-toggle {
    color: var(--charcoal);
  }
  .nav--on-dark:not(.nav--scrolled) .nav__links--open .nav__dropdown-toggle:hover,
  .nav__links--open .nav__dropdown-toggle:hover {
    color: var(--accent);
  }

  .nav__dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--sand);
    background: transparent;
    padding: 4px 0 4px 12px;
    margin-top: 8px;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile nav is always cream — always use charcoal text */
  .nav__dropdown-menu a,
  .nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu a {
    padding: 8px;
    border-bottom: none;
    color: rgba(13,27,42,0.65);
  }
  .nav__dropdown-menu a:hover,
  .nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu a:hover { color: var(--accent); background: transparent; }

  .nav__dropdown--open .nav__dropdown-menu { display: block; }
}

/* === SERVICE AREA PAGES === */

.section--local-intro {
  background: var(--cream-light);
  border-bottom: 1px solid var(--sand);
}

.local-intro__text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

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

.areas-nav {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.areas-nav__label {
  font-family: var(--font-sub);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.areas-nav__link {
  font-family: var(--font-sub);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.25s;
}

.areas-nav__link:hover { color: var(--accent); }
.areas-nav__link.is-current { color: var(--accent); pointer-events: none; }

/* Neighborhood grid */
.section--neighborhoods { background: var(--cream); }

.nbhd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.nbhd-card {
  background: var(--cream-light);
  border: 1px solid var(--sand);
  padding: 1.75rem 1.75rem 1.5rem;
}

.nbhd-card__rule {
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.65;
  margin-bottom: 1.125rem;
}

.nbhd-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.625rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nbhd-card__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.nbhd-card__tag {
  font-family: var(--font-sub);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(166,124,82,0.35);
  padding: 2px 7px;
  line-height: 1.5;
}

.nbhd-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Footer service areas */
.footer__areas {
  margin-top: 1rem;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.875rem;
  justify-content: center;
}

.footer__areas a {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-deep);
  text-decoration: none;
  transition: color 0.25s;
}

.footer__areas a:hover,
.footer__areas a.is-current { color: var(--gold); }

@media (max-width: 900px) {
  .nbhd-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nbhd-grid { grid-template-columns: 1fr; }
  .areas-nav { flex-direction: column; align-items: flex-start; }
}

/* === SITE-WIDE RESPONSIVE REFINEMENTS === */

@media (max-width: 1100px) {
  .nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav__inner {
    gap: 20px;
  }

  .nav__links {
    gap: 22px;
  }
}

@media (max-width: 980px) {
  :root {
    --section-py: 80px;
  }

  [data-spacing="standard"] {
    --section-py: 72px;
  }

  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav__inner {
    height: var(--nav-height);
    gap: 12px;
  }

  .nav__brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav__brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--nav-height) - env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(247,245,242,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px max(24px, env(safe-area-inset-left)) calc(28px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-right));
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav--on-dark:not(.nav--scrolled) .nav__links--open a,
  .nav__links--open a {
    color: var(--charcoal);
  }

  .nav--on-dark:not(.nav--scrolled) .nav__links--open a:hover,
  .nav__links--open a:hover {
    color: var(--accent);
  }

  .nav--on-dark:not(.nav--scrolled) .nav__links--open > a.nav__link--active,
  .nav__links--open > a.nav__link--active,
  .nav--on-dark:not(.nav--scrolled) .nav__links--open .nav__dropdown-toggle.nav__dropdown-toggle--active,
  .nav__links--open .nav__dropdown-toggle.nav__dropdown-toggle--active {
    color: var(--accent);
    padding-left: 12px;
  }

  .nav__links--open > a.nav__link--active::after,
  .nav__links--open .nav__dropdown-toggle.nav__dropdown-toggle--active::after {
    left: 0;
    top: 50%;
    bottom: auto;
    width: 2px;
    height: 18px;
    transform: translateY(-50%);
  }

  .nav__links--open .nav__cta-mobile {
    display: block;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle,
  .nav--on-dark:not(.nav--scrolled) .nav__links--open .nav__dropdown-toggle,
  .nav__links--open .nav__dropdown-toggle {
    color: var(--charcoal);
    width: 100%;
    justify-content: space-between;
    white-space: normal;
    text-align: left;
  }

  .nav__dropdown-toggle:hover,
  .nav--on-dark:not(.nav--scrolled) .nav__links--open .nav__dropdown-toggle:hover,
  .nav__links--open .nav__dropdown-toggle:hover {
    color: var(--accent);
  }

  .nav__dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--sand);
    background: transparent;
    padding: 4px 0 4px 12px;
    margin-top: 8px;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__dropdown:hover .nav__dropdown-menu {
    display: none;
  }

  .nav__dropdown--open .nav__dropdown-menu,
  .nav__dropdown.nav__dropdown--open:hover .nav__dropdown-menu {
    display: block;
  }

  .nav__dropdown-menu a,
  .nav--on-dark:not(.nav--scrolled) .nav__dropdown-menu a {
    padding: 8px;
    border-bottom: none;
    color: rgba(13,27,42,0.65);
  }

  .hero {
    min-height: min(760px, 100dvh);
    background-attachment: scroll !important;
  }

  .hero--min-tall {
    min-height: min(760px, 100dvh);
  }

  .hero__inner,
  .hero__inner--home {
    width: min(100%, 760px);
    padding: calc(104px + env(safe-area-inset-top)) var(--page-pad) 72px;
  }

  .hero__title {
    font-size: clamp(38px, 8vw, 62px);
  }

  .section,
  .section--cta {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .svc-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .brand-voice-grid,
  .nbhd-grid,
  .comparison-grid,
  .verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .comparison-grid,
  .verdict-grid {
    gap: 1.25rem !important;
  }

  .detail-grid,
  .benefit-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-strip {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  :root {
    --section-py: 68px;
    --page-pad: clamp(18px, 6vw, 24px);
  }

  [data-spacing="standard"] {
    --section-py: 60px;
  }

  body {
    font-size: 16px;
  }

  .nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav__brand-logo {
    width: 38px;
    height: 38px;
  }

  .nav__brand-name {
    font-size: clamp(14px, 4.4vw, 16px);
    letter-spacing: 0.06em;
  }

  .nav__brand-divider,
  .nav__brand-sub {
    display: none;
  }

  .nav__links--open {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .nav__links--open a,
  .nav__dropdown-toggle,
  .nav__cta-mobile {
    line-height: 1.4;
  }

  .hero,
  .hero--min-tall {
    min-height: auto;
  }

  .hero__inner,
  .hero__inner--home {
    padding-top: calc(108px + env(safe-area-inset-top));
    padding-bottom: 56px;
  }

  .hero__title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
    margin-bottom: 24px;
  }

  .hero__label {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
  }

  .hero__body {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero__body--secondary {
    margin-bottom: 28px;
  }

  .section__heading,
  .cta__heading {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .section__intro,
  .local-intro__text p,
  .privacy__section p,
  .privacy__list li,
  .founder__text-col p {
    font-size: 15px;
    line-height: 1.8;
  }

  .svc-grid,
  .brand-voice-grid,
  .nbhd-grid,
  .comparison-grid,
  .verdict-grid {
    grid-template-columns: 1fr !important;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .svc-grid > *:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .svc-card,
  .nbhd-card,
  .comparison-card,
  .verdict-card,
  .fact-callout {
    padding: 28px 22px 26px !important;
  }

  .brand-voice-grid {
    gap: 30px;
  }

  .faq-item__q {
    font-size: 18px;
    gap: 16px;
    padding: 22px 0;
  }

  .cta-next__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-next__list span {
    padding-top: 0;
  }

  .areas-nav {
    align-items: stretch;
    gap: 0.65rem;
  }

  .areas-nav__label {
    margin-bottom: 0.25rem;
  }

  .areas-nav__link {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
  }

  .footer {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }

  .footer__brand {
    flex-direction: column;
    gap: 6px;
  }

  .footer__name {
    font-size: clamp(20px, 6.2vw, 24px);
  }

  .footer__links,
  .footer__areas {
    gap: 12px 16px;
  }

  .footer__links a,
  .footer__areas a {
    line-height: 1.5;
  }

  .footer__strip {
    padding: 24px 0 28px;
    letter-spacing: 0.14em;
  }

  .privacy {
    width: min(100% - (var(--page-pad) * 2), 760px);
    padding: 52px 0 72px;
  }

  .privacy-hero {
    padding: calc(88px + env(safe-area-inset-top)) var(--page-pad) 56px;
  }

  .privacy-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .privacy__section {
    padding: 28px 0;
    border-left: none;
  }

  .privacy__section h2 {
    font-size: 24px;
  }

  .modal-overlay {
    align-items: flex-start;
    padding: calc(12px + env(safe-area-inset-top)) 12px calc(12px + env(safe-area-inset-bottom));
  }

  .modal {
    max-height: calc(100dvh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 42px 22px 32px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
  }

  .benefit-item {
    padding: 1.125rem 1.25rem !important;
  }

  .benefit-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--sand) !important;
  }

  .benefit-item:last-child {
    border-bottom: none !important;
  }
}

@media (max-width: 420px) {
  .btn,
  .btn--lg {
    width: 100%;
    max-width: 320px;
    padding-left: 22px;
    padding-right: 22px;
    text-align: center;
  }

  .hero__title br,
  .section__heading br,
  .cta__heading br {
    display: none;
  }

  .svc-card__badge {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }

  .modal__heading {
    font-size: 25px;
  }
}

/* =============================================
   BLOG
   ============================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  background: var(--cream-light);
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.10);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.blog-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 20px;
}

.blog-card__meta {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-card__link {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  align-self: flex-start;
}

.blog-card__link:hover {
  border-bottom-color: var(--accent);
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
}

.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Article / Blog Post ---- */

.post-back {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 48px;
  transition: opacity 0.2s;
}

.post-back:hover {
  opacity: 0.7;
}

.article-meta {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 48px;
}

.article-prose {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5em 0 0.75em;
  line-height: 1.25;
}

.article-prose h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 2em 0 0.6em;
}

.article-prose p {
  margin-bottom: 1.5em;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1.5em 1.5em;
}

.article-prose li {
  margin-bottom: 0.5em;
}

.article-prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--cream-light);
}

.article-prose blockquote p {
  font-style: italic;
  color: var(--charcoal-warm);
  margin: 0;
}

.article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-prose img {
  width: 100%;
  height: auto;
  margin: 2em 0;
}

.post-not-found {
  text-align: center;
  padding: 80px 0;
}

.post-not-found h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.post-not-found p {
  font-family: var(--font-body);
  color: var(--text-light);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
}
