/* =====================================================================
   SoCal Home Stagers — site.css
   Design DNA: RH.com chassis + beach-towel sunset accent palette
   Built by: Ketchup Consulting · 2026-06-15
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* INK & CANVAS — RH chassis */
  --ink:           #0e2030;   /* Pacific Midnight (towel navy + RH near-black) */
  --ink-soft:      #1d2f44;   /* Lifted ink — hero overlays */
  --ink-tint:      #3b4a5c;   /* Body text on cream */
  --canvas:        #f5f0e6;   /* RH Parchment — primary surface */
  --canvas-warm:   #ebe2cf;   /* Warm sand — alt surface */
  --linen:         #ded3bc;   /* Section dividers, soft fields */
  --paper:         #ffffff;   /* Pure white — only for floating cards */

  /* ACCENT — Sunset orange (complementary to towel sky/lagoon blue) */
  --brass:         #ec881b;   /* primary orange (was gold brass) */
  --brass-deep:    #c75017;   /* deeper coral for hover/focus */
  --brass-light:   #efa63d;   /* amber for soft accents */

  /* BEACH TOWEL LADDER (sampled from Victoria's reference, 2026-06-15) */
  --t-navy:        #0e2030;
  --t-sky:         #2c8fb8;
  --t-lagoon:      #3a999d;
  --t-seafoam:     #92cdc7;
  --t-amber:       #efa63d;
  --t-ember:       #ec881b;
  --t-burnt:       #d0700c;
  --t-brick:       #c75017;
  --t-terracotta:  #a93f10;

  /* SIGNATURE GRADIENTS */
  --sunset:           linear-gradient(180deg,#0e2030 0%,#1d2f44 8%,#2c8fb8 24%,#3a999d 36%,#92cdc7 48%,#efa63d 62%,#ec881b 76%,#c75017 88%,#a93f10 100%);
  --sunset-warm:      linear-gradient(180deg,#efa63d 0%,#ec881b 35%,#c75017 75%,#a93f10 100%);
  --sunset-cool:      linear-gradient(180deg,#0e2030 0%,#2c8fb8 50%,#92cdc7 100%);
  --sunset-band:      linear-gradient(90deg,#0e2030,#2c8fb8,#3a999d,#92cdc7,#efa63d,#ec881b,#c75017,#a93f10);

  /* TYPOGRAPHY */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --fs-xs:        0.75rem;
  --fs-sm:        0.8125rem;
  --fs-base:      1rem;
  --fs-lg:        1.125rem;
  --fs-xl:        1.375rem;
  --fs-2xl:       1.75rem;
  --fs-3xl:       clamp(1.875rem, 2.6vw, 2.625rem);
  --fs-4xl:       clamp(2.25rem, 4vw, 3.5rem);
  --fs-display:   clamp(2.75rem, 6vw, 5rem);
  --fs-hero:      clamp(3.25rem, 9vw, 7.25rem);

  --lh-tight:     1.05;
  --lh-snug:      1.2;
  --lh-base:      1.55;
  --lh-relaxed:   1.75;

  --tracking-tight:   -0.025em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-wider:   0.12em;
  --tracking-widest:  0.24em;

  /* SPACING (4-unit base) */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;
  --s-section: clamp(4.5rem, 10vw, 8.5rem);

  /* LAYOUT */
  --max-w:     1440px;
  --content-w: 920px;
  --gutter:    clamp(1.25rem, 4vw, 3rem);

  /* EFFECTS */
  --shadow-sm:    0 2px 6px rgba(14,32,48,0.04);
  --shadow-md:    0 14px 32px rgba(14,32,48,0.08);
  --shadow-lg:    0 32px 80px rgba(14,32,48,0.14);
  --shadow-photo: 0 40px 80px rgba(14,32,48,0.22);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.04);

  --t-fast: 200ms cubic-bezier(0.4,0,0.2,1);
  --t-base: 350ms cubic-bezier(0.4,0,0.2,1);
  --t-slow: 700ms cubic-bezier(0.4,0,0.2,1);

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brass-deep); }

/* Skip link — accessibility */
.skip-link {
  position: absolute; left: -9999px; top: var(--s-2);
  background: var(--ink); color: var(--canvas);
  padding: var(--s-2) var(--s-4);
  font-size: var(--fs-sm); letter-spacing: var(--tracking-wider);
  text-transform: uppercase; z-index: 999;
}
.skip-link:focus { left: var(--s-4); }

/* ---------- TYPOGRAPHY ---------- */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
}
.h-hero {
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.h-display { font-size: var(--fs-display); }
.h-1 { font-size: var(--fs-4xl); }
.h-2 { font-size: var(--fs-3xl); }
.h-3 { font-size: var(--fs-2xl); }
.h-4 { font-size: var(--fs-xl); letter-spacing: var(--tracking-normal); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow--light { color: var(--brass-light); }
.eyebrow--ink   { color: var(--ink); opacity: 0.6; }

.lede { font-size: var(--fs-xl); line-height: var(--lh-base); color: var(--ink-tint); max-width: 38em; }
.body-lg { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--ink-tint); }
.body-sm { font-size: var(--fs-sm); color: var(--ink-tint); }

.italic { font-style: italic; }
.serif  { font-family: var(--font-display); }

/* ---------- LAYOUT PRIMITIVES ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--content-w); }
.section { padding-block: var(--s-section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--canvas { background: var(--canvas); }
.section--cream { background: var(--canvas-warm); }
.section--ink { background: var(--ink); color: var(--canvas); }
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--canvas); }
.section--ink .eyebrow { color: var(--brass-light); }
.section--ink .lede,
.section--ink .body-lg { color: rgba(245,240,230,0.74); }

.divider {
  height: 1px;
  background: var(--linen);
  border: 0;
  margin-block: var(--s-12);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-8);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  transition: all var(--t-base);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--canvas);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  color: var(--canvas);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--canvas);
  border: 1px solid rgba(245,240,230,0.4);
}
.btn--ghost:hover {
  background: rgba(245,240,230,0.08);
  border-color: var(--canvas);
  color: var(--canvas);
}
.btn--brass {
  background: var(--brass);
  color: var(--canvas);
  border: 1px solid var(--brass);
}
.btn--brass:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--canvas);
}
.btn--sm { padding: var(--s-3) var(--s-6); font-size: var(--fs-xs); }
.btn--lg { padding: var(--s-6) var(--s-12); font-size: var(--fs-base); }

.text-link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: all var(--t-fast);
}
.text-link:hover { color: var(--brass-deep); border-color: var(--brass-deep); }

/* ---------- ANNOUNCEMENT BAR (translucent dark band, sits above the nav) ---------- */
.announce {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(14,32,48,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--canvas);
  padding: var(--s-3) var(--gutter);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(245,240,230,0.08);
}
.announce a {
  color: var(--t-amber);
  border-bottom: 1px dotted rgba(239,166,61,0.55);
}
.announce a:hover { color: var(--canvas); border-color: var(--canvas); }
.announce__separator { color: rgba(239,166,61,0.7); margin-inline: var(--s-4); }
/* Mobile: tighten announce bar so it doesn't eat 3 lines of header real estate */
@media (max-width: 720px) {
  .announce { font-size: 10px; padding: 6px var(--gutter); letter-spacing: 0.08em; line-height: 1.5; }
  .announce__separator { margin-inline: 6px; }
}
@media (max-width: 480px) {
  /* On very narrow phones, keep only the phone number — the other phrases wrap into noise */
  .announce > span:not(.announce__phone) { display: none; }
  .announce__separator { display: none; }
  .announce::before { content: "Free Walk-Through · "; color: rgba(245,240,230,0.75); }
}

/* ---------- NAV (translucent dark band over hero, fills cream on scroll) ---------- */
.nav {
  position: absolute;
  top: 40px;
  left: 0; right: 0;
  z-index: 50;
  background: rgba(14,32,48,0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,240,230,0.10);
  transition: all var(--t-base);
}
.nav.is-stuck {
  position: fixed;
  top: 0;
  background: rgba(245,240,230,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14,32,48,0.10);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-8);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-4) var(--gutter);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--canvas);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(14,32,48,0.5);
  transition: color var(--t-base);
}
.nav.is-stuck .nav__brand { color: var(--ink); text-shadow: none; }
.nav__brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: var(--tracking-widest);
  color: var(--t-amber);
  margin-top: 2px;
  font-weight: 500;
  transition: color var(--t-base);
}
.nav.is-stuck .nav__brand small { color: var(--brass-deep); }
.nav__menu {
  display: flex;
  list-style: none;
  gap: var(--s-8);
  justify-content: center;
}
.nav__menu a {
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--canvas);
  padding: var(--s-2) 0;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 8px rgba(14,32,48,0.45);
  transition: color var(--t-base), border-color var(--t-base);
}
.nav__menu a:hover { border-color: var(--canvas); color: var(--canvas); }
.nav.is-stuck .nav__menu a { color: var(--ink); text-shadow: none; }
.nav.is-stuck .nav__menu a:hover { border-color: var(--ink); }
/* Nav CTA outline button: cream over dark nav, ink when stuck */
.nav__cta .btn--outline {
  color: var(--canvas);
  border-color: rgba(245,240,230,0.45);
  background: transparent;
}
.nav__cta .btn--outline:hover {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}
.nav.is-stuck .nav__cta .btn--outline {
  color: var(--ink);
  border-color: var(--ink);
}
.nav.is-stuck .nav__cta .btn--outline:hover {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}
.nav__cta { justify-self: end; }
.nav__toggle {
  display: none;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  width: 22px; height: 1px; background: var(--canvas);
  position: relative;
  box-shadow: 0 0 8px rgba(14,32,48,0.4);
}
.nav.is-stuck .nav__toggle span,
.nav.is-stuck .nav__toggle span::before,
.nav.is-stuck .nav__toggle span::after { background: var(--ink); box-shadow: none; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; width: 22px; height: 1px; background: var(--canvas);
  left: 0;
  box-shadow: 0 0 8px rgba(14,32,48,0.4);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

@media (max-width: 920px) {
  /* Tighter padding + ensure grid columns can collapse without overflowing */
  .nav__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: var(--s-3) var(--gutter);
    gap: var(--s-4);
    min-width: 0;
  }
  /* The <nav aria-label="Primary"> wrapper around the menu UL is still claiming a grid cell at mobile
     even when the UL inside is display:none — that pushes the hamburger toggle onto a second row.
     display:contents removes the wrapper from layout so the UL becomes a direct grid child. */
  .nav__inner > nav { display: contents; }
  /* Brand: shrink + truncate + drop the small subtitle so we stay on ONE line */
  .nav__brand {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .nav__brand small { display: none; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; flex-shrink: 0; position: relative; z-index: 102; }

  /* ===== WORLD-CLASS MOBILE MENU ===== */

  /* When open: nav bar slides to top:0, becomes opaque cream so toggle X reads on cream */
  .nav.is-open {
    top: 0 !important;
    position: fixed;
    background: var(--canvas);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--linen);
    z-index: 101;
  }
  .nav.is-open .nav__brand { color: var(--ink); text-shadow: none; }

  /* Hamburger morphs to X */
  .nav.is-open .nav__toggle span { background: transparent; box-shadow: none; }
  .nav.is-open .nav__toggle span::before,
  .nav.is-open .nav__toggle span::after {
    background: var(--ink);
    box-shadow: none;
    transition: transform 240ms ease, top 240ms ease;
    top: 0;
  }
  .nav.is-open .nav__toggle span::before { transform: rotate(45deg); }
  .nav.is-open .nav__toggle span::after  { transform: rotate(-45deg); }

  /* Full-screen overlay panel — covers hero, fills viewport */
  .nav.is-open .nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--canvas);
    padding: calc(var(--s-12) + 56px) var(--gutter) calc(var(--s-12) + 96px);
    gap: 0;
    z-index: 100;
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: navPanelIn 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  /* Sunset accent strip at top of panel — under the nav bar */
  .nav.is-open .nav__menu::before {
    content: '';
    position: absolute;
    top: 56px; left: 0; right: 0;
    height: 3px;
    background: var(--sunset-band);
  }
  @keyframes navPanelIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Editorial menu items — big display serif, subtle dividers, brass hover */
  .nav.is-open .nav__menu li {
    border-bottom: 1px solid rgba(14,32,48,0.08);
    list-style: none;
  }
  .nav.is-open .nav__menu li:last-child { border-bottom: none; }
  .nav.is-open .nav__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 2.75rem);
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: none;
    font-weight: 400;
    color: var(--ink);
    padding: var(--s-6) 0;
    text-shadow: none;
    border: none;
    transition: color 240ms ease, padding 240ms ease;
  }
  .nav.is-open .nav__menu a::after {
    content: '→';
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--brass);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 240ms ease, transform 240ms ease;
  }
  .nav.is-open .nav__menu a:hover,
  .nav.is-open .nav__menu a:focus {
    color: var(--brass-deep);
    padding-left: var(--s-2);
  }
  .nav.is-open .nav__menu a:hover::after,
  .nav.is-open .nav__menu a:focus::after {
    opacity: 1;
    transform: translateX(0);
  }

  /* Bottom CTA panel — pinned to viewport bottom with phone tagline above the button */
  .nav.is-open .nav__cta {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--canvas);
    padding: var(--s-5) var(--gutter) calc(var(--s-6) + env(safe-area-inset-bottom));
    z-index: 101;
    box-shadow: 0 -8px 24px rgba(14,32,48,0.06);
    border-top: 1px solid rgba(14,32,48,0.06);
  }
  .nav.is-open .nav__cta::before {
    content: 'Call 760.458.4929 · Free walk-through';
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-tint);
    text-align: center;
  }
  .nav.is-open .nav__cta .btn {
    width: 100%;
    justify-content: center;
    padding: var(--s-5);
    background: var(--ink);
    color: var(--canvas);
    border: 1px solid var(--ink);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
  }
  .nav.is-open .nav__cta .btn:hover {
    background: var(--brass-deep);
    border-color: var(--brass-deep);
    color: var(--canvas);
  }
}

