/* ============================================================
   [AGENCY NAME] — Landing (rebuild v3)
   Direction: CINEMATIC LUXURY PROPERTY · rich & full
   Elegant serif display (Prata) + clean sans (Hanken Grotesk)
   Warm espresso / champagne / oxblood · dark-dominant, cinematic
   Foundation + Hero (section 1 for approval)
   ============================================================ */

/* ---------- Brand tokens ---------- */
:root {
  /* Cinematic warm darks */
  --noir: oklch(0.16 0.012 40);          /* deep warm espresso — primary bg */
  --noir-2: oklch(0.21 0.014 40);        /* raised dark panel */
  --noir-glass: oklch(0.16 0.012 40 / 0.55);

  /* Light surfaces (used sparingly, intentional warm ivory) */
  --ivory: oklch(0.955 0.008 78);
  --ivory-2: oklch(0.925 0.012 78);
  --ink: oklch(0.2 0.014 40);            /* text on light */
  --ink-2: oklch(0.4 0.016 45);
  --ink-3: oklch(0.5 0.016 50);

  /* Text on dark */
  --stone: oklch(0.94 0.012 78);
  --stone-2: oklch(0.78 0.02 68);
  --stone-3: oklch(0.62 0.02 60);

  /* Accents — refined metallic + rich oxblood (NOT garish gold) */
  --champagne: oklch(0.83 0.075 82);
  --champagne-2: oklch(0.72 0.08 74);
  --champagne-deep: oklch(0.6 0.08 68);
  --oxblood: oklch(0.44 0.14 28);
  --oxblood-bright: oklch(0.52 0.16 28);

  --line-dark: oklch(0.34 0.02 50 / 0.6);
  --line-light: oklch(0.86 0.012 70);

  --ok: oklch(0.72 0.14 150);

  /* Type */
  --font-display: "Prata", "Hoefler Text", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --fs-mega: clamp(2.05rem, 1.25rem + 2.5vw, 3.1rem);
  --fs-h1: clamp(2.2rem, 1.3rem + 3.6vw, 3.9rem);
  --fs-h2: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  --fs-h3: clamp(1.35rem, 1.1rem + 1vw, 1.7rem);
  --fs-lg: clamp(1.1rem, 0.98rem + 0.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px;
  --gutter: clamp(22px, 5vw, 72px);
  --maxw: 1240px;

  --r-sm: 8px; --r: 14px; --r-lg: 22px; --r-pill: 999px;
  --shadow-lg: 0 24px 60px oklch(0.1 0.02 40 / 0.5), 0 8px 24px oklch(0.1 0.02 40 / 0.35);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--fs-body);
  line-height: 1.6; color: var(--ink); background: var(--noir);
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--champagne); color: var(--noir); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* refined section label */
.kicker { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); }
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--champagne-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: var(--fs-sm);
  padding: 15px 28px; border-radius: var(--r-pill); border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.18s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: scale(0.98); }
.btn-champagne { background: var(--champagne); color: var(--noir); }
.btn-champagne:hover { background: var(--champagne-2); transform: translateY(-2px); box-shadow: 0 10px 30px oklch(0.7 0.08 74 / 0.35); }
.btn-outline { border-color: oklch(0.7 0.03 70 / 0.45); color: var(--stone); background: oklch(0.16 0.012 40 / 0.35); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--champagne); color: var(--champagne); }
.btn-lg { padding: 17px 34px; font-size: var(--fs-body); }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), padding 0.3s var(--ease-out); border-bottom: 1px solid transparent; }
.nav-inner { max-width: var(--maxw); margin-inline: auto; padding: 22px var(--gutter); display: flex; align-items: center; gap: var(--s-6); }
.nav.scrolled { background: oklch(0.16 0.012 40 / 0.85); backdrop-filter: blur(18px) saturate(1.2); border-bottom-color: var(--line-dark); }
.nav.scrolled .nav-inner { padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; color: var(--stone); }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--oxblood), oklch(0.34 0.12 28)); color: var(--champagne); box-shadow: inset 0 0 0 1px oklch(0.82 0.08 78 / 0.4); }
.brand-mark b { font-family: var(--font-display); font-weight: 400; font-size: 20px; }
.brand-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.06em; line-height: 1; }
.brand small { display: block; font-family: var(--font-body); font-size: 9.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-3); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: var(--s-8); }
.nav-link { color: var(--stone-2); font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s var(--ease-out); }
.nav-link:hover { color: var(--champagne); }
.nav-cta .btn { padding: 11px 22px; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 11px; color: var(--stone); align-items: center; justify-content: center; }
.menu-toggle svg { width: 26px; height: 26px; }
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--noir); color: var(--stone); padding: 104px var(--gutter) var(--gutter); display: flex; flex-direction: column; gap: var(--s-4); transform: translateY(-100%); transition: transform 0.5s var(--ease-out-expo); visibility: hidden; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.9rem; color: var(--stone); padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu .btn { margin-top: var(--s-6); }
.mobile-close { position: absolute; top: 26px; right: var(--gutter); width: 44px; height: 44px; color: var(--stone); display: grid; place-items: center; }
.mobile-close svg { width: 28px; height: 28px; }

