/* =====================================================================
   Coconut Property Management — stylesheet
   Palette: cream ground, warm-charcoal dark bands, palm-green buttons/links, gold highlights.
   Type: Bricolage Grotesque (display) · Instrument Sans (body) · DM Mono (data)
   ===================================================================== */

:root {
  --bg: #F2EDE4;
  --bg-2: #E8E1D4;
  --bg-3: #DCD3C2;
  --surface: #FBF8F2;
  --surface-2: #FFFDF9;
  --ink: #2B2B2B;
  --ink-2: #4A4A4A;
  --muted: #7A776F;
  --line: rgba(43, 43, 43, .12);
  --line-strong: rgba(43, 43, 43, .26);
  --accent: #445234;
  --accent-hover: #364228;
  --accent-soft: rgba(68, 82, 52, .12);
  --accent-ink: #F2EDE4;
  --gold: #D9A441;
  --gold-soft: rgba(217, 164, 65, .18);
  --gold-ink: #A8771A;   /* gold dark enough to read as text on cream (≈3.3:1); dark mode maps it back to --gold */
  --palm: #5E7A3F;
  --palm-soft: rgba(94, 122, 63, .14);
  --sage: #9DB07E;
  --warn: #C48A1F;
  --bad: #B0472F;
  --sea: #2B2B2B;
  --sea-2: #363431;
  --sea-3: #423F3B;
  --sea-ink: #F2EDE4;
  --sea-muted: #B8B2A7;
  --sea-line: rgba(242, 237, 228, .14);
  --shadow-sm: 0 1px 2px rgba(43,43,43,.06), 0 2px 8px rgba(43,43,43,.06);
  --shadow-md: 0 4px 12px rgba(43,43,43,.08), 0 16px 40px rgba(43,43,43,.10);
  --shadow-lg: 0 24px 60px rgba(43,43,43,.18);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Menlo, monospace;
  --nav-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1E1D1B;
    --bg-2: #262523;
    --bg-3: #312F2C;
    --surface: #2A2927;
    --surface-2: #333230;
    --ink: #F2EDE4;
    --ink-2: #D3CFC4;
    --muted: #A39E93;
    --line: rgba(242, 237, 228, .12);
    --line-strong: rgba(242, 237, 228, .26);
    --accent: #9DB07E;
    --accent-hover: #B3C496;
    --accent-soft: rgba(157, 176, 126, .16);
    --accent-ink: #1E1D1B;
    --gold: #E4B458;
    --gold-soft: rgba(228, 180, 88, .18);
    --gold-ink: #E4B458;
    --palm: #9DB07E;
    --palm-soft: rgba(157, 176, 126, .16);
    --sage: #9DB07E;
    --sea: #141312;
    --sea-2: #1E1D1B;
    --sea-3: #292826;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,.35), 0 16px 40px rgba(0,0,0,.35);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.5);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #1E1D1B;
  --bg-2: #262523;
  --bg-3: #312F2C;
  --surface: #2A2927;
  --surface-2: #333230;
  --ink: #F2EDE4;
  --ink-2: #D3CFC4;
  --muted: #A39E93;
  --line: rgba(242, 237, 228, .12);
  --line-strong: rgba(242, 237, 228, .26);
  --accent: #9DB07E;
  --accent-hover: #B3C496;
  --accent-soft: rgba(157, 176, 126, .16);
  --accent-ink: #1E1D1B;
  --gold: #E4B458;
  --gold-soft: rgba(228, 180, 88, .18);
  --gold-ink: #E4B458;
  --palm: #9DB07E;
  --palm-soft: rgba(157, 176, 126, .16);
  --sage: #9DB07E;
  --sea: #141312;
  --sea-2: #1E1D1B;
  --sea-3: #292826;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,.35), 0 16px 40px rgba(0,0,0,.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.5);
  color-scheme: dark;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, canvas, svg { max-width: 100%; display: block; }
img { object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; margin: 0; text-wrap: balance; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); letter-spacing: -.01em; }
h4 { font-size: 1.1rem; letter-spacing: 0; }
p { margin: 0; }
.lede { font-size: clamp(1.1rem, 1.4vw, 1.3rem); color: var(--ink-2); max-width: 62ch; line-height: 1.55; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.eyebrow { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-2); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
.serif-i { font-family: var(--font-display); font-style: italic; font-weight: 400; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #2B2B2B; }

.container { width: min(1280px, calc(100% - 2.5rem)); margin-inline: auto; }
.container-wide { width: min(1500px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { display: grid; gap: 1rem; max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split { max-width: none; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 3rem; }
.section-head.split .lede { justify-self: end; }
@media (max-width: 860px) { .section-head.split { grid-template-columns: 1fr; } .section-head.split .lede { justify-self: start; } }

/* bands */
.band-sea { background: var(--sea); color: var(--sea-ink); --ink: var(--sea-ink); --ink-2: #D3CFC4; --muted: var(--sea-muted); --line: var(--sea-line); --line-strong: rgba(242,237,228,.3); --palm: var(--sage); --palm-soft: rgba(157,176,126,.16); --surface: var(--sea-2); --surface-2: var(--sea-3); --bg: var(--sea); --bg-2: var(--sea-2); --bg-3: var(--sea-3); --shadow-sm: 0 2px 8px rgba(0,0,0,.3); --shadow-md: 0 16px 40px rgba(0,0,0,.4); color-scheme: dark; }
.band-2 { background: var(--bg-2); }
.band-accent:not(.cta-light) { background: var(--sea); color: #fff; --ink: #fff; --ink-2: rgba(255,255,255,.85); --muted: rgba(255,255,255,.7); --line: rgba(255,255,255,.25); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: .95rem 1.5rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 1rem; line-height: 1; border: 1.5px solid transparent; transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .35s; white-space: nowrap; position: relative; overflow: hidden; }
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 24px -8px rgba(68,82,52,.55); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(68,82,52,.6); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { transform: translateY(-2px); }
.band-sea .btn-ink { background: var(--sea-ink); color: var(--sea); }
.btn-white { background: #fff; color: #2B2B2B; }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 1.07rem; }
.btn-sm { padding: .6rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--accent); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---------- nav ---------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(217,164,65,.5); } 70% { box-shadow: 0 0 0 8px rgba(217,164,65,0); } 100% { box-shadow: 0 0 0 0 rgba(217,164,65,0); } }

.nav { position: sticky; top: 0; z-index: 90; height: var(--nav-h); background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; }
.logo-mark { width: 38px; height: 38px; flex: none; }
.logo small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button { display: inline-flex; align-items: center; gap: .35rem; padding: .6rem .85rem; border-radius: 10px; font-weight: 500; font-size: .97rem; background: none; border: none; color: var(--ink); }
.nav-links > li > a:hover, .nav-links > li > button:hover, .nav-links > li > a.active { background: var(--bg-2); }
.nav-links > li > button svg { width: 14px; height: 14px; transition: transform .25s; }
.nav-links > li:hover > button svg, .nav-links > li.open > button svg { transform: rotate(180deg); }
.mega { position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px); background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 1.2rem; min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; opacity: 0; pointer-events: none; transition: opacity .25s, transform .3s var(--ease); }
.mega.narrow { min-width: 300px; grid-template-columns: 1fr; }
.nav-links > li:hover .mega, .nav-links > li.open .mega, .nav-links > li:focus-within .mega { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega a { display: grid; grid-template-columns: 38px 1fr; gap: .8rem; padding: .8rem; border-radius: 12px; align-items: start; }
.mega a:hover { background: var(--bg-2); }
.mega a .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-soft); color: var(--ink); display: grid; place-items: center; }
.mega a .ic svg { width: 20px; height: 20px; }
.mega a strong { display: block; font-weight: 600; font-size: .96rem; }
.mega a span { display: block; color: var(--muted); font-size: .84rem; line-height: 1.4; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-phone { border-color: transparent; font-family: var(--font-mono); font-weight: 500; font-size: .85rem; letter-spacing: -.01em; gap: .4rem; padding-inline: .6rem; }
.nav-phone svg { width: 15px; height: 15px; }
.nav-phone:hover { border-color: transparent; background: var(--bg-2); transform: none; }
.nav-phone:hover svg { transform: none; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; color: var(--ink); transition: background .2s, transform .3s var(--ease); }
.icon-btn:hover { background: var(--bg-2); transform: rotate(-10deg); }
.icon-btn svg { width: 19px; height: 19px; }
.burger { display: none; }
@media (max-width: 1400px) { .nav .container { gap: 1rem; } .nav-links > li > a, .nav-links > li > button { padding: .6rem .65rem; } .nav-actions .btn-sm { padding-inline: .85rem; } }
@media (max-width: 1300px) { .nav-actions .btn-ghost[target="_blank"] { display: none; } }
@media (max-width: 1240px) { .nav-phone { display: none; } }
@media (max-width: 1080px) { .nav-links, .nav-actions .btn, .nav-actions .portal-btn { display: none; } .burger { display: grid; } }

.drawer { position: fixed; inset: 0; z-index: 120; pointer-events: none; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(43,43,43,.55); opacity: 0; transition: opacity .3s; }
.drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--surface); transform: translateX(100%); transition: transform .45s var(--ease); overflow-y: auto; padding: 1.4rem 1.4rem 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
.drawer.open { pointer-events: auto; }
.drawer.open .scrim { opacity: 1; }
.drawer.open .panel { transform: none; }
.drawer .head { display: flex; justify-content: space-between; align-items: center; }
.drawer nav a { display: flex; justify-content: space-between; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.drawer nav .sub { display: grid; gap: .1rem; padding: .3rem 0 .6rem 1rem; }
.drawer nav .sub a { font-family: var(--font-body); font-weight: 500; font-size: 1rem; padding: .55rem 0; border: none; color: var(--ink-2); }
.drawer .group-title { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-top: .6rem; }

/* ---------- hero ---------- */
/* The dark tokens live on .hero:not(.hero-light) so a .hero.hero-light section simply inherits the page tokens
   (cream + charcoal in light mode, charcoal + cream in dark mode). See "light hero" further down. */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero:not(.hero-light) { background: var(--sea); color: var(--sea-ink); --ink: var(--sea-ink); --ink-2: #D3CFC4; --muted: var(--sea-muted); --line: var(--sea-line); --surface: var(--sea-2); --palm: var(--sage); --palm-soft: rgba(157,176,126,.16); color-scheme: dark; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .55; z-index: 0; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .72; mix-blend-mode: multiply; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, var(--sea) 0%, color-mix(in srgb, var(--sea) 55%, transparent) 38%, transparent 72%), linear-gradient(to right, color-mix(in srgb, var(--sea) 55%, transparent) 0%, transparent 58%); }
.hero-grain { position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; padding-block: clamp(4rem, 8vw, 7rem) clamp(4rem, 8vw, 6rem); min-height: 620px; }
@media (max-width: 1000px) { .hero .container { grid-template-columns: 1fr; } }
.hero-pill { display: inline-flex; align-items: center; gap: .55rem; max-width: 100%; font-family: var(--font-mono); font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; line-height: 1.35; color: var(--sea-ink); background: rgba(242,237,228,.08); border: 1px solid rgba(242,237,228,.16); border-radius: var(--radius-pill); padding: .5rem .95rem .5rem .8rem; margin-bottom: 1.2rem; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero-pill::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(217,164,65,.6); animation: pulse 2.2s infinite; }
.hero-title { font-size: clamp(3rem, 7.2vw, 6.6rem); line-height: .96; font-weight: 800; letter-spacing: -.035em; margin: .5rem 0 1.5rem; }
.hero-title .w { display: inline-block; }
.hero-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero .lede { color: var(--ink-2); font-size: clamp(1.1rem, 1.5vw, 1.35rem); max-width: 56ch; }
.hero-cta { margin-top: 2.2rem; }
.hero-proof { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; }
.hero-proof .stars { color: var(--gold); letter-spacing: .1em; font-size: 1.05rem; }
.hero-proof .p { display: flex; flex-direction: column; gap: .15rem; font-size: .92rem; color: var(--muted); }
.hero-proof .p strong { color: var(--ink); font-family: var(--font-display); font-size: 1.15rem; }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--sea); margin-left: -10px; display: grid; place-items: center; font-family: var(--font-mono); font-size: .68rem; color: #fff; }
.avatars span:first-child { margin-left: 0; }

/* owner-statement card in hero */
.hero-card-wrap { position: relative; perspective: 1400px; }
.hero-card { background: color-mix(in srgb, var(--sea-2) 78%, transparent); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--sea-line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: 0 30px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08); transform-style: preserve-3d; transition: transform .6s var(--ease); }
.hero-card .hc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.hero-card .hc-head .tag { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.hero-card .hc-head .live { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-mono); font-size: .72rem; color: var(--gold); }
.hero-card .hc-head .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero-card .big { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.hero-card .big small { font-size: 1rem; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-left: .5rem; font-family: var(--font-body); }
.hero-card .row { display: flex; justify-content: space-between; align-items: center; padding: .8rem 0; border-top: 1px solid var(--sea-line); font-size: .95rem; }
.hero-card .row .k { color: var(--muted); }
.hero-card .row .v { font-family: var(--font-mono); }
.hero-card .row .v.pos { color: var(--palm); }
.hero-card .spark { margin: 1rem 0 .6rem; height: 64px; width: 100%; }
.float-chip { position: absolute; background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 14px; padding: .7rem .9rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; font-size: .88rem; animation: floaty 6s ease-in-out infinite; }
.float-chip .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--gold-soft); color: var(--ink); }
.float-chip .ic svg { width: 18px; height: 18px; }
.float-chip strong { display: block; font-family: var(--font-display); font-size: .98rem; }
.float-chip span { color: var(--muted); font-size: .8rem; }
.fc-1 { top: -22px; left: -30px; animation-delay: -1s; }
.fc-2 { bottom: -18px; right: -24px; animation-delay: -3s; }
.fc-2 .ic { background: var(--gold-soft); color: var(--ink); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 1000px) { .fc-1 { left: 0; } .fc-2 { right: 0; } }

/* marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: .9rem; background: var(--bg); position: relative; }
.marquee .track { display: flex; gap: 3rem; width: max-content; animation: marquee 48s linear infinite; font-family: var(--font-mono); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.marquee .track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee .track span::after { content: "✦"; color: var(--gold); font-size: .7rem; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--surface); padding: 1.6rem 1.4rem; display: grid; gap: .3rem; }
.stat .n { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.7rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .l { font-weight: 600; font-size: .95rem; }
.stat .s { color: var(--muted); font-size: .8rem; line-height: 1.4; }
@media (max-width: 1100px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* generic card grids */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; position: relative; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.card.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-soft); color: var(--ink); margin-bottom: 1.2rem; }
.card .ic svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-2); font-size: .98rem; }
.card .num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-mono); font-size: .75rem; color: var(--muted); }
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt .shine { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.14), transparent 45%); opacity: 0; transition: opacity .3s; }
.tilt:hover .shine { opacity: 1; }