/* Body scroll lock when menu open — CSS-only via :has(), no JS edit needed */
html:has(.nav.is-open) { overflow: hidden; }
/* Hide announce bar when menu open (it's a sibling that would otherwise peek through) */
.announce:has(+ .nav.is-open) { display: none; }

/* ---------- HERO (RH-style: full-bleed photo, transparent UI, centered type with depth) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  text-align: center;
}
/* Editorial full-bleed photo / video */
.hero__photo,
.hero__photo img,
.hero__video,
.hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__photo img {
  object-fit: cover;
  object-position: 60% 55%;
  animation: heroSlowZoom 22s ease-out forwards;
}
.hero__video video {
  object-fit: cover;
  object-position: center;
  /* fade in once first frame paints — poster image shows underneath until playable */
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video video.is-ready { opacity: 1; }
@keyframes heroSlowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* ---------- LIFESTYLE BAND (cinematic video mid-page section) ---------- */
.lifestyle {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--canvas);
  background: var(--ink);
}
.lifestyle__video,
.lifestyle__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}
.lifestyle__video video {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.lifestyle__video video.is-ready { opacity: 1; }
.lifestyle__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,32,48,0.55) 0%,
    rgba(14,32,48,0.30) 40%,
    rgba(14,32,48,0.30) 60%,
    rgba(14,32,48,0.65) 100%);
  z-index: 1;
}
.lifestyle__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: var(--s-section) var(--gutter);
}
.lifestyle__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-amber);
  margin-bottom: var(--s-6);
  text-shadow: 0 1px 12px rgba(14,32,48,0.6);
}
.lifestyle__eyebrow::before,
.lifestyle__eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: rgba(239,166,61,0.55);
}
.lifestyle__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 18ch;
  margin: 0 auto var(--s-6);
  text-shadow: 0 2px 24px rgba(14,32,48,0.5);
}
.lifestyle__title em { color: var(--t-amber); font-style: italic; }
.lifestyle__sub {
  font-size: var(--fs-lg);
  line-height: var(--lh-base);
  color: rgba(245,240,230,0.85);
  max-width: 48ch;
  margin: 0 auto var(--s-10);
  text-shadow: 0 1px 12px rgba(14,32,48,0.55);
}
.lifestyle__cta {
  display: inline-flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
}
.lifestyle .btn--ghost {
  color: var(--canvas);
  border-color: rgba(245,240,230,0.55);
}
.lifestyle .btn--ghost:hover {
  background: rgba(245,240,230,0.10);
  border-color: var(--canvas);
}
/* Signature 4px sunset band across the top — RH-style "season marker" */
.hero__band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sunset-band);
  z-index: 4;
}
/* Overlay 1 — cinematic top + bottom shading (assures contrast with announce + nav + trust bar) */
.hero__overlay--ink {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,32,48,0.55) 0%,
    rgba(14,32,48,0.20) 18%,
    rgba(14,32,48,0.0)  34%,
    rgba(14,32,48,0.0)  60%,
    rgba(14,32,48,0.30) 88%,
    rgba(14,32,48,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Overlay 2 — large centered radial halo at 65% (text sits in the lower-middle) */
.hero__overlay--scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 65%,
    rgba(14,32,48,0.78) 0%,
    rgba(14,32,48,0.55) 28%,
    rgba(14,32,48,0.28) 55%,
    rgba(14,32,48,0.05) 80%,
    rgba(14,32,48,0.0)  100%);
  z-index: 2;
  pointer-events: none;
}
/* Overlay 3 — film grain + subtle warm sunset wash for premium texture */
.hero__overlay--tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 25%, rgba(239,166,61,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(44,143,184,0.10) 0%, transparent 50%);
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}