/* ============================================================
   HERO — cinematic backdrop + motion + animated AI chat
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--noir); padding-top: 120px; padding-bottom: 64px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; animation: kenburns 26s var(--ease-out) infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, var(--noir) 8%, oklch(0.16 0.012 40 / 0.82) 42%, oklch(0.16 0.012 40 / 0.28) 72%, oklch(0.16 0.012 40 / 0.55) 100%),
    linear-gradient(0deg, var(--noir) 2%, transparent 30%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero-copy { max-width: 42rem; }
.hero-kicker { color: var(--champagne); margin-bottom: var(--s-5); }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-mega); line-height: 1.14; letter-spacing: -0.01em; color: var(--stone); text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--champagne); }
.hero-lede { font-size: var(--fs-lg); color: var(--stone-2); line-height: 1.55; margin-top: var(--s-6); max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-8); }
.hero-marks { display: flex; flex-wrap: wrap; gap: var(--s-6); margin-top: var(--s-10); padding-top: var(--s-6); border-top: 1px solid var(--line-dark); }
.hero-mark { display: flex; flex-direction: column; gap: 3px; }
.hero-mark b { font-family: var(--font-display); font-size: 1.55rem; color: var(--champagne); line-height: 1; }
.hero-mark span { font-size: var(--fs-xs); color: var(--stone-3); letter-spacing: 0.02em; }

/* Animated AI chat widget (the "product in motion") */
.hero-chat { position: relative; justify-self: end; width: min(400px, 100%); }
.chat-card {
  background: oklch(0.19 0.013 45 / 0.72); backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid oklch(0.6 0.03 70 / 0.28); border-radius: 24px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line-dark); }
.chat-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(150deg, var(--champagne), var(--champagne-deep)); color: var(--noir); font-family: var(--font-display); font-size: 18px; position: relative; }
.chat-avatar .dot { position: absolute; right: -1px; bottom: -1px; width: 12px; height: 12px; border-radius: 50%; background: var(--ok); border: 2.5px solid var(--noir-2); }
.chat-name { color: var(--stone); font-weight: 600; font-size: var(--fs-sm); line-height: 1.2; }
.chat-status { color: var(--ok); font-size: var(--fs-xs); font-weight: 500; }
.chat-badge { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--champagne); border: 1px solid oklch(0.7 0.06 74 / 0.4); border-radius: var(--r-pill); padding: 4px 10px; }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; min-height: 340px; }
.msg { max-width: 82%; padding: 11px 14px; border-radius: 16px; font-size: var(--fs-sm); line-height: 1.45; opacity: 0; transform: translateY(10px); animation: msg-in 0.5s var(--ease-out-expo) forwards; }
@keyframes msg-in { to { opacity: 1; transform: none; } }
.msg.them { align-self: flex-start; background: oklch(0.27 0.012 50); color: var(--stone); border-bottom-left-radius: 5px; }
.msg.us { align-self: flex-end; background: linear-gradient(160deg, var(--champagne), var(--champagne-2)); color: var(--noir); border-bottom-right-radius: 5px; font-weight: 500; }
.msg .t { display: block; font-size: 10px; margin-top: 4px; opacity: 0.6; text-align: right; }
.msg.booking { background: oklch(0.24 0.05 150 / 0.5); border: 1px solid oklch(0.5 0.1 150 / 0.5); color: var(--stone); align-self: stretch; max-width: 100%; border-radius: 14px; display: flex; gap: 11px; align-items: center; }
.msg.booking svg { width: 24px; height: 24px; color: var(--ok); flex: none; }
.msg.booking b { display: block; color: #fff; font-family: var(--font-body); }
.typing { align-self: flex-start; background: oklch(0.27 0.012 50); border-bottom-left-radius: 5px; padding: 14px 16px; border-radius: 16px; display: flex; gap: 5px; opacity: 0; transform: translateY(10px); animation: msg-in 0.4s var(--ease-out) forwards; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--stone-2); animation: typing 1.3s var(--ease-in-out) infinite; }
.typing i:nth-child(2) { animation-delay: 0.16s; }
.typing i:nth-child(3) { animation-delay: 0.32s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }
.chat-foot { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--line-dark); }
.chat-foot .field { flex: 1; height: 38px; border-radius: var(--r-pill); background: oklch(0.13 0.01 40); display: flex; align-items: center; padding: 0 16px; font-size: var(--fs-xs); color: var(--stone-3); }
.chat-foot .send { width: 38px; height: 38px; border-radius: 50%; background: var(--champagne); color: var(--noir); display: grid; place-items: center; flex: none; }
.chat-foot .send svg { width: 17px; height: 17px; }
/* floating stat chip on chat */
.chat-chip { position: absolute; left: -26px; top: -22px; background: var(--ivory); color: var(--ink); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 11px; z-index: 2; }
.chat-chip b { font-family: var(--font-display); font-size: 1.6rem; color: var(--oxblood); line-height: 1; }
.chat-chip span { font-size: 11px; color: var(--ink-3); line-height: 1.25; max-width: 11ch; }