/* split feature */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature.rev > :first-child { order: 2; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } .feature.rev > :first-child { order: 0; } }
.feature-art { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.2; background: var(--sea); box-shadow: var(--shadow-lg); }
.feature-art canvas { width: 100%; height: 100%; }
.feature-art.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-soft); margin-top: .15rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9A441' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; }
.checklist li strong { display: block; }

/* process timeline */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 92px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--line), var(--gold), var(--line)); }
.tl-item { display: grid; grid-template-columns: 70px 44px 1fr; gap: 1.2rem; padding: 1.6rem 0; align-items: start; }
.tl-item .when { font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); padding-top: .55rem; text-align: right; }
.tl-item .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; position: relative; z-index: 1; transition: background .3s, border-color .3s, color .3s; }
.tl-item.on .dot { background: var(--gold); border-color: var(--gold); color: #2B2B2B; box-shadow: 0 0 0 8px var(--gold-soft); }
.tl-item h3 { margin-bottom: .4rem; }
.tl-item p { color: var(--ink-2); max-width: 60ch; }
@media (max-width: 640px) { .timeline::before { left: 21px; } .tl-item { grid-template-columns: 44px 1fr; } .tl-item .when { grid-column: 2; text-align: left; padding: 0; order: -1; } .tl-item .dot { grid-row: span 2; } }

/* guarantees */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 960px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .promise-grid { grid-template-columns: 1fr; } }
.promise { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; display: grid; gap: .5rem; position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.promise:hover { transform: translateY(-4px); }
.promise .amt { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -.03em; color: var(--gold); line-height: 1; }
.promise h3 { font-size: 1.15rem; }
.promise p { color: var(--ink-2); font-size: .95rem; }
.promise .seal { position: absolute; right: -18px; top: -18px; width: 96px; height: 96px; opacity: .12; }
.seal-badge { width: 150px; height: 150px; animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* pricing */
.toggle { display: inline-flex; align-items: center; gap: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .35rem; }
.toggle button { border: none; background: none; padding: .55rem 1.1rem; border-radius: var(--radius-pill); font-weight: 600; color: var(--muted); font-size: .92rem; transition: background .2s, color .2s; }
.toggle button.on { background: var(--ink); color: var(--bg); }
.band-sea .toggle button.on { background: var(--sea-ink); color: var(--sea); }
.toggle .save { font-family: var(--font-mono); font-size: .7rem; color: var(--palm); text-transform: uppercase; letter-spacing: .1em; padding-right: .6rem; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; position: relative; transition: transform .4s var(--ease), box-shadow .4s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { border: 2px solid var(--gold); box-shadow: 0 30px 70px -30px rgba(217,164,65,.5); }
.plan .tag { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.plan.featured .tag { color: var(--ink-2); }
.plan .name { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -.02em; }
.plan .price { display: flex; align-items: baseline; gap: .4rem; }
.plan .price .n { font-family: var(--font-display); font-size: 3.6rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan .price .u { color: var(--muted); font-size: .95rem; }
.plan .desc { color: var(--ink-2); font-size: .95rem; }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .93rem; }
.plan ul li { display: flex; gap: .6rem; align-items: flex-start; }
.plan ul li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: none; }
.plan ul li.no { color: var(--muted); }
.plan ul li.no::before { content: "–"; color: var(--muted); }
.plan .btn { margin-top: auto; }
.plan .ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #2B2B2B; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .9rem; border-radius: var(--radius-pill); }
.fee-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.fee-table th, .fee-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.fee-table th { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 500; }
.fee-table td.mono { font-family: var(--font-mono); }
.fee-table .zero { color: var(--ink); font-weight: 600; }
.fee-table .zero.num { color: var(--palm); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }

/* filters & chips */
.filters { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-bottom: 2rem; }
.filters select, .filters input { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .65rem 1rem; font-size: .93rem; color: var(--ink); }
.chip { border: 1px solid var(--line); background: var(--surface); padding: .55rem 1rem; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 500; transition: background .2s, color .2s, border-color .2s; }
.chip.on, .chip:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* reviews */
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; display: grid; gap: .9rem; break-inside: avoid; }
.review .stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.review blockquote { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.review .who { display: flex; align-items: center; gap: .8rem; }
.review .who .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-size: .75rem; color: #fff; flex: none; }
.review .who strong { display: block; font-size: .95rem; }
.review .who span { color: var(--muted); font-size: .82rem; }
.masonry { columns: 3; column-gap: 1.4rem; }
.masonry .review { margin-bottom: 1.4rem; }
@media (max-width: 1000px) { .masonry { columns: 2; } }
@media (max-width: 640px) { .masonry { columns: 1; } }
.review-slider { display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.review-slider::-webkit-scrollbar { display: none; }
.review-slider .review { flex: 0 0 min(420px, 85vw); scroll-snap-align: start; }
.rating-summary { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2.5rem; }
.rating-summary .big { font-family: var(--font-display); font-size: 5rem; font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.rating-summary .bars { display: grid; gap: .5rem; }
.rating-summary .bar { display: grid; grid-template-columns: 24px 1fr 44px; gap: .8rem; align-items: center; font-family: var(--font-mono); font-size: .8rem; }
.rating-summary .bar i { height: 8px; border-radius: 4px; background: var(--bg-3); overflow: hidden; display: block; }
.rating-summary .bar i::after { content: ""; display: block; height: 100%; width: var(--w); background: var(--gold); border-radius: 4px; }
@media (max-width: 640px) { .rating-summary { grid-template-columns: 1fr; } }

/* team */
.person { text-align: left; display: grid; gap: .8rem; }
.person .av { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); display: grid; place-items: center; font-family: var(--font-display); font-size: 3.6rem; font-weight: 800; color: #fff; position: relative; overflow: hidden; }
.person .av::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 50%); }
.person strong { font-family: var(--font-display); font-size: 1.2rem; }
.person .role { color: var(--ink-2); font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.person p { color: var(--ink-2); font-size: .93rem; }

/* accordion */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .pm { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .2s; }
.acc summary .pm svg { width: 14px; height: 14px; }
.acc details[open] summary .pm { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: var(--bg); }
.acc .ans { padding: 0 0 1.4rem; color: var(--ink-2); max-width: 70ch; }
.tabs { display: inline-flex; gap: .3rem; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-pill); padding: .3rem; margin-bottom: 2rem; }
.tabs button { border: none; background: none; padding: .55rem 1.2rem; border-radius: var(--radius-pill); font-weight: 600; color: var(--muted); }
.tabs button.on { background: var(--ink); color: var(--bg); }
.band-sea .tabs button.on { background: var(--sea-ink); color: var(--sea); }

/* forms */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea { width: 100%; background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px; padding: .85rem 1rem; font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--gold-soft); }
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: .8rem; color: var(--muted); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.book-bar { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .8rem 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-md); }
.book-bar .eyebrow { flex: 1 1 100%; margin-bottom: 0; }
.book-bar .field, .book-bar > input, .book-bar > select { flex: 1 1 150px; min-width: 0; }
.book-bar input, .book-bar select { width: 100%; min-height: 50px; background: var(--surface-2); border: 1.5px solid var(--line); border-radius: 12px; padding: .75rem 1rem; font-size: 1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.book-bar input:focus, .book-bar select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--gold-soft); }
.book-bar input::-webkit-calendar-picker-indicator { opacity: .7; cursor: pointer; }
.book-bar .btn { flex: 0 0 auto; min-height: 50px; }
@media (max-width: 700px) { .book-bar { flex-direction: column; align-items: stretch; padding: 1.1rem; } .book-bar .field, .book-bar > input, .book-bar > select, .book-bar .btn { flex: none; width: 100%; } }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: linear-gradient(to right, var(--ink) var(--p, 50%), var(--bg-3) var(--p, 50%)); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 3px solid var(--ink); box-shadow: var(--shadow-sm); cursor: grab; }
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 3px solid var(--ink); cursor: grab; }
.field.slider .lab { display: flex; justify-content: space-between; align-items: baseline; }
.field.slider .lab output { font-family: var(--font-mono); font-weight: 500; }