/* Inner-page hero treatment — bright beachy sunset (sky blue → lagoon → amber → ember) */
.hero__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    var(--t-sky) 0%,
    var(--t-lagoon) 30%,
    var(--t-seafoam) 50%,
    var(--t-amber) 78%,
    var(--t-ember) 100%);
  z-index: 0;
}
.hero__sky::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* darken the left where the headline sits so the cream serif reads on the bright sky */
    linear-gradient(95deg, rgba(14,32,48,0.32) 0%, rgba(14,32,48,0.08) 35%, transparent 60%),
    /* warm halo on the right side */
    radial-gradient(ellipse at 85% 75%, rgba(236,136,27,0.30) 0%, transparent 55%);
}
.hero__horizon {
  position: absolute;
  bottom: 28%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,240,230,0.6) 30%, rgba(245,240,230,0.6) 70%, transparent);
  z-index: 1;
}
.hero__room {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14,32,48,0.0) 0%, rgba(14,32,48,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 5;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-12) var(--gutter);
  width: 100%;
  color: var(--canvas);
  text-align: center;
  /* Drop the text block well below true center — lands in the lower third */
  transform: translateY(18vh);
}
@media (max-width: 720px) {
  .hero__content { transform: translateY(14vh); }
}
/* Inner-page hero variant — shorter, no big translate (text sits near vertical center) */
.hero--page { min-height: 64vh; min-height: 64svh; }
.hero--page .hero__content { transform: translateY(4vh); padding-block: var(--s-8); }
.hero--page .hero__title { font-size: clamp(3rem, 8vw, 6.5rem); max-width: 22ch; }
.hero--page .hero__sub { max-width: 56ch; }
@media (max-width: 720px) {
  .hero--page .hero__content { transform: translateY(2vh); }
  .hero--page .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  font-size: var(--fs-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.95);
  margin-bottom: var(--s-8);
  text-shadow: 0 2px 14px rgba(14,32,48,0.65);
  font-weight: 500;
}
/* Hairline rules flanking the eyebrow — editorial flourish */
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: rgba(245,240,230,0.5);
  box-shadow: 0 0 8px rgba(14,32,48,0.4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: var(--canvas);
  max-width: 18ch;
  margin: 0 auto var(--s-8);
  text-shadow:
    0 2px 32px rgba(14,32,48,0.5),
    0 1px 4px rgba(14,32,48,0.4);
}
.hero__title em {
  font-style: italic;
  color: var(--t-amber);
  font-weight: 400;
  text-shadow:
    0 2px 32px rgba(14,32,48,0.45),
    0 1px 4px rgba(14,32,48,0.35),
    0 0 24px rgba(239,166,61,0.25);
}
.hero__sub {
  font-size: var(--fs-sm);
  line-height: 1.6;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.88);
  max-width: 56ch;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(14,32,48,0.6);
  font-weight: 500;
}
/* Decorative diamond + line under the sub — final editorial mark */
.hero__sub::after {
  content: '◆';
  display: block;
  margin-top: var(--s-8);
  color: rgba(239,166,61,0.55);
  font-size: 8px;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(239,166,61,0.4);
}
/* CTAs + meta hidden in the hero — RH leaves the photo alone */
.hero__cta,
.hero__meta { display: none; }
/* On smaller viewports, pull headline tighter so it doesn't dominate */
@media (max-width: 720px) {
  .hero__title { font-size: clamp(3.25rem, 14vw, 5rem); max-width: 11ch; }
  .hero__sub { letter-spacing: 0.2em; }
  .hero__eyebrow::before, .hero__eyebrow::after { width: 28px; }
}