/* Hero marketing-results panel (agency outcome, not a tool) */
.hero-results { position: relative; justify-self: end; width: min(420px, 100%); }
.results-card { background: oklch(0.19 0.013 45 / 0.72); backdrop-filter: blur(22px) saturate(1.2); border: 1px solid oklch(0.6 0.03 70 / 0.28); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 24px; }
.rc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.rc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px oklch(0.6 0.15 150 / 0.2); flex: none; }
.rc-title { color: var(--stone); font-weight: 600; font-size: var(--fs-sm); }
.rc-period { margin-left: auto; color: var(--stone-3); font-size: var(--fs-xs); }
.rc-metric { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.rc-big { font-family: var(--font-display); font-weight: 400; font-size: 3rem; color: var(--stone); line-height: 1; }
.rc-delta { color: var(--ok); font-weight: 600; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: 4px; }
.rc-delta svg { width: 13px; height: 13px; }
.rc-label { width: 100%; color: var(--stone-2); font-size: var(--fs-sm); margin-top: 6px; }
.rc-chart { margin: 18px 0 2px; position: relative; }
.rc-chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.rc-line { fill: none; stroke: var(--champagne); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 640; stroke-dashoffset: 640; }
.hero.loaded .rc-line { animation: rc-draw 1.7s var(--ease-out) 0.7s forwards; }
@keyframes rc-draw { to { stroke-dashoffset: 0; } }
.rc-area { opacity: 0; }
.hero.loaded .rc-area { animation: rc-fade 1s ease 1.3s forwards; }
@keyframes rc-fade { to { opacity: 1; } }
.rc-end { fill: var(--champagne); opacity: 0; }
.hero.loaded .rc-end { animation: rc-fade 0.4s ease 2.2s forwards; }
.rc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.rc-stats b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; color: var(--champagne); line-height: 1; }
.rc-stats span { font-size: 11px; color: var(--stone-3); margin-top: 5px; display: block; line-height: 1.3; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; color: var(--stone-3); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; }
.scroll-cue svg { width: 18px; height: 18px; animation: bob 2.4s var(--ease-in-out) infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* hero entrance */
.hero [data-load] { opacity: 0; transform: translateY(24px); }
.hero.loaded [data-load] { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.hero.loaded [data-load="1"] { transition-delay: 0.1s; }
.hero.loaded [data-load="2"] { transition-delay: 0.22s; }
.hero.loaded [data-load="3"] { transition-delay: 0.34s; }
.hero.loaded [data-load="4"] { transition-delay: 0.46s; }
.hero.loaded [data-load="chat"] { transition-delay: 0.5s; transition-duration: 1.1s; }
.hero [data-load="chat"] { transform: translateY(36px) scale(0.98); }

/* ============================================================
   SECTION 2 — The problem (warm ivory, rich)
   ============================================================ */
.problem { background: var(--ivory); color: var(--ink); padding-block: clamp(80px, 10vw, 150px); position: relative; }
.problem::before { /* subtle warm texture for depth */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(oklch(0.2 0.02 40 / 0.03) 1px, transparent 1px);
  background-size: 5px 5px;
}
.problem .wrap { position: relative; }
.problem-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.problem-kicker { color: var(--oxblood); margin-bottom: var(--s-5); }
.problem-kicker::before { background: var(--oxblood); }
.problem-top h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); max-width: 18ch; }
.problem-top h2 em { font-style: italic; color: var(--oxblood); }
.problem-intro { font-size: var(--fs-lg); color: var(--ink-2); line-height: 1.55; padding-bottom: 6px; }

.pains { margin-top: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 52px); }
.pain { border-top: 1.5px solid var(--oxblood); padding-top: var(--s-6); }
.pain-n { font-family: var(--font-display); font-size: 2rem; color: var(--champagne-deep); line-height: 1; }
.pain h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); margin: var(--s-4) 0 var(--s-3); color: var(--ink); line-height: 1.2; }
.pain p { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.6; }

.stat-feature { margin-top: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: auto 1px 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; background: var(--noir); color: var(--stone); border-radius: var(--r-lg); padding: clamp(36px, 4.5vw, 60px) clamp(32px, 4vw, 64px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.stat-feature::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 120% at 92% 50%, oklch(0.44 0.14 28 / 0.45), transparent 62%); pointer-events: none; }
.stat-feature > * { position: relative; }
.stat-feature .num { font-family: var(--font-display); font-weight: 400; font-size: clamp(4.2rem, 2.6rem + 6.5vw, 8rem); color: var(--champagne); line-height: 0.82; letter-spacing: -0.02em; }
.stat-feature .rule { width: 1px; align-self: stretch; background: var(--line-dark); }
.stat-feature .txt p { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.25rem, 0.95rem + 1vw, 1.7rem); color: var(--stone); line-height: 1.35; max-width: 28ch; }
.stat-feature .txt cite { display: block; margin-top: var(--s-4); font-style: normal; font-family: var(--font-body); font-size: var(--fs-sm); color: var(--stone-3); letter-spacing: 0.01em; }
.stat-feature .txt .src { display: inline-flex; align-items: center; gap: 7px; margin-top: var(--s-3); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); }
.stat-feature .txt .src svg { width: 13px; height: 13px; }