/* calculators */
.calc { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc-out { background: var(--sea); color: var(--sea-ink); --ink: var(--sea-ink); --ink-2: #D3CFC4; --muted: var(--sea-muted); --line: var(--sea-line); --palm: var(--sage); --palm-soft: rgba(157,176,126,.16); border-radius: var(--radius-lg); padding: 2rem; display: grid; gap: 1.2rem; align-content: start; position: sticky; top: calc(var(--nav-h) + 1rem); color-scheme: dark; }
.calc-out .k { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.calc-out .v { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.calc-out .v.pos { color: var(--palm); }
.calc-out .v.neg { color: #FF8A6C; }
.calc-out .kv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.calc-out .kv div { border-top: 1px solid var(--line); padding-top: .8rem; }
.calc-out .kv .v2 { font-family: var(--font-mono); font-size: 1.2rem; }
.calc-out canvas { width: 100%; height: 130px; }
.calc-out .note { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.tool-nav { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }

/* area panel */
.area-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; display: grid; gap: 1rem; }
.area-panel .big { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -.02em; }
.area-panel .kv { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.area-panel .kv div { background: var(--bg-2); border-radius: 12px; padding: .8rem; }
.area-panel .kv .k { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.area-panel .kv .v { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.area-list { columns: 3; column-gap: 1.5rem; margin-top: 1.5rem; }
.area-list button { display: block; width: 100%; text-align: left; background: none; border: none; padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; break-inside: avoid; display: flex; justify-content: space-between; }
.area-list button:hover, .area-list button.on { color: var(--accent); }
.area-list button span { font-family: var(--font-mono); font-size: .75rem; color: var(--muted); }
@media (max-width: 800px) { .area-list { columns: 2; } }
@media (max-width: 500px) { .area-list { columns: 1; } }
.county-head { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin: 1rem 0 .3rem; break-after: avoid; }

/* articles */
.article-card { display: grid; grid-template-rows: auto 1fr; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-card .art { aspect-ratio: 16/9; background: var(--sea); position: relative; }
.article-card .art canvas { width: 100%; height: 100%; }
.article-card .body { padding: 1.4rem; display: grid; gap: .6rem; align-content: start; }
.article-card .tagline { display: flex; gap: .8rem; align-items: center; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.article-card .tagline b { color: var(--ink-2); font-weight: 500; }
.article-card h3 { font-size: 1.3rem; }
.article-card p { color: var(--ink-2); font-size: .95rem; }
.article-card.big { grid-column: span 2; grid-template-rows: none; grid-template-columns: 1.1fr .9fr; }
.article-card.big .art { aspect-ratio: auto; min-height: 320px; }
.article-card.big h3 { font-size: 2rem; }
@media (max-width: 900px) { .article-card.big { grid-column: span 1; grid-template-columns: 1fr; } .article-card.big .art { aspect-ratio: 16/9; min-height: 0; } }
.prose { max-width: 68ch; margin-inline: auto; font-size: 1.12rem; line-height: 1.7; display: grid; gap: 1.3rem; }
.prose .intro { font-size: 1.3rem; color: var(--ink-2); font-family: var(--font-display); font-weight: 500; line-height: 1.45; }
.prose h2 { font-size: 1.6rem; margin-top: 1rem; }
.article-head { max-width: 800px; margin-inline: auto; text-align: center; display: grid; gap: 1.2rem; margin-bottom: 3rem; }
.article-head .meta { display: flex; justify-content: center; gap: 1rem; font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.callout { background: var(--gold-soft); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; }

/* portal mock */
.portal-shell { display: grid; grid-template-columns: 220px 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-lg); min-height: 520px; }
@media (max-width: 800px) { .portal-shell { grid-template-columns: 1fr; } .portal-side { display: none; } }
.portal-side { background: var(--sea); color: var(--sea-ink); padding: 1.4rem; display: grid; gap: .3rem; align-content: start; }
.portal-side .brand { font-family: var(--font-display); font-weight: 700; margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; }
.portal-side a { padding: .6rem .8rem; border-radius: 10px; font-size: .92rem; color: var(--sea-muted); display: flex; gap: .6rem; align-items: center; }
.portal-side a.on { background: rgba(255,255,255,.08); color: #fff; }
.portal-side a svg { width: 16px; height: 16px; }
.portal-main { padding: 1.6rem; display: grid; gap: 1.2rem; align-content: start; }
.portal-main .top { display: flex; justify-content: space-between; align-items: center; }
.portal-main .top h3 { font-size: 1.3rem; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
@media (max-width: 700px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
.kpi { background: var(--bg-2); border-radius: 14px; padding: 1rem; }
.kpi .k { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.kpi .v { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; }
.kpi .d { font-size: .75rem; color: var(--muted); font-family: var(--font-mono); }
.kpi .d.pos { color: var(--palm); }
.portal-chart { background: var(--bg-2); border-radius: 14px; padding: 1rem; }
.portal-chart canvas { width: 100%; height: 160px; }
.ledger { width: 100%; border-collapse: collapse; font-size: .88rem; }
.ledger th, .ledger td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--line); }
.ledger th { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 500; }
.ledger td.mono { font-family: var(--font-mono); }
.pill { display: inline-block; padding: .2rem .6rem; border-radius: var(--radius-pill); font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.pill.ok { background: var(--gold-soft); color: var(--ink); }
.pill.warn { background: var(--gold-soft); color: var(--warn); }
.pill.info { background: var(--gold-soft); color: var(--ink); }

/* comparison */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .95rem; }
.compare th, .compare td { padding: 1rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 500; }
.compare thead th { font-family: var(--font-display); font-size: 1.05rem; }
.compare .us { background: var(--gold-soft); }
.compare thead th.us { border-radius: 14px 14px 0 0; color: var(--ink); }
.compare .y { color: var(--gold); font-weight: 700; }
.compare .n { color: var(--muted); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; z-index: 0; }
.cta-band canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; mix-blend-mode: multiply; opacity: .85; }
.cta-band .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center; }
@media (max-width: 900px) { .cta-band .container { grid-template-columns: 1fr; } }
.cta-band h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }

/* page hero (interior) */
.page-hero { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 1.2rem; }
.page-hero .btn-row { margin-top: 2rem; }
.page-hero .bg-word { position: absolute; right: -2vw; bottom: -2vw; font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 18vw, 18rem); letter-spacing: -.06em; color: var(--ink); opacity: .04; pointer-events: none; user-select: none; line-height: 1; white-space: nowrap; }
.page-hero.has-photo { isolation: isolate; display: grid; align-items: center; min-height: min(480px, 62vh); background: var(--sea); color: var(--sea-ink); --ink: var(--sea-ink); --ink-2: #D3CFC4; --muted: var(--sea-muted); --line: var(--sea-line); --line-strong: rgba(242,237,228,.3); --surface: var(--sea-2); --surface-2: var(--sea-3); --palm: var(--sage); --palm-soft: rgba(157,176,126,.16); color-scheme: dark; }
.page-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; opacity: .5; z-index: 0; }
.page-hero.has-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to right, var(--sea) 0%, color-mix(in srgb, var(--sea) 86%, transparent) 32%, color-mix(in srgb, var(--sea) 42%, transparent) 64%, color-mix(in srgb, var(--sea) 12%, transparent) 100%); }
.page-hero.has-photo .container { position: relative; z-index: 2; }
.page-hero.has-photo .bg-word { z-index: 1; color: var(--sea-ink); opacity: .05; }
.page-hero.has-photo .eyebrow { color: var(--gold); }
.page-hero.has-photo .crumbs a:hover { color: var(--sea-ink); }
.page-hero.has-photo .btn-ghost { color: var(--sea-ink); border-color: rgba(242,237,228,.4); }
.page-hero.has-photo .btn-ghost:hover { border-color: var(--sea-ink); }
.page-hero.has-photo .btn-ink { background: var(--sea-ink); color: var(--sea); }
@media (max-width: 700px) { .page-hero.has-photo::before { background: linear-gradient(to top, var(--sea) 0%, color-mix(in srgb, var(--sea) 78%, transparent) 55%, color-mix(in srgb, var(--sea) 40%, transparent) 100%); } .page-photo { object-position: center; } }
.crumbs { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); display: flex; gap: .6rem; margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--accent); }

/* footer */
.footer { background: var(--sea); color: var(--sea-ink); --ink: var(--sea-ink); --ink-2: #D3CFC4; --muted: var(--sea-muted); --line: var(--sea-line); --palm: var(--sage); --palm-soft: rgba(157,176,126,.16); padding: 4rem 0 2rem; position: relative; overflow: hidden; }
.footer .grid-f { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 1000px) { .footer .grid-f { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer .grid-f { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 500; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .94rem; }
.footer ul a { color: #D3CFC4; }
.footer ul a:hover { color: #fff; }
.footer .about p { color: var(--sea-muted); font-size: .95rem; max-width: 40ch; margin-top: 1rem; }
.footer .news { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer .news input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid var(--sea-line); border-radius: var(--radius-pill); padding: .7rem 1rem; color: #fff; }
.footer .bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--sea-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8rem; color: var(--sea-muted); align-items: center; }
.footer .badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.footer .badges span { border: 1px solid var(--sea-line); border-radius: 8px; padding: .35rem .7rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.footer .giant { position: absolute; left: 50%; bottom: -1.2vw; transform: translateX(-50%); font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 15vw, 16rem); letter-spacing: -.06em; color: #fff; opacity: .03; pointer-events: none; white-space: nowrap; line-height: 1; }

/* modal */
.modal { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 1rem; pointer-events: none; }
.modal .scrim { position: absolute; inset: 0; background: rgba(43,43,43,.65); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s; }
.modal .box { position: relative; background: var(--surface); color: var(--ink); border-radius: var(--radius-lg); width: min(920px, 100%); max-height: 90vh; overflow-y: auto; transform: translateY(24px) scale(.98); opacity: 0; transition: transform .45s var(--ease), opacity .3s; box-shadow: var(--shadow-lg); }
.modal.open { pointer-events: auto; }
.modal.open .scrim { opacity: 1; }
.modal.open .box { transform: none; opacity: 1; }
.modal .close { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: var(--surface); }
.modal-listing { display: grid; grid-template-columns: 1.1fr .9fr; }
@media (max-width: 760px) { .modal-listing { grid-template-columns: 1fr; } }
.modal-listing .art { background: var(--sea); min-height: 320px; }
.modal-listing .art canvas { width: 100%; height: 100%; }
.modal-listing .body { padding: 2rem; display: grid; gap: 1rem; align-content: start; }
.modal-listing .rent { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; }
.modal-listing .rent small { font-size: 1rem; color: var(--muted); font-weight: 500; font-family: var(--font-body); }
.modal-listing .specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.modal-listing .specs div { background: var(--bg-2); border-radius: 10px; padding: .7rem; text-align: center; }
.modal-listing .specs .k { font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.modal-listing .specs .v { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }

/* toast */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translate(-50%, 20px); background: var(--ink); color: var(--bg); padding: .9rem 1.3rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); z-index: 200; opacity: 0; transition: opacity .3s, transform .4s var(--ease); font-weight: 500; display: flex; gap: .7rem; align-items: center; max-width: calc(100vw - 2rem); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--gold); }

/* chat bubble */
.chat-fab { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 110; display: flex; align-items: center; gap: .6rem; background: var(--accent); color: #fff; border: none; padding: .8rem 1.1rem .8rem .9rem; border-radius: var(--radius-pill); box-shadow: 0 14px 30px -8px rgba(68,82,52,.6); font-weight: 600; transition: transform .35s var(--ease); }
.chat-fab:hover { transform: translateY(-3px) scale(1.03); }
.chat-fab svg { width: 20px; height: 20px; }
.chat-box { position: fixed; right: 1.4rem; bottom: 5.4rem; width: min(360px, calc(100vw - 2.8rem)); background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); z-index: 110; overflow: hidden; transform: translateY(16px) scale(.96); opacity: 0; pointer-events: none; transition: transform .4s var(--ease), opacity .3s; transform-origin: bottom right; }
.chat-box.open { transform: none; opacity: 1; pointer-events: auto; }
.chat-box .h { background: var(--sea); color: #fff; padding: 1rem 1.2rem; display: flex; gap: .8rem; align-items: center; }
.chat-box .h strong { display: block; font-family: var(--font-display); }
.chat-box .h span { font-size: .78rem; color: var(--sea-muted); }
.chat-box .msgs { padding: 1rem; display: grid; gap: .6rem; max-height: 280px; overflow-y: auto; }
.chat-box .m { padding: .7rem .9rem; border-radius: 14px; font-size: .92rem; max-width: 85%; line-height: 1.45; }
.chat-box .m.bot { background: var(--bg-2); border-bottom-left-radius: 4px; }
.chat-box .m.me { background: var(--ink); color: var(--bg); margin-left: auto; border-bottom-right-radius: 4px; }
.chat-box .quick { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 1rem .8rem; }
.chat-box .quick button { font-size: .8rem; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-pill); padding: .4rem .7rem; }
.chat-box .quick button:hover { border-color: var(--accent); color: var(--accent); }
.chat-box form { display: flex; border-top: 1px solid var(--line); }
.chat-box form input { flex: 1; border: none; background: transparent; padding: .9rem 1rem; }
.chat-box form button { border: none; background: transparent; padding: 0 1rem; color: var(--accent); }

/* back to top & progress */
.progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); width: 0; z-index: 200; transition: width .1s linear; }
.to-top { position: fixed; left: 1.4rem; bottom: 1.4rem; z-index: 110; opacity: 0; pointer-events: none; transition: opacity .3s; background: var(--surface); }
.to-top.show { opacity: 1; pointer-events: auto; }

/* cursor glow on dark bands */
.glow-host { position: relative; }
.glow-host::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px circle at var(--gx, -1000px) var(--gy, -1000px), rgba(217,164,65,.12), transparent 40%); z-index: 0; }
.glow-host > * { position: relative; z-index: 1; }

/* reveal (only applied by JS to elements below the fold at load) */
.will-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.will-reveal.in { opacity: 1; transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* page transition */
#app { animation: pagein .6s var(--ease); }
@keyframes pagein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-title .w { animation: wordin .9s var(--ease) both; animation-delay: calc(var(--i) * 80ms); }
@keyframes wordin { from { opacity: 0; transform: translateY(30px) rotate(2deg); } to { opacity: 1; transform: none; } }

/* misc */
.divider { height: 1px; background: var(--line); }
.two-col { columns: 2; column-gap: 3rem; }
@media (max-width: 700px) { .two-col { columns: 1; } }
.logos { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center; justify-content: center; opacity: .75; }
.logos span { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em; display: inline-flex; gap: .5rem; align-items: center; }
.logos span i { width: 10px; height: 10px; border-radius: 3px; background: var(--gold); display: inline-block; }
.big-quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.25; max-width: 30ch; }
.big-quote em { font-style: italic; color: var(--gold); font-weight: 400; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }
.value { padding: 1.6rem; border-top: 2px solid var(--gold); }
.value h3 { font-size: 1.15rem; margin: .8rem 0 .5rem; }
.value .g { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--gold); }
.history { display: grid; gap: 0; }
.history .yr { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.history .yr b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.history .yr p { color: var(--ink-2); }
.job { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.job .ty { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.job h3 { margin: .3rem 0; }
.job p { color: var(--ink-2); }
@media (max-width: 600px) { .job { grid-template-columns: 1fr; } }
.office { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; display: grid; gap: .3rem; }
.office strong { font-family: var(--font-display); font-size: 1.15rem; }
.office .mono { color: var(--muted); font-size: .82rem; }
.steps-inline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .steps-inline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps-inline { grid-template-columns: 1fr; } }
.step { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.step .n { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; color: var(--ink-2); margin-bottom: .6rem; }
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--ink-2); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .will-reveal { opacity: 1; transform: none; }
}

/* ---------- brand additions ---------- */
.logo-mark { width: 44px; height: 40px; object-fit: contain; }
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.wordmark b { color: var(--accent); font-weight: 800; }
.wordmark.rev { color: #F2EDE4; }
.wordmark.rev b { color: #9DB07E; }
.wordmark small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.footer .giant-leaf { position: absolute; right: -6vw; bottom: -8vw; width: clamp(280px, 40vw, 640px); opacity: .07; pointer-events: none; filter: brightness(3); }
.promise .seal { position: absolute; right: -14px; top: -10px; width: 110px; opacity: .10; }
.seal-wrap { position: relative; width: 240px; height: 240px; display: grid; place-items: center; }
.seal-wrap .seal-badge { width: 120px; animation: none; }
.seal-wrap .seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 30s linear infinite; }
.plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 980px; margin-inline: auto; }
@media (max-width: 800px) { .plans-2 { grid-template-columns: 1fr; max-width: 520px; } }
.field.chk { flex-direction: row; display: flex; gap: .6rem; align-items: center; font-weight: 500; }
.field.chk input { width: 18px; height: 18px; accent-color: var(--ink); }
.hero-proof .stars { color: var(--gold); }
.band-sea .btn-ghost { color: var(--sea-ink); border-color: var(--sea-line); }
.hero .btn-ghost { color: var(--sea-ink); border-color: rgba(242,237,228,.4); }
.hero .btn-ghost:hover { border-color: var(--sea-ink); }
.hero .eyebrow, .band-sea .eyebrow, .calc-out .eyebrow { color: var(--gold); }
@media (max-width: 1180px) { .fc-1 { display: none; } }

/* ---------- anywhere (US dot matrix, no pins) ---------- */
.anywhere-art { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; background: var(--sea); box-shadow: var(--shadow-lg); }
.anywhere-art canvas { width: 100%; height: 100%; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.photo-tile { position: relative; isolation: isolate; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: #2B2B2B; color: #F2EDE4; box-shadow: var(--shadow-sm); transition: box-shadow .45s var(--ease); }
.photo-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.photo-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(43,43,43,.94) 0%, rgba(43,43,43,.6) 36%, rgba(43,43,43,.08) 68%, rgba(43,43,43,0) 100%); }
.photo-tile:hover { box-shadow: var(--shadow-md); }
.photo-tile:hover img { transform: scale(1.05); }
.pt-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.4rem; display: grid; gap: .35rem; }
.pt-body h3 { color: #F2EDE4; font-size: 1.3rem; }
.pt-body p { color: rgba(242,237,228,.82); font-size: .92rem; line-height: 1.45; }
.pt-body .num { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.photo-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.photo-strip img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-lg); background: var(--bg-3); box-shadow: var(--shadow-sm); }
@media (max-width: 560px) { .photo-strip { gap: .8rem; } .photo-strip img { border-radius: var(--radius); } }
.anywhere-art .cap { position: absolute; left: 1rem; bottom: 1rem; background: rgba(43,43,43,.7); color: #F2EDE4; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: .6rem .9rem; border-radius: 12px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- owner dashboard ---------- */
.dash-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: 2rem; }
.dash-head .lede { margin-top: .6rem; }
.dash-head .desk { display: grid; gap: .2rem; text-align: right; font-size: .9rem; color: var(--muted); }
.dash-head .desk a { font-family: var(--font-mono); font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.dash-head .desk a:hover { color: var(--accent); }
@media (max-width: 640px) { .dash-head .desk { text-align: left; } }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.4rem; align-items: start; }
@media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-col { display: grid; gap: 1.4rem; align-content: start; }
.dash-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; display: grid; gap: 1rem; align-content: start; }
.dash-card h3 { font-size: 1.2rem; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .4rem .8rem; }
.dash-card h3 small { font-family: var(--font-mono); font-size: .68rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.dash-card canvas { width: 100%; height: 220px; }
.dash-card .table-wrap { border: none; border-radius: 0; background: transparent; }
.dash-card .ledger td .btn-sm { padding: .4rem .8rem; font-size: .8rem; }
.ledger tr.mine td { background: var(--gold-soft); font-weight: 600; }
.ledger td.num, .ledger th.num { text-align: right; }
.doc-list { list-style: none; margin: 0; padding: 0; display: grid; }
.doc-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--line); font-size: .95rem; }
.doc-list li span, .doc-list li small { font-family: var(--font-mono); font-size: .76rem; color: var(--muted); white-space: nowrap; }
.doc-list li strong { font-weight: 600; }
.doc-list li .btn-row { gap: .4rem; }
.approval { display: grid; gap: .5rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.approval .amt { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.approval p { color: var(--ink-2); font-size: .92rem; }
.sample-tag { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-mono); font-size: .66rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; background: var(--gold-soft); color: var(--ink); padding: .3rem .7rem; border-radius: var(--radius-pill); vertical-align: middle; white-space: nowrap; }
.sample-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* =====================================================================
   Brighter site — light hero, light page heroes, light CTA band, real reviews,
   the switching-page comparison, and the intro-call modal.
   Every overlay colour below is a theme token (via color-mix), so dark mode gets
   charcoal gradients over cream text and never a cream gradient over charcoal text.
   Dark objects that remain on purpose: footer, hero statement card, canvas art, calculator output.
   ===================================================================== */

/* ---------- light hero (home): section.hero.hero-light ---------- */
.hero.hero-light { background: var(--bg); color: var(--ink); }
.hero-light .hero-photo { opacity: 1; object-position: 70% 55%; }
/* cream → transparent, left to right: solid ground under the headline, the photo owns the right */
.hero.hero-light::after { display: none; }
/* water canvas: painted by GFX.heroWater(canvas, { light:true }) (cream ground, faint sage/gold lines, no vignette),
   kept visible at .5 and multiplied over the photo's right half only (masked out on the text side) */
.hero-light .hero-canvas { opacity: .5; mix-blend-mode: multiply; -webkit-mask-image: linear-gradient(to right, transparent 45%, #000 78%); mask-image: linear-gradient(to right, transparent 45%, #000 78%); }
@media (max-width: 1000px) { .hero-light .hero-canvas { -webkit-mask-image: linear-gradient(to bottom, transparent 40%, #000 80%); mask-image: linear-gradient(to bottom, transparent 40%, #000 80%); } }
.hero-light .hero-grain { opacity: .18; }
.hero-light .hero-pill { color: var(--ink); background: color-mix(in srgb, var(--surface) 82%, transparent); border-color: var(--line); }
.hero.hero-light .eyebrow { color: var(--ink-2); }
.hero-light .hero-title { color: var(--ink); }
.hero-light .hero-title em { color: var(--gold-ink); }
.hero-light .lede { color: var(--ink-2); }
.hero-light .hero-proof .p { color: var(--muted); }
.hero-light .hero-proof .p strong { color: var(--ink); }
.hero-light .hero-proof .stars { color: var(--gold); }
.hero-light .avatars span { border-color: var(--bg); }
.hero.hero-light .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
.hero.hero-light .btn-ghost:hover { border-color: var(--ink); }
/* the owner-statement card is the one dark object left in the hero */
.hero-light .hero-card { background: color-mix(in srgb, var(--sea) 90%, transparent); color: var(--sea-ink); --ink: var(--sea-ink); --ink-2: #D3CFC4; --muted: var(--sea-muted); --line: var(--sea-line); --surface: var(--sea-2); --palm: var(--sage); --palm-soft: rgba(157,176,126,.16); border-color: var(--sea-line); box-shadow: 0 30px 80px rgba(43,43,43,.28), inset 0 1px 0 rgba(255,255,255,.08); color-scheme: dark; }
.hero-light .float-chip { box-shadow: var(--shadow-md), 0 0 0 1px var(--line); }
.hero-card-wrap .float-chip { z-index: 2; }                                  /* chips sit on top of the statement card, not behind it */

/* ---------- page hero with a photo, light treatment: .page-hero.has-photo-light ---------- */
.page-hero.has-photo-light { isolation: isolate; display: grid; align-items: center; min-height: min(480px, 62vh); background: var(--bg-2); color: var(--ink); }
.page-hero.has-photo-light .page-photo { opacity: 1; object-position: 68% 50%; }
.page-hero.has-photo-light::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to right, var(--bg-2) 0%, color-mix(in srgb, var(--bg-2) 96%, transparent) 34%, color-mix(in srgb, var(--bg-2) 82%, transparent) 52%, color-mix(in srgb, var(--bg-2) 30%, transparent) 76%, transparent 100%); }
.page-hero.has-photo-light .container { position: relative; z-index: 2; }
.page-hero.has-photo-light .bg-word { z-index: 1; color: var(--ink); opacity: .04; }
.page-hero.has-photo-light .eyebrow { color: var(--ink-2); }
.page-hero.has-photo-light .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
.page-hero.has-photo-light .btn-ghost:hover { border-color: var(--ink); }
@media (max-width: 700px) { .page-hero.has-photo-light::before { background: linear-gradient(to bottom, var(--bg-2) 0%, color-mix(in srgb, var(--bg-2) 92%, transparent) 55%, color-mix(in srgb, var(--bg-2) 55%, transparent) 100%); } .page-hero.has-photo-light .page-photo { object-position: center; } }

/* ---------- light CTA band: section.cta-band.cta-light with a .cta-tile photo on the right ---------- */
.cta-band.cta-light { background: color-mix(in srgb, var(--gold) 12%, var(--bg)); color: var(--ink); }
.cta-light > .cta-photo, .cta-light > canvas { display: none; }            /* the full-bleed photo and orbs are replaced by the tile */
.cta-light .container { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cta-light .container > .btn-row { grid-column: 1; justify-content: flex-start !important; }   /* beats the old inline flex-end */
.cta-light h2 { color: var(--ink); }
.cta-light .lede { color: var(--ink-2) !important; }                       /* beats the old inline white */
.cta-tile { position: relative; grid-column: 2; grid-row: 1 / span 2; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-3); box-shadow: var(--shadow-lg); }
.cta-tile img { position: static; inset: auto; width: 100%; height: 100%; object-fit: cover; opacity: 1; display: block; transition: transform 1.1s var(--ease); }
.cta-tile:hover img { transform: scale(1.03); }
.cta-tile .cap { position: absolute; left: 1rem; bottom: 1rem; background: rgba(43,43,43,.72); color: #F2EDE4; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: .55rem .85rem; border-radius: 12px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.cta-light .btn-primary, .cta-light .btn-white { background: var(--palm); color: var(--accent-ink); box-shadow: 0 8px 24px -8px rgba(94,122,63,.55); }
.cta-light .btn-primary:hover, .cta-light .btn-white:hover { background: var(--palm); filter: brightness(.92); }
.cta-light .btn:not(.btn-primary):not(.btn-white):not(.btn-ink) { color: var(--ink) !important; border-color: var(--line-strong) !important; }   /* ghost/tel buttons: beats the old inline white */
.cta-light .btn:not(.btn-primary):not(.btn-white):not(.btn-ink):hover { border-color: var(--ink) !important; }
@media (max-width: 900px) { .cta-light .container { grid-template-columns: 1fr; } .cta-tile { grid-column: 1; grid-row: auto; aspect-ratio: 16 / 10; } }

/* ---------- charcoal art frames inside cream bands (band-sea → band-2 sections keep their dark canvases) ---------- */
.band-2 .feature-art, .band-2 .anywhere-art { box-shadow: var(--shadow-lg), 0 0 0 1px var(--line); }
.feature-art::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }

/* ---------- real reviews: channel badge, verified line, tag chips ---------- */
.review .meta, .review .top { display: flex; align-items: center; justify-content: space-between; gap: .6rem 1rem; flex-wrap: wrap; }
.review .badge { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-mono); font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .3rem .7rem; white-space: nowrap; line-height: 1.2; }
.review .badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.review .badge.airbnb::before, .review .badge.badge-airbnb::before, .review[data-source="Airbnb"] .badge::before { background: #E0453A; }
.review .badge.vrbo::before, .review .badge.badge-vrbo::before, .review[data-source="Vrbo"] .badge::before { background: #2F5FC5; }
.review .verified, .review .who .verified { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--muted); }
.review .verified::before { content: "✓"; color: var(--palm); font-weight: 700; }
.review .tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.review .tags > * { font-size: .76rem; font-weight: 500; line-height: 1.2; color: var(--ink); background: var(--gold-soft); border-radius: var(--radius-pill); padding: .32rem .68rem; }
.review.tags-only blockquote { display: none; }
.rating-summary .big small { display: block; font-family: var(--font-body); font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); margin-top: .5rem; }
.rating-summary .caption { color: var(--ink-2); font-size: .98rem; max-width: 36ch; line-height: 1.5; }
.rating-summary .caption strong { color: var(--ink); }

/* ---------- switching page: text comparison (reuses .compare) and the sources list ---------- */
.compare-page .compare, .compare.compare-text { min-width: 840px; table-layout: fixed; font-size: .9rem; line-height: 1.5; }
.compare-page .compare th, .compare-page .compare td, .compare.compare-text th, .compare.compare-text td { text-align: left; vertical-align: top; padding: 1rem 1.1rem; }
.compare-page .compare th:first-child, .compare-page .compare td:first-child, .compare.compare-text th:first-child, .compare.compare-text td:first-child { width: 17%; font-weight: 600; color: var(--ink); }
.compare-page .compare thead th, .compare.compare-text thead th { font-family: var(--font-display); font-size: 1.05rem; border-bottom: 2px solid var(--line-strong); }
.compare-page .compare tbody tr:last-child td, .compare.compare-text tbody tr:last-child td { border-bottom: none; }
.compare-page .compare td.us, .compare.compare-text td.us { background: var(--gold-soft); color: var(--ink); font-weight: 500; }
.compare .cite { display: block; margin-top: .5rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .02em; color: var(--muted); line-height: 1.45; overflow-wrap: anywhere; }
.compare .np { color: var(--muted); font-style: italic; }                   /* "not published" */
.sources { margin-top: 1.4rem; font-size: .84rem; color: var(--muted); line-height: 1.55; display: grid; gap: .9rem; }
.sources h3, .sources h4, .sources > strong { font-family: var(--font-mono); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin: 0; }
.sources ul, .sources ol { margin: 0; padding: 0; list-style: none; display: grid; gap: .35rem; }
.sources ol { list-style: decimal; padding-left: 1.2rem; }
.sources li { overflow-wrap: anywhere; }
.sources li strong { color: var(--ink-2); font-weight: 600; }
.sources a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: .18em; }
.sources a:hover { text-decoration-color: currentColor; }
.sources .read-on { font-family: var(--font-mono); font-size: .7rem; color: var(--muted); }
.sources .caveat, .compare-page .caveat { font-style: italic; color: var(--ink-2); border-left: 3px solid var(--gold); padding: .2rem 0 .2rem .9rem; max-width: 72ch; }
@media (max-width: 640px) { .sources { font-size: .8rem; } }

/* ---------- intro-call request modal: #modal .box > .call-form (uses the .form / .field styles) ---------- */
.modal .box:has(.call-form), .modal .box.narrow { width: min(640px, 100%); }
.call-form { padding: clamp(1.5rem, 4vw, 2.4rem); display: grid; gap: 1.1rem; align-content: start; }
.call-form .eyebrow { margin-bottom: 0; }
.call-form h2, .call-form h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); padding-right: 2.6rem; }
.call-form > p, .call-form .sub { color: var(--ink-2); font-size: .98rem; max-width: 52ch; }
.call-form .form { gap: .9rem; }
.call-form .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 560px) { .call-form .form-row.three { grid-template-columns: 1fr; } }
.call-form .field textarea { min-height: 88px; }
.call-form .btn-block { margin-top: .3rem; }
.call-form .fine { font-size: .8rem; color: var(--muted); text-align: center; }
.call-form .alt { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .3rem .6rem; font-size: .88rem; color: var(--muted); }
.call-form .alt a { color: var(--accent); font-weight: 600; }
[hidden] { display: none !important; }                                       /* hidden static Netlify forms must never render, even with .form */

/* ---------- light hero: the photo is an explicit tile, not a washed background ---------- */
.hero.hero-light .container { grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 4vw, 4rem); }
.hero-light .hero-visual { position: relative; display: grid; }
.hero-light .hero-photo-tile { display: block; width: 100%; aspect-ratio: 4 / 3.15; object-fit: cover; object-position: 60% 58%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-light .hero-card-wrap { position: relative; z-index: 3; width: 84%; margin: -6.5rem 0 0 -2.2rem; }
.hero-light .hero-card { padding: 1.2rem 1.3rem; }
.hero-light .hero-card .big { font-size: 2.3rem; }
.hero-light .hero-card .row { padding: .6rem 0; font-size: .9rem; }
.hero-light .hero-card .spark { height: 52px; margin: .8rem 0 .4rem; }
.hero-light .fc-1 { top: -26px; left: auto; right: -18px; }
.hero-light .fc-2 { bottom: -18px; right: auto; left: 8%; }
@media (max-width: 1000px) {
  .hero.hero-light .container { grid-template-columns: 1fr; }
  .hero-light .hero-card-wrap { width: 100%; margin: -3rem 0 0 0; }
  .hero-light .fc-1 { right: 8px; }
  .hero-light .fc-2 { left: 8px; }
}
@media (max-width: 520px) { .hero-light .hero-photo-tile { aspect-ratio: 4 / 3; } .hero-light .fc-1, .hero-light .fc-2 { display: none; } }

/* hero without a photo: the statement card stands alone, centered in its column */
.hero-light .hero-visual.no-photo .hero-card-wrap { width: min(100%, 520px); margin: 0 auto; }
@media (max-width: 1000px) { .hero-light .hero-visual.no-photo .hero-card-wrap { margin: 1.5rem auto 0; } }
.hero-light .hero-visual.no-photo .fc-1 { top: -22px; left: -24px; right: auto; }
.hero-light .hero-visual.no-photo .fc-2 { bottom: -18px; right: -20px; left: auto; }

/* official lockups (logo system v5): no-tagline horizontal in the nav and drawer, reversed in the footer */
.logo-lockup { display: block; height: 42px; width: auto; }
.drawer .logo-lockup { height: 36px; }
.footer .logo-lockup, footer .logo-lockup { height: 46px; }
.logo-lockup-dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo-lockup-light { display: none; }
  :root:not([data-theme="light"]) .logo-lockup-dark { display: block; }
}
:root[data-theme="dark"] .logo-lockup-light { display: none; }
:root[data-theme="dark"] .logo-lockup-dark { display: block; }
@media (max-width: 520px) { .logo-lockup { height: 36px; } }