@media (max-width: 720px) {
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero__title { max-width: 14ch; }
}

/* ---------- TRUST BAR ---------- */
.trust {
  background: var(--canvas);
  padding: var(--s-8) var(--gutter);
  border-bottom: 1px solid var(--linen);
}
.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-6);
  align-items: center;
}
.trust__phrase {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--ink-tint);
  text-align: center;
  border-right: 1px solid var(--linen);
  padding-right: var(--s-4);
}
.trust__phrase:last-child { border-right: none; }
.trust__phrase strong { color: var(--brass-deep); display: block; font-size: var(--fs-sm); margin-bottom: 2px; font-weight: 600; }
@media (max-width: 920px) { .trust__inner { grid-template-columns: repeat(3, 1fr); } .trust__phrase:nth-child(3n) { border-right: none; } }
@media (max-width: 520px) { .trust__inner { grid-template-columns: repeat(2, 1fr); } .trust__phrase { border-right: none !important; } }

/* ---------- EDITORIAL STATEMENT (Philosophy band) ---------- */
.statement {
  padding-block: var(--s-section);
  background: var(--canvas);
}
.statement__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.statement__quote {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-10);
  max-width: 24ch;
  margin-inline: auto;
}
.statement__quote em { color: var(--brass-deep); font-style: italic; }
.statement__attr {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--brass-deep);
}