.problem-close { margin-top: clamp(40px, 5vw, 64px); text-align: center; }
.problem-close p { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); color: var(--ink); line-height: 1.3; max-width: 30ch; margin-inline: auto; }
.problem-close b { font-style: normal; color: var(--oxblood); }

/* section reveal (intentional) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (max-width: 860px) {
  .problem-top { grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
  .pains { grid-template-columns: 1fr; gap: var(--s-8); }
  .stat-feature { grid-template-columns: 1fr; gap: var(--s-5); text-align: left; }
  .stat-feature .rule { display: none; }
}

/* ============================================================
   SECTION 3 — The AI concierge (dark cinematic, real product)
   ============================================================ */
.concierge { background: var(--noir); color: var(--stone); padding-block: clamp(80px, 10vw, 150px); position: relative; overflow: hidden; }
.concierge::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 88% 6%, oklch(0.5 0.09 74 / 0.14), transparent 60%), radial-gradient(ellipse 50% 60% at 4% 96%, oklch(0.44 0.14 28 / 0.22), transparent 60%); }
.concierge .wrap { position: relative; }
.cc-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.cc-kicker { color: var(--champagne); margin-bottom: var(--s-5); }
.cc-top h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; color: var(--stone); text-wrap: balance; max-width: 16ch; }
.cc-top h2 em { font-style: italic; color: var(--champagne); }
.cc-intro { font-size: var(--fs-lg); color: var(--stone-2); line-height: 1.55; padding-bottom: 6px; }

.cc-grid { margin-top: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 5vw, 84px); align-items: start; }

.cc-caps { display: flex; flex-direction: column; }
.cc-cap { display: grid; grid-template-columns: 52px 1fr; gap: var(--s-5); padding: var(--s-6) 0; border-top: 1px solid var(--line-dark); }
.cc-cap:last-child { border-bottom: 1px solid var(--line-dark); }
.cc-cap .ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 1px solid oklch(0.7 0.06 74 / 0.4); color: var(--champagne); background: oklch(0.5 0.06 74 / 0.08); }
.cc-cap .ic svg { width: 22px; height: 22px; }
.cc-cap h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); color: var(--stone); margin-bottom: 6px; line-height: 1.2; }
.cc-cap p { color: var(--stone-2); font-size: var(--fs-sm); line-height: 1.55; }
.cc-cta { margin-top: var(--s-8); display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.cc-verified { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-3); }
.cc-verified svg { width: 14px; height: 14px; color: var(--ok); }

/* Elegant product frames (straight, natural ratio) */
.cc-visual { position: relative; padding-bottom: 8%; }
.frame { border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid oklch(0.62 0.03 70 / 0.28); box-shadow: var(--shadow-lg); }
.frame-bar { display: flex; align-items: center; gap: 9px; padding: 11px 16px; background: oklch(0.22 0.014 45); border-bottom: 1px solid var(--line-dark); }
.frame-bar .fdot { width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); flex: none; box-shadow: 0 0 0 3px oklch(0.7 0.08 74 / 0.18); }
.frame-bar .flabel { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--stone-2); }
.frame-bar .flive { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--champagne); }
.frame > img { width: 100%; height: auto; display: block; }
.cc-visual .frame.primary { position: relative; z-index: 1; }
.cc-visual .frame.secondary { position: absolute; left: -7%; bottom: 0; width: 42%; z-index: 2; border-radius: 12px; }
.cc-visual .frame.secondary .frame-bar { padding: 8px 12px; }
.cc-visual .frame.secondary .frame-bar .flabel { font-size: 10px; }

@media (max-width: 900px) {
  .cc-top { grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
  .cc-grid { grid-template-columns: 1fr; gap: var(--s-16); }
  .cc-visual { padding-bottom: 0; margin-top: var(--s-4); }
  .cc-visual .frame.secondary { position: static; width: 62%; margin: -18% 0 0 auto; box-shadow: var(--shadow-lg); }
}
@media (max-width: 560px) {
  .cc-cap { grid-template-columns: 44px 1fr; gap: var(--s-4); }
  .cc-cap .ic { width: 44px; height: 44px; }
  .cc-visual .frame.secondary { display: none; }
}

/* ============================================================
   SECTION 4 — The closed loop (ivory, circular diagram)
   ============================================================ */
.loop-sec { background: var(--ivory); color: var(--ink); padding-block: clamp(80px, 10vw, 150px); position: relative; }
.loop-sec::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; background-image: radial-gradient(oklch(0.2 0.02 40 / 0.03) 1px, transparent 1px); background-size: 5px 5px; }
.loop-sec .wrap { position: relative; }
.loop-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.loop-kicker { color: var(--oxblood); margin-bottom: var(--s-5); }
.loop-kicker::before { background: var(--oxblood); }
.loop-top h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); max-width: 16ch; }
.loop-top h2 em { font-style: italic; color: var(--oxblood); }
.loop-intro { font-size: var(--fs-lg); color: var(--ink-2); line-height: 1.55; padding-bottom: 6px; }