/* HighLevel chat widget active (html.ghl-chat, set by app.js once its loader runs): the built-in Coco bubble steps aside */
.ghl-chat .chat-fab, .ghl-chat .chat-box { display: none !important; }

/* SMS consent block (A2P): plain checkboxes, never required, full disclosure text */
.sms-consent { border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1rem .6rem; margin: .2rem 0 1rem; display: grid; gap: .6rem; background: var(--surface-2, transparent); }
.sms-consent legend { padding: 0 .4rem; }
.sms-consent .check { display: flex; gap: .7rem; align-items: flex-start; font-size: .82rem; line-height: 1.45; color: var(--ink-2); cursor: pointer; }
.sms-consent .check input { flex: none; width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--accent); }
.sms-consent p { margin: 0; }
.sms-consent a { text-decoration: underline; }

/* cinematic video band under the hero */
.video-band { position: relative; isolation: isolate; min-height: clamp(340px, 52vw, 560px); display: grid; align-items: end; overflow: hidden; background: #2B2B2B; }
.video-band .vb-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; z-index: -2; }
.video-band .vb-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43,43,43,.05) 0%, rgba(43,43,43,.15) 45%, rgba(43,43,43,.78) 100%); }
.video-band .vb-copy { color: #F2EDE4; padding: clamp(2.5rem, 6vw, 5rem) var(--gutter, 1rem) clamp(2rem, 5vw, 4rem); }
.video-band .eyebrow { color: #D9A441; }
.video-band h2 { color: #F2EDE4; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.08; max-width: 14ch; margin: .4rem 0 1.2rem; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.video-band .vb-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.video-band .vb-ghost { color: #F2EDE4; border-color: rgba(242,237,228,.45); background: rgba(43,43,43,.25); backdrop-filter: blur(6px); }
.video-band .vb-ghost:hover { background: rgba(242,237,228,.14); }
@media (prefers-reduced-motion: reduce) { .video-band .vb-video { display: none; } }
@media (max-width: 699px) { .video-band { min-height: 78vw; } .video-band .vb-video { object-position: 50% 40%; } }
/* reduced motion: app.js copies the poster onto the band as a background so the still frame shows in place of the clip */
.video-band[style*="background-image"] { background-size: cover; background-position: center; }