/* ---------- THREE-PILLAR ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
}
.pillar {
  padding: var(--s-12) var(--s-8);
  border-right: 1px solid var(--linen);
  text-align: left;
}
.pillar:last-child { border-right: none; }
.pillar__num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--brass);
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--s-4);
  display: block;
  line-height: 1;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-4);
  letter-spacing: var(--tracking-tight);
}
.pillar__body {
  font-size: var(--fs-base);
  color: var(--ink-tint);
  line-height: var(--lh-base);
  max-width: 32ch;
}
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--linen); padding: var(--s-10) var(--gutter); }
  .pillar:last-child { border-bottom: none; }
}

/* ---------- FEATURED WORK (Portfolio teaser) ---------- */
.work {
  padding-block: var(--s-section);
  background: var(--canvas-warm);
}
.work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: var(--max-w);
  margin: 0 auto var(--s-12);
  padding-inline: var(--gutter);
  gap: var(--s-8);
  flex-wrap: wrap;
}
.work__header h2 { max-width: 14ch; }
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-3);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.work__card {
  position: relative;
  background: var(--ink);
  aspect-ratio: 4/5;
  overflow: hidden;
  transition: transform var(--t-base);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.work__card:hover { transform: translateY(-4px); }
.work__card:hover .work__photo::after { opacity: 0.3; }
.work__card:hover .work__meta { transform: translateY(0); opacity: 1; }

.work__card--lg { grid-column: span 6; aspect-ratio: 4/5; }
.work__card--md { grid-column: span 6; aspect-ratio: 4/5; }
.work__card--sm { grid-column: span 4; aspect-ratio: 4/5; }
@media (max-width: 920px) {
  .work__card--lg, .work__card--md, .work__card--sm { grid-column: span 12; aspect-ratio: 1.4/1; }
}

.work__photo {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.work__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,32,48,0)   0%,
    rgba(14,32,48,0)   38%,
    rgba(14,32,48,0.35) 62%,
    rgba(14,32,48,0.78) 85%,
    rgba(14,32,48,0.92) 100%);
  opacity: 1;
  transition: opacity var(--t-base);
  z-index: 1;
}
.work__photo svg,
.work__photo picture,
.work__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}
.work__card:hover .work__photo img { transform: scale(1.04); }