.loop-stage { margin-top: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: 0.85fr 1.25fr 0.85fr; gap: clamp(20px, 3vw, 48px); align-items: center; }
.loop-half .tag { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oxblood); margin-bottom: var(--s-4); }
.loop-half .tag b { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; color: var(--champagne-deep); letter-spacing: 0; }
.loop-half h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); color: var(--ink); margin-bottom: var(--s-3); line-height: 1.2; }
.loop-half p { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.6; }
.loop-half.left { text-align: right; }
.loop-half.left .tag { flex-direction: row-reverse; }

/* the diagram */
.loop-diagram { position: relative; width: 100%; max-width: 460px; margin-inline: auto; aspect-ratio: 1; }
.loop-ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.loop-ring circle { fill: none; stroke: var(--champagne-deep); stroke-width: 0.4; stroke-dasharray: 0.9 1.7; stroke-linecap: round; opacity: 0.85; }
.loop-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 40%; }
.loop-center .cic { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 10px; display: grid; place-items: center; border: 1px solid oklch(0.75 0.07 74 / 0.5); color: var(--champagne-deep); background: var(--ivory); }
.loop-center .cic svg { width: 24px; height: 24px; }
.loop-center b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
.loop-center span { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.loop-node { position: absolute; transform: translate(-50%, -50%); width: 118px; text-align: center; }
.loop-node .ic { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 10px; display: grid; place-items: center; background: var(--ivory); border: 1px solid oklch(0.7 0.05 60 / 0.35); color: var(--oxblood); box-shadow: 0 8px 22px oklch(0.2 0.02 40 / 0.1); }
.loop-node .ic svg { width: 24px; height: 24px; }
.loop-node .num { display: block; font-family: var(--font-display); font-size: 0.85rem; color: var(--champagne-deep); line-height: 1; margin-bottom: 3px; }
.loop-node .lbl { font-family: var(--font-display); font-weight: 400; font-size: 0.98rem; color: var(--ink); line-height: 1.18; }

.loop-payoff2 { margin-top: clamp(48px, 6vw, 80px); text-align: center; }
.loop-payoff2 p { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(1.35rem, 1rem + 1.5vw, 2.1rem); color: var(--ink); line-height: 1.32; max-width: 32ch; margin-inline: auto; }
.loop-payoff2 b { font-style: normal; color: var(--oxblood); }

@media (max-width: 900px) {
  .loop-top { grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
  .loop-stage { grid-template-columns: 1fr; gap: var(--s-12); }
  .loop-half { text-align: left !important; max-width: 44ch; }
  .loop-half.left { order: 2; }
  .loop-half.left .tag { flex-direction: row; }
  .loop-diagram { order: 1; }
  .loop-half.right { order: 3; }
  /* diagram → vertical stepped list on mobile */
  .loop-diagram { position: static; aspect-ratio: auto; max-width: 380px; display: flex; flex-direction: column; gap: var(--s-5); padding-left: 30px; }
  .loop-diagram::before { content: ""; position: absolute; left: 30px; top: 30px; bottom: 30px; width: 1px; background: var(--champagne-deep); opacity: 0.4; }
  .loop-ring, .loop-center { display: none; }
  .loop-node { position: static; transform: none; width: 100%; display: flex; align-items: center; gap: var(--s-4); text-align: left; }
  .loop-node .ic { margin: 0; flex: none; }
}

/* ============================================================
   SECTION 5 — Services (dark cinematic, editorial rows)
   ============================================================ */
.services { background: var(--noir); color: var(--stone); padding-block: clamp(80px, 10vw, 150px); position: relative; overflow: hidden; }
.services::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 45% at 6% 4%, oklch(0.5 0.09 74 / 0.12), transparent 60%); }
.services .wrap { position: relative; }
.svc-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.svc-kicker { color: var(--champagne); margin-bottom: var(--s-5); }
.svc-top h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; color: var(--stone); max-width: 16ch; }
.svc-top h2 em { font-style: italic; color: var(--champagne); }
.svc-lead { font-size: var(--fs-lg); color: var(--stone-2); line-height: 1.55; padding-bottom: 6px; }

.svc-list { margin-top: clamp(40px, 5vw, 72px); }
.svc-row { display: grid; grid-template-columns: 90px 1.05fr 1.35fr; gap: clamp(20px, 3vw, 56px); align-items: center; padding: clamp(26px, 3vw, 44px) clamp(8px, 1.5vw, 24px); border-top: 1px solid var(--line-dark); transition: background 0.3s var(--ease-out); border-radius: 14px; }
.svc-row:last-child { border-bottom: 1px solid var(--line-dark); }
.svc-row:hover { background: oklch(0.21 0.014 45 / 0.6); }
.svc-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.3rem + 1.5vw, 2.9rem); color: var(--champagne-deep); line-height: 1; transition: color 0.3s var(--ease-out); }
.svc-row:hover .svc-num { color: var(--champagne); }
.svc-title { display: flex; align-items: center; gap: 16px; }
.svc-title .ic { width: 50px; height: 50px; border-radius: 50%; flex: none; display: grid; place-items: center; border: 1px solid oklch(0.7 0.06 74 / 0.35); color: var(--champagne); background: oklch(0.5 0.06 74 / 0.06); }
.svc-title .ic svg { width: 22px; height: 22px; }
.svc-title h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); color: var(--stone); line-height: 1.15; }
.svc-edge { display: inline-block; margin-top: 5px; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--noir); background: var(--champagne); padding: 2px 9px; border-radius: var(--r-pill); }
.svc-desc { color: var(--stone-2); font-size: var(--fs-sm); line-height: 1.6; max-width: 46ch; }
.svc-desc b { color: var(--stone); font-weight: 600; }

@media (max-width: 860px) {
  .svc-top { grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
  .svc-row { grid-template-columns: auto 1fr; gap: var(--s-4) var(--s-5); padding-inline: 0; align-items: start; }
  .svc-num { grid-row: 1; }
  .svc-title { grid-row: 1; grid-column: 2; }
  .svc-desc { grid-row: 2; grid-column: 1 / -1; max-width: none; }
  .svc-row:hover { background: transparent; }
}

/* ============================================================
   SECTION 6 — How it works (ivory, horizontal timeline)
   ============================================================ */
.how { background: var(--ivory); color: var(--ink); padding-block: clamp(80px, 10vw, 150px); position: relative; }
.how::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; background-image: radial-gradient(oklch(0.2 0.02 40 / 0.03) 1px, transparent 1px); background-size: 5px 5px; }
.how .wrap { position: relative; }
.how-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.how-kicker { color: var(--oxblood); margin-bottom: var(--s-5); }
.how-kicker::before { background: var(--oxblood); }
.how-top h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); max-width: 15ch; }
.how-top h2 em { font-style: italic; color: var(--oxblood); }
.how-lead { font-size: var(--fs-lg); color: var(--ink-2); line-height: 1.55; padding-bottom: 6px; }

.how-flow { margin-top: clamp(56px, 7vw, 96px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px); position: relative; }
.how-flow::before { content: ""; position: absolute; top: 29px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--champagne-deep), oklch(0.6 0.1 40)); opacity: 0.6; }
.how-step { text-align: center; position: relative; }
.how-step .dot { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto var(--s-5); display: grid; place-items: center; background: var(--ivory); border: 1px solid var(--champagne-deep); color: var(--champagne-deep); position: relative; z-index: 1; box-shadow: 0 6px 20px oklch(0.2 0.02 40 / 0.08); }
.how-step .dot svg { width: 24px; height: 24px; }
.how-step.human .dot { background: var(--oxblood); border-color: var(--oxblood); color: oklch(0.97 0.02 60); box-shadow: 0 10px 26px oklch(0.44 0.14 28 / 0.35); }
.how-step .n { display: block; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--champagne-deep); margin-bottom: 8px; }
.how-step.human .n { color: var(--oxblood); }
.how-step h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); color: var(--ink); line-height: 1.18; margin-bottom: var(--s-3); }
.how-step p { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.55; max-width: 26ch; margin-inline: auto; }

@media (max-width: 820px) {
  .how-top { grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
  .how-flow { grid-template-columns: 1fr; gap: 0; padding-left: 29px; }
  .how-flow::before { top: 29px; bottom: 29px; left: 29px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, var(--champagne-deep), oklch(0.6 0.1 40)); }
  .how-step { text-align: left; display: grid; grid-template-columns: 58px 1fr; gap: var(--s-5); padding-block: var(--s-6); align-items: start; }
  .how-step .dot { margin: 0; transform: translateX(-29px); grid-row: 1 / span 3; }
  .how-step .n { grid-column: 2; margin-bottom: 4px; }
  .how-step h3 { grid-column: 2; }
  .how-step p { grid-column: 2; text-align: left; max-width: 44ch; margin: 0; }
}

/* ============================================================
   SECTION 7 — Who we are + proof (dark cinematic)
   ============================================================ */
.trust { background: var(--noir); color: var(--stone); padding-block: clamp(80px, 10vw, 150px); position: relative; overflow: hidden; }
.trust::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 50% at 95% 90%, oklch(0.44 0.14 28 / 0.2), transparent 60%); }
.trust .wrap { position: relative; }
.trust-top { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.trust-kicker { color: var(--champagne); margin-bottom: var(--s-5); }
.trust-top h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; color: var(--stone); max-width: 15ch; }
.trust-top h2 em { font-style: italic; color: var(--champagne); }
.trust-lead { font-size: var(--fs-lg); color: var(--stone-2); line-height: 1.55; padding-bottom: 6px; }