.work__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s-8);
  z-index: 2;
  color: var(--canvas);
}
.work__neighborhood {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: var(--s-2);
  color: var(--canvas);
  text-shadow: 0 2px 12px rgba(14,32,48,0.7), 0 1px 3px rgba(14,32,48,0.5);
}
.work__detail {
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(245,240,230,0.95);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(14,32,48,0.7);
}
.work__meta {
  display: flex; gap: var(--s-4);
  margin-top: var(--s-3);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--brass-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-base);
}

.work__footer {
  text-align: center;
  margin-top: var(--s-12);
}

/* ---------- SERVICES ---------- */
.services {
  padding-block: var(--s-section);
  background: var(--canvas);
}
.services__header {
  max-width: var(--content-w);
  margin: 0 auto var(--s-16);
  padding-inline: var(--gutter);
  text-align: center;
}
.services__header h2 { margin-bottom: var(--s-4); max-width: 18ch; margin-inline: auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.service {
  background: var(--paper);
  padding: var(--s-12) var(--s-8);
  border-top: 3px solid;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service:nth-child(1) { border-color: var(--t-sky); }
.service:nth-child(2) { border-color: var(--t-lagoon); }
.service:nth-child(3) { border-color: var(--t-amber); }
.service:nth-child(4) { border-color: var(--t-brick); }

.service__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-widest);
  color: var(--brass-deep);
  margin-bottom: var(--s-8);
}
.service__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.service__body {
  font-size: var(--fs-base);
  color: var(--ink-tint);
  line-height: var(--lh-base);
  margin-bottom: var(--s-8);
  flex: 1;
}
.service__inc {
  list-style: none;
  border-top: 1px solid var(--linen);
  padding-top: var(--s-6);
  font-size: var(--fs-sm);
  color: var(--ink-tint);
}
.service__inc li {
  padding: var(--s-2) 0;
  border-bottom: 1px dotted var(--linen);
  display: flex; align-items: center; gap: var(--s-2);
}
.service__inc li:last-child { border: none; }
.service__inc li::before { content: '+'; color: var(--brass); font-weight: 500; }

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