.trust-split { margin-top: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.trust-figure { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid oklch(0.6 0.03 70 / 0.28); box-shadow: var(--shadow-lg); position: relative; }
.trust-figure img { width: 100%; height: 100%; object-fit: cover; }
.trust-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, oklch(0.16 0.012 40 / 0.5)); }
.trust-copy p { color: var(--stone-2); font-size: var(--fs-body); line-height: 1.62; margin-bottom: var(--s-4); max-width: 46ch; }
.trust-copy p b { color: var(--stone); font-weight: 600; }
.trust-copy .sig { font-family: var(--font-display); font-weight: 400; font-style: italic; color: var(--champagne); font-size: var(--fs-lg); margin-top: var(--s-5); }

.trust-proof { margin-top: clamp(48px, 6vw, 80px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line-dark); }
.trust-proof .plabel { display: inline-flex; align-items: center; gap: 10px; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne); margin-bottom: var(--s-8); }
.trust-proof .plabel svg { width: 15px; height: 15px; }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.trust-stat b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem); color: var(--champagne); line-height: 1; letter-spacing: -0.01em; }
.trust-stat span { display: block; margin-top: 10px; font-size: var(--fs-sm); color: var(--stone-2); line-height: 1.45; max-width: 22ch; }
.trust-stat cite { display: block; margin-top: 6px; font-style: normal; font-size: var(--fs-xs); color: var(--stone-3); letter-spacing: 0.04em; }

@media (max-width: 860px) {
  .trust-top { grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
  .trust-split { grid-template-columns: 1fr; gap: var(--s-8); }
  .trust-stats { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

/* ============================================================
   SECTION 8 — Guarantee + FAQ (ivory)
   ============================================================ */
.guarantee-sec { background: var(--ivory); color: var(--ink); padding-block: clamp(80px, 10vw, 140px) clamp(48px, 6vw, 72px); text-align: center; position: relative; }
.guarantee-sec::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; background-image: radial-gradient(oklch(0.2 0.02 40 / 0.03) 1px, transparent 1px); background-size: 5px 5px; }
.guar-panel { position: relative; max-width: 780px; margin-inline: auto; padding: clamp(40px, 5vw, 68px); background: var(--bg); border: 1px solid var(--line-light); border-radius: var(--r-lg); box-shadow: 0 24px 60px oklch(0.2 0.02 40 / 0.08); }
.guar-seal { width: 82px; height: 82px; border-radius: 50%; margin: 0 auto var(--s-6); display: grid; place-items: center; border: 1px solid oklch(0.75 0.07 74 / 0.5); color: var(--champagne-deep); background: oklch(0.83 0.07 82 / 0.1); }
.guar-seal svg { width: 38px; height: 38px; }
.guar-kicker { color: var(--oxblood); justify-content: center; display: inline-flex; margin-bottom: var(--s-4); }
.guar-kicker::before { background: var(--oxblood); }
.guar-panel h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.8rem); color: var(--ink); line-height: 1.14; letter-spacing: -0.01em; }
.guar-panel p { color: var(--ink-2); font-size: var(--fs-body); line-height: 1.62; max-width: 52ch; margin: var(--s-5) auto 0; }
.guar-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); margin-top: var(--s-8); }
.guar-chip { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 500; color: var(--ink-2); border: 1px solid var(--line-light); border-radius: var(--r-pill); padding: 8px 16px; }
.guar-chip svg { width: 15px; height: 15px; color: var(--champagne-deep); }

.faq-sec { background: var(--ivory); color: var(--ink); padding-block: clamp(40px, 5vw, 64px) clamp(80px, 10vw, 140px); position: relative; }
.faq-sec .wrap { position: relative; }
.faq-head { text-align: center; max-width: 34rem; margin: 0 auto clamp(32px, 4vw, 52px); }
.faq-kicker { color: var(--oxblood); justify-content: center; display: inline-flex; margin-bottom: var(--s-4); }
.faq-kicker::before { background: var(--oxblood); }
.faq-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem); color: var(--ink); line-height: 1.14; letter-spacing: -0.01em; }
.faq-head h2 em { font-style: italic; color: var(--oxblood); }
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq details:first-child { border-top: 1px solid var(--line-light); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: clamp(20px, 2.5vw, 28px) 0; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.35rem); color: var(--ink); letter-spacing: -0.005em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid oklch(0.75 0.07 74 / 0.5); display: grid; place-items: center; color: var(--champagne-deep); transition: transform 0.35s var(--ease-out), background 0.3s var(--ease-out); }
.faq summary .chev svg { width: 14px; height: 14px; }
.faq details[open] summary .chev { transform: rotate(45deg); background: var(--champagne); color: var(--noir); border-color: var(--champagne); }
.faq .faq-a { padding: 0 0 clamp(20px, 2.5vw, 28px); color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.62; max-width: 68ch; }

@media (max-width: 620px) {
  .guar-chips { gap: var(--s-2); }
}

/* ============================================================
   SECTION 9 — Final CTA (drenched oxblood) + Footer
   ============================================================ */
.final-cta { background: var(--oxblood); color: oklch(0.97 0.02 60); position: relative; overflow: hidden; padding-block: clamp(80px, 10vw, 150px); }
.final-cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 15% 10%, oklch(0.56 0.15 40 / 0.5), transparent 60%), radial-gradient(ellipse 60% 70% at 95% 100%, oklch(0.32 0.13 26 / 0.55), transparent 60%); }
.final-cta .wrap { position: relative; }
.fc-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 5vw, 84px); align-items: center; }
.fc-kicker { color: oklch(0.9 0.06 78); margin-bottom: var(--s-5); }
.fc-kicker::before { background: var(--champagne); }
.fc-copy h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.1rem, 1.3rem + 3vw, 3.8rem); line-height: 1.1; letter-spacing: -0.015em; color: oklch(0.99 0.01 70); }
.fc-copy h2 em { font-style: italic; color: var(--champagne); }
.fc-copy p { font-size: var(--fs-lg); color: oklch(0.95 0.03 55); line-height: 1.55; margin-top: var(--s-6);  }
.fc-reassure { display: flex; flex-wrap: wrap; gap: var(--s-5); margin-top: var(--s-8); }
.fc-reassure span { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: oklch(0.93 0.03 60); }
.fc-reassure svg { width: 16px; height: 16px; color: var(--champagne); }

.fc-card { background: var(--ivory); color: var(--ink); border-radius: var(--r-lg); padding: clamp(28px, 3.5vw, 44px); box-shadow: 0 30px 70px oklch(0.15 0.06 30 / 0.4); }
.fc-alt { color: var(--ink-2); }
.fc-card h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); color: var(--ink); margin-bottom: var(--s-5); }
.fc-form { display: grid; gap: var(--s-4); }
.fc-form .field { display: grid; gap: 6px; }
.fc-form label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.fc-form input, .fc-form select { padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--line-light); background: var(--bg); color: var(--ink); font-size: var(--fs-sm); font-family: var(--font-body); }
.fc-form input::placeholder { color: var(--ink-3); }
.fc-form input:focus, .fc-form select:focus { outline: none; border-color: var(--champagne-deep); box-shadow: 0 0 0 3px oklch(0.8 0.08 78 / 0.25); }
.fc-form button { margin-top: var(--s-2); width: 100%; background: var(--oxblood); color: oklch(0.98 0.01 60); border: 0; border-radius: var(--r-pill); padding: 16px; font-family: var(--font-body); font-weight: 600; font-size: var(--fs-body); cursor: pointer; transition: background 0.25s var(--ease-out), transform 0.15s var(--ease-out); }
.fc-form button:hover { background: var(--oxblood-deep); transform: translateY(-1px); }
.fc-form button:active { transform: scale(0.98); }
.fc-alt { text-align: center; margin-top: var(--s-5); font-size: var(--fs-sm); }
.fc-alt a { color: var(--oxblood); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.fc-success { display: none; text-align: center; padding: var(--s-8) var(--s-4); }
.fc-success.show { display: block; }
.fc-success .ok { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto var(--s-4); display: grid; place-items: center; background: var(--ok-soft, oklch(0.95 0.04 150)); color: var(--ok); }
.fc-success .ok svg { width: 30px; height: 30px; }
.fc-success h3 { color: var(--ink); }
.fc-success p { color: var(--ink-2); margin-top: 8px; font-size: var(--fs-sm); }

@media (max-width: 860px) {
  .fc-grid { grid-template-columns: 1fr; gap: var(--s-12); }
}

/* Footer */
.footer { background: var(--noir); color: var(--stone-3); padding: 24px 16px; border-top: 1px solid var(--line-dark); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-12); }
.footer .brand { color: var(--stone); }
.footer-tag { max-width: 32ch; margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--stone-2); }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 88px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne); margin-bottom: var(--s-4); }
.footer-col a, .footer-col p { display: block; color: var(--stone-2); font-size: var(--fs-sm); padding: 5px 0; margin: 0; transition: color 0.2s var(--ease-out); }
.footer-col a:hover { color: var(--champagne); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--stone-3); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-16); }
  .hero-chat { justify-self: start; }
  .hero-copy { max-width: none; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: grid; }
}
@media (max-width: 620px) {
  .hero { padding-top: 104px; }
  .chat-chip { left: auto; right: 16px; bottom: -18px; }
  .hero-marks { gap: var(--s-5); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .scroll-cue svg { animation: none; }
  .hero [data-load] { opacity: 1 !important; transform: none !important; }
  .msg, .typing { animation-duration: 0.01ms !important; }
}