/* ---------- ABOUT / FOUNDER ---------- */
.about {
  padding-block: var(--s-section);
  background: var(--canvas-warm);
  color: var(--ink);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t-sky), var(--t-seafoam), var(--t-amber), var(--t-ember), var(--t-brick));
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--s-16);
  align-items: center;
}
.about__photo {
  aspect-ratio: 4/5;
  background: var(--sunset-warm);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__photo svg { width: 100%; height: 100%; display: block; }
.about__photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 18%; }
.about__photo--filled::after { display: none; }
.about__photo::after {
  content: 'Portrait';
  position: absolute;
  bottom: var(--s-4); right: var(--s-4);
  font-size: 0.55rem;
  letter-spacing: var(--tracking-widest);
  color: rgba(245,240,230,0.5);
  text-transform: uppercase;
}
.about__copy h2 {
  color: var(--ink);
  margin-bottom: var(--s-6);
  max-width: 18ch;
}
.about__copy p {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--ink-tint);
  margin-bottom: var(--s-6);
}
.about__copy p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  padding-right: 0.08em;
  color: var(--t-ember);
  font-style: italic;
}
.about__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-2xl);
  color: var(--t-ember);
  margin-top: var(--s-8);
}
@media (max-width: 880px) {
  .about__inner { grid-template-columns: 1fr; gap: var(--s-10); }
  .about__photo { aspect-ratio: 1/1; max-width: 420px; margin-inline: auto; }
}

/* ---------- PROCESS ---------- */
.process {
  padding-block: var(--s-section);
  background: var(--canvas);
}
.process__header {
  text-align: center;
  max-width: var(--content-w);
  margin: 0 auto var(--s-16);
  padding-inline: var(--gutter);
}
.process__steps {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--t-sky), var(--t-lagoon), var(--t-amber), var(--t-brick));
}
.step { position: relative; text-align: left; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--canvas);
  border: 1px solid var(--linen);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--ink);
  position: relative;
  z-index: 1;
  margin-bottom: var(--s-6);
}
.step:nth-child(1) .step__num { color: var(--t-sky); border-color: var(--t-sky); }
.step:nth-child(2) .step__num { color: var(--t-lagoon); border-color: var(--t-lagoon); }
.step:nth-child(3) .step__num { color: var(--t-amber); border-color: var(--t-amber); }
.step:nth-child(4) .step__num { color: var(--t-brick); border-color: var(--t-brick); }
.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.step__body {
  font-size: var(--fs-sm);
  color: var(--ink-tint);
  line-height: var(--lh-base);
}
@media (max-width: 880px) {
  .process__steps { grid-template-columns: 1fr; gap: var(--s-10); }
  .process__steps::before { display: none; }
}

/* ---------- AGENT PARTNERSHIP BAND ---------- */
.partnership {
  background: var(--canvas-warm);
  padding-block: var(--s-section);
  position: relative;
  overflow: hidden;
}
.partnership::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sunset-band);
}
.partnership__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.partnership__copy h2 {
  font-size: var(--fs-4xl);
  max-width: 16ch;
  margin-bottom: var(--s-6);
}
.partnership__copy p {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--ink-tint);
  margin-bottom: var(--s-6);
  max-width: 48ch;
}
.partnership__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
.perk {
  padding: var(--s-6);
  background: var(--paper);
  border-left: 3px solid var(--brass);
}
.perk__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.perk__body { font-size: var(--fs-sm); color: var(--ink-tint); line-height: var(--lh-base); }

.footer__contact { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.7; color: rgba(245,240,230,0.65); margin-top: 1.25rem !important; }
.footer__contact a { color: rgba(245,240,230,0.85); text-decoration: none; border-bottom: 1px solid rgba(245,240,230,0.18); transition: color 0.2s; }
.footer__contact a:hover { color: #efa63d; border-bottom-color: #efa63d; }

@media (max-width: 880px) {
  .partnership__inner { grid-template-columns: 1fr; gap: var(--s-10); }
  .partnership__perks { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
  padding-block: var(--s-section);
  background: var(--canvas);
}
.faq__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.faq__header { margin-bottom: var(--s-12); text-align: center; }
.faq__list { border-top: 1px solid var(--linen); }
.faq__item { border-bottom: 1px solid var(--linen); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-6) 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: -0.01em;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  gap: var(--s-6);
}
.faq__q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: var(--fs-2xl);
  color: var(--brass-deep);
  transition: transform var(--t-base);
  font-weight: 300;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 var(--s-8);
  font-size: var(--fs-base);
  color: var(--ink-tint);
  line-height: var(--lh-relaxed);
  max-width: 64ch;
}

/* ---------- CTA BAND ---------- */
.cta {
  background: linear-gradient(135deg, var(--t-seafoam) 0%, var(--canvas-warm) 55%, #fbe3b8 100%);
  position: relative;
  overflow: hidden;
  padding-block: var(--s-section);
  text-align: center;
  color: var(--ink);
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sunset-band);
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -180px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,136,27,0.18) 0%, transparent 70%);
  z-index: 0;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  color: var(--ink);
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
  margin-inline: auto;
}
.cta__title em { color: var(--t-ember); font-style: italic; }
.cta__sub {
  font-size: var(--fs-lg);
  color: var(--ink-tint);
  margin-bottom: var(--s-10);
  max-width: 48ch;
  margin-inline: auto;
}
.cta__buttons { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }
.cta .eyebrow { color: var(--t-ember); }

/* Override the dark-background ghost button when used on the bright CTA */
.cta .btn--ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}
.cta .btn--ghost:hover {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(245,240,230,0.7);
  padding: var(--s-20) var(--gutter) var(--s-8);
  border-top: 1px solid rgba(245,240,230,0.08);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-16);
}
.footer__brand h3 {
  font-family: var(--font-display);
  color: var(--canvas);
  font-size: var(--fs-2xl);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.footer__brand small {
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-widest);
  color: var(--brass-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--s-6);
}
.footer__brand p { font-size: var(--fs-sm); line-height: var(--lh-base); color: rgba(245,240,230,0.6); max-width: 32ch; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--s-6);
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: var(--s-3); }
.footer__col a {
  font-size: var(--fs-sm);
  color: rgba(245,240,230,0.7);
}
.footer__col a:hover { color: var(--canvas); }
.footer__bar {
  border-top: 1px solid rgba(245,240,230,0.08);
  padding-top: var(--s-8);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  color: rgba(245,240,230,0.4);
}
.footer__bar a { color: rgba(245,240,230,0.5); }
.footer__bar a:hover { color: var(--canvas); }
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- UTILITY ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-8 { margin-top: var(--s-8); }

/* ---------- PRINT ---------- */
@media print {
  .nav, .cta, .announce, .footer__bar { display: none; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
