/* =============================================================
   LaCombe, CPA — Design System
   Aesthetic: Light, clean & approachable (warm white + navy ink + champagne gold)
   Type: Bricolage Grotesque (display) · Hanken Grotesk (body) ·
         IBM Plex Mono (figures/labels)
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Surfaces (light, warm) */
  --bg:            #F6F5F1;
  --bg-2:          #FFFFFF;
  --surface:       #FFFFFF;
  --surface-2:     #FBFAF6;
  --surface-3:     #F0EEE7;

  /* Lines */
  --border:        rgba(20, 30, 48, 0.10);
  --border-strong: rgba(20, 30, 48, 0.17);

  /* Text */
  --text:          #15202E;
  --text-muted:    #4C5A6E;
  --text-faint:    #63707F;

  /* Brand — champagne gold; --gold is contrast-safe on white for text/icons */
  --gold:          #97681A;
  --gold-bright:   #E8C988;
  --gold-deep:     rgba(151, 104, 26, 0.32);

  /* Growth — emerald (deepened for light backgrounds) */
  --mint:          #1F9E6B;
  --mint-soft:     rgba(31, 158, 107, 0.12);

  /* Glow tints (kept subtle on light) */
  --glow-gold:     rgba(216, 180, 115, 0.12);
  --glow-blue:     rgba(56, 102, 196, 0.07);
  --glow-mint:     rgba(31, 158, 107, 0.05);

  /* Type */
  --font-display:  'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body:     'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:     'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Spatial */
  --maxw:          1200px;
  --radius:        18px;
  --radius-sm:     12px;
  --radius-lg:     28px;

  /* Z-scale */
  --z-nav:         50;
  --z-overlay:     40;
  --z-raised:      10;

  /* Motion */
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #1A1408; }

/* ---------- Atmospheric background ---------- */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% -8%, var(--glow-gold), transparent 60%),
    radial-gradient(820px 620px at 12% 8%, var(--glow-blue), transparent 62%),
    radial-gradient(1000px 800px at 50% 108%, var(--glow-mint), transparent 60%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148,163,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.7rem, 6.4vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -0.01em; }
p  { color: var(--text-muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); max-width: 60ch; }
.measure { max-width: 64ch; }

.text-gold { color: var(--gold); }
.text-grad {
  background: linear-gradient(100deg, var(--gold-bright) 0%, var(--gold) 45%, #C9A05F 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1C1505;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -12px var(--gold);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 16px 40px -12px var(--gold); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); color: var(--text); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { --pad-y: 17px; --pad-x: 32px; font-size: 1.02rem; }

/* ---------- Navbar (floating) ---------- */
.nav-wrap {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: var(--z-nav);
  display: flex; justify-content: center;
}
.nav {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 16, 32, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: rgba(8, 13, 26, 0.82);
  border-color: var(--border-strong);
  box-shadow: 0 18px 50px -24px rgba(0,0,0,0.8);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold));
  color: #1C1505; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 18px -8px var(--gold);
}
.brand small { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--text-faint); font-weight: 500; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 14px; border-radius: 999px;
  font-size: 0.92rem; color: var(--text-muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(6, 10, 20, 0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 32px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); transition: color .2s, padding-left .25s var(--ease); }
.mobile-menu a:hover { color: var(--gold); padding-left: 10px; }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Client portal links ---------- */
.nav-portal {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.nav-portal svg { width: 15px; height: 15px; flex: none; }
.nav-portal:hover { color: var(--gold); border-color: var(--gold); background: rgba(216,180,115,0.07); }
@media (max-width: 720px) { .nav-portal { display: none; } } /* shown in the mobile menu instead */
.mobile-menu .mm-portal { color: var(--gold); }
.mobile-menu .mm-portal:hover { color: var(--gold-bright); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(150px, 20vw, 220px); padding-bottom: clamp(70px, 10vw, 120px); }
.hero-inner { max-width: 960px; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 26px; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 22px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.04em; display: flex; align-items: center; gap: 9px; }
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-soft); }

/* Pill badge */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.025);
  font-size: 0.82rem; color: var(--text-muted);
}
.pill .star { color: var(--gold); display: inline-flex; }
.pill .star svg { width: 15px; height: 15px; }

/* ---------- Stat band ---------- */
.stat-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.stat {
  background: var(--bg);
  padding: 34px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat .num { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.stat .num .unit { color: var(--gold); }
.stat .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }

/* ---------- Section heading block ---------- */
.head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.head h2 { margin-top: 18px; }
.head p { margin-top: 18px; font-size: 1.08rem; }
.head.center { margin-inline: auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head.center .eyebrow::before { display: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 220px at var(--mx, 80%) -10%, var(--glow-gold), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 26px 60px -34px rgba(0,0,0,0.85); }
.card:hover::after { opacity: 1; }
.card .ico, .feature .ico {
  width: 50px; height: 50px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(216,180,115,0.16), rgba(216,180,115,0.04));
  border: 1px solid var(--gold-deep);
  color: var(--gold);
}
.card .ico { margin-bottom: 22px; }
.card .ico svg, .feature .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; }
.list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-muted); }
.list svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }

.card-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--gold); }
.card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Feature row (icon + text, flat) */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .ico { flex: none; }

/* ---------- Reviews ---------- */
.head.center .g-badge { margin: 26px auto 0; }
.g-badge {
  display: inline-flex; align-items: center; gap: 9px;
  width: fit-content; padding: 8px 16px 8px 11px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--surface);
  box-shadow: 0 14px 34px -26px rgba(0,0,0,0.7);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.g-badge:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 18px 40px -24px rgba(0,0,0,0.75); }
.g-glyph { display: grid; place-items: center; }
.g-glyph svg { width: 19px; height: 19px; }
.g-rating { font-family: var(--font-mono); font-weight: 600; font-size: 1rem; color: var(--text); }
.g-stars { display: inline-flex; gap: 1px; color: var(--gold); }
.g-stars svg { width: 16px; height: 16px; }
.g-count { font-size: 0.85rem; color: var(--text-muted); display: inline-flex; align-items: center; }
.g-count::before { content: ""; width: 1px; height: 14px; margin: 0 4px 0 3px; background: var(--border-strong); }

.reviews-grid { align-items: stretch; }
.review-card { display: flex; flex-direction: column; gap: 18px; }
.rev-stars { display: inline-flex; gap: 3px; color: var(--gold); }
.rev-stars svg { width: 17px; height: 17px; }
.review-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.58; color: var(--text); }
.rev-author { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 4px; }
.rev-avatar {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--gold);
  background: linear-gradient(160deg, rgba(216,180,115,0.20), rgba(216,180,115,0.05));
  border: 1px solid var(--gold-deep);
}
.rev-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; min-width: 0; }
.rev-name { font-weight: 600; color: var(--text); font-size: 0.96rem; }
.rev-src { font-size: 0.79rem; color: var(--text-faint); display: inline-flex; align-items: center; gap: 6px; }
.rev-src svg { width: 13px; height: 13px; flex: none; }

.reviews-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 30px; margin-top: clamp(36px, 5vw, 52px); }
.reviews-cta .btn-ghost svg { width: 17px; height: 17px; }

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--bg-2); padding: 32px clamp(24px, 4vw, 44px); display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; transition: background .3s var(--ease); }
.step:hover { background: var(--surface); }
.step .idx { font-family: var(--font-mono); font-size: 0.95rem; color: var(--gold); border: 1px solid var(--gold-deep); border-radius: 10px; width: 46px; height: 46px; display: grid; place-items: center; background: rgba(216,180,115,0.06); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.98rem; max-width: 62ch; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.rev .split-media { order: -1; }
.panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--surface-2), var(--bg-2));
  padding: 30px;
  overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, var(--glow-gold), transparent 55%);
  pointer-events: none;
}

/* Mini dashboard mock */
.mock { position: relative; display: grid; gap: 14px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,0.015); }
.mock-row .k { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.mock-row .k .dot { width: 9px; height: 9px; border-radius: 50%; }
.mock-row .v { font-family: var(--font-mono); font-size: 0.92rem; color: var(--text); }
.mock-row .v.up { color: var(--mint); }
.bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); width: 0; transition: width 1.1s var(--ease-out); }

/* ---------- Photo frame / imagery ---------- */
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-2);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.85);
}
.photo-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.photo-frame:hover img { transform: scale(1.07); }

/* Aspect helpers */
.ratio-cinema { aspect-ratio: 21 / 9; }
.ratio-wide   { aspect-ratio: 16 / 10; }
.ratio-port   { aspect-ratio: 4 / 5; }
@media (max-width: 720px) { .ratio-cinema { aspect-ratio: 4 / 3; } }

/* Placeholder that already looks designed (evokes a regional map/contour) */
.photo-ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(216,180,115,0.10), transparent 55%),
    linear-gradient(160deg, var(--surface-2), var(--bg-2));
}
.photo-ph::before {
  content: ""; position: absolute; inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' fill='none' stroke='%23D8B473' stroke-opacity='0.16' stroke-width='1.2'%3E%3Cpath d='M-20 120 C120 60 260 180 420 120 S700 60 820 140'/%3E%3Cpath d='M-20 170 C120 110 260 230 420 170 S700 110 820 190'/%3E%3Cpath d='M-20 220 C120 160 260 280 420 220 S700 160 820 240'/%3E%3Cpath d='M-20 270 C120 210 260 330 420 270 S700 210 820 290'/%3E%3Cpath d='M-20 320 C120 260 260 380 420 320 S700 260 820 340'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
}
.photo-ph .ph-note {
  position: relative; text-align: center; padding: 24px;
}
.photo-ph .ph-pin {
  width: 54px; height: 54px; margin: 0 auto 14px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(216,180,115,0.12);
  border: 1px solid var(--gold-deep);
  color: var(--gold);
}
.photo-ph .ph-pin svg { width: 26px; height: 26px; }
.photo-ph .ph-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.photo-ph .ph-sub { font-size: 0.82rem; color: var(--text-faint); margin-top: 6px; opacity: 0.7; }

/* Overlay caption on imagery */
.photo-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(to top, rgba(5,8,16,0.92) 0%, rgba(5,8,16,0.62) 38%, rgba(5,8,16,0.18) 68%, transparent 88%);
}
.photo-overlay .eyebrow { color: var(--gold-bright); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.photo-overlay h2, .photo-overlay h3 {
  margin-top: 12px; max-width: 22ch;
  color: #FFFFFF; text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.photo-overlay p { margin-top: 10px; max-width: 46ch; color: #E7EDF5; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.photo-overlay .chips { margin-top: 18px; }
/* Chips over imagery read as translucent glass, not solid pills */
.photo-overlay .chip {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.34);
  color: #FFFFFF; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.photo-overlay .chip:hover { background: rgba(255,255,255,0.20); border-color: var(--gold-bright); color: #FFFFFF; }

/* ---------- Service area / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.05em; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border-strong); background: rgba(255,255,255,0.02); color: var(--text-muted); transition: color .2s, border-color .2s, background .2s; }
.chip:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Team grid ---------- */
.team-card { text-align: center; padding: 30px 26px; }
.team-avatar {
  width: 104px; height: 104px; margin: 0 auto 20px;
  border-radius: 50%; overflow: hidden; position: relative;
  border: 1px solid var(--gold-deep);
  background: linear-gradient(155deg, var(--surface-3), var(--bg-2));
  display: grid; place-items: center;
}
.team-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-avatar .initials { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--gold); }
.team-card .role { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.team-card .bio { font-size: 0.94rem; margin-top: 14px; }
.team-socials { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.team-socials a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--border); color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease);
}
.team-socials a:hover { color: var(--gold); border-color: var(--gold); background: rgba(216,180,115,0.08); transform: translateY(-2px); }
.team-socials a svg { width: 18px; height: 18px; }

/* ---------- Pricing tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; height: 100%; }
.tier.popular { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-deep), 0 34px 90px -46px rgba(216,180,115,0.45); }
.tier.popular::after { opacity: 0.5; }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #1C1505; background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  padding: 6px 14px; border-radius: 999px; white-space: nowrap; z-index: 2;
  box-shadow: 0 8px 22px -8px var(--gold);
}
.tier-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
.tier-tag { color: var(--text-muted); font-size: 0.95rem; margin-top: 8px; min-height: 2.7em; }
.price { display: flex; align-items: baseline; gap: 7px; margin: 22px 0 4px; }
.price .amt { font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.price .per { color: var(--text-muted); font-size: 0.95rem; }
.price-note { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.tier .btn { margin: 24px 0 4px; }
.tier .incl-head { font-size: 0.92rem; font-weight: 600; color: var(--text); margin: 22px 0 2px; padding-top: 22px; border-top: 1px solid var(--border); }
.tier .list { margin-top: 12px; flex: 1; }

/* Add-ons */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.addon { display: flex; align-items: center; gap: 11px; padding: 15px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-size: 0.93rem; color: var(--text-muted); transition: border-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease); }
.addon:hover { border-color: var(--border-strong); transform: translateY(-2px); color: var(--text); }
.addon svg { width: 17px; height: 17px; flex: none; color: var(--gold); }

/* "Included with every plan" strip */
.included { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.included .item { display: flex; gap: 12px; align-items: flex-start; }
.included .item svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 2px; }
.included .item .t { font-weight: 600; font-size: 0.97rem; color: var(--text); }
.included .item .d { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 920px) {
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier-tag { min-height: 0; }
  .addons { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .addons { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); padding: clamp(44px, 7vw, 80px); background: linear-gradient(150deg, var(--surface-2), var(--bg-2)); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 50% -30%, var(--glow-gold), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { margin: 18px auto 0; max-width: 52ch; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text); font: inherit; font-size: 0.97rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216,180,115,0.14);
  background: var(--surface);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23A7B6CE' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--text-faint); }
.form-status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; }
.form-status.show { display: block; }
.form-status.ok { background: var(--mint-soft); border: 1px solid rgba(79,214,160,0.35); color: #B7F0D7; }
.form-status.err { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.35); color: #FCA5A5; }

/* ---------- Contact info cards ---------- */
.info-list { display: grid; gap: 14px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color .25s var(--ease), transform .25s var(--ease); }
.info-item:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.info-item .ico { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(216,180,115,0.10); border: 1px solid var(--gold-deep); color: var(--gold); }
.info-item .ico svg { width: 21px; height: 21px; }
.info-item .k { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.info-item .v { color: var(--text); font-weight: 500; font-size: 1.02rem; }
.info-item a.v:hover { color: var(--gold); }

/* ---------- FAQ / accordion ---------- */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--text); transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary .plus { flex: none; width: 30px; height: 30px; border: 1px solid var(--border-strong); border-radius: 50%; display: grid; place-items: center; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.faq summary .plus svg { width: 16px; height: 16px; color: var(--gold); }
.faq details[open] summary .plus { transform: rotate(45deg); background: rgba(216,180,115,0.10); border-color: var(--gold); }
.faq .answer { padding: 0 50px 26px 0; color: var(--text-muted); font-size: 0.99rem; max-width: 70ch; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-top: clamp(140px, 18vw, 190px); padding-bottom: clamp(40px, 6vw, 70px); }
.page-hero h1 { margin-top: 20px; font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
.page-hero .lead { margin-top: 22px; }
.crumbs { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; display: flex; gap: 10px; align-items: center; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--border-strong); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 760px; }
.prose > p:first-of-type { font-size: 1.1rem; color: var(--text-muted); }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-top: 52px; margin-bottom: 14px; }
.prose h2:first-of-type { margin-top: 8px; }
.prose h3 { font-size: 1.18rem; margin-top: 30px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; line-height: 1.75; }
.prose ul { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 22px; color: var(--text-muted); line-height: 1.7; }
.prose ul li::before { content: ""; position: absolute; left: 3px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--gold-bright); }
.prose strong { color: var(--text); font-weight: 600; }
.legal-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--text-faint); margin-top: 22px;
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px;
}
.callout {
  margin: 28px 0; padding: 20px 22px;
  border: 1px solid var(--gold-deep); border-radius: var(--radius-sm);
  background: rgba(216,180,115,0.06);
}
.callout p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.callout strong { color: var(--gold); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-block: 64px 32px; margin-top: clamp(40px, 6vw, 80px); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer-about { color: var(--text-muted); font-size: 0.95rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); font-weight: 500; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--text-muted); font-size: 0.95rem; transition: color .2s, padding-left .2s var(--ease); }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-faint); }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { font-size: 0.85rem; color: var(--text-faint); }
.footer-bottom .legal a:hover { color: var(--gold); }
.disclaimer { font-size: 0.78rem; color: var(--text-faint); max-width: 70ch; margin-top: 8px; line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* Hero load stagger */
.hero [data-anim] { opacity: 0; transform: translateY(22px); animation: rise .85s var(--ease-out) forwards; animation-delay: var(--d, 0ms); }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero [data-anim] { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .bar > span { transition: none !important; }
  .card:hover, .info-item:hover, .btn:hover { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { max-width: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav .nav-cta .btn span.full { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1 1 auto; }
}
@media (max-width: 460px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}

/* =============================================================
   LIGHT THEME OVERRIDES
   Re-declares the rules that had hard-coded dark values so the
   light tokens above read correctly. (Later source order wins.)
   ============================================================= */

/* Atmosphere */
.bg-grid {
  background-image:
    linear-gradient(rgba(20,30,48,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,30,48,0.05) 1px, transparent 1px);
}
.bg-noise { opacity: 0.02; mix-blend-mode: multiply; }

/* Selection & focus */
::selection { background: var(--gold); color: #FFF7E6; }

/* Floating nav — light glass */
.nav { background: rgba(255, 255, 255, 0.72); border-color: var(--border); }
.nav.scrolled { background: rgba(255, 255, 255, 0.92); border-color: var(--border-strong); box-shadow: 0 14px 40px -24px rgba(20,30,48,0.28); }
.nav-links a:hover { background: rgba(20,30,48,0.05); color: var(--text); }
.nav-toggle { background: rgba(20,30,48,0.04); border-color: var(--border); color: var(--text); }
.nav-portal { background: rgba(20,30,48,0.025); }
.nav-portal:hover { background: rgba(151,104,26,0.09); }
.pill { background: rgba(20,30,48,0.03); }

/* Mobile menu — light */
.mobile-menu { background: rgba(255, 255, 255, 0.97); }
.mobile-menu a { color: var(--text); }
.mobile-menu a:hover { color: var(--gold); }

/* Buttons — keep a rich gold primary; clean outline ghost */
.btn-primary {
  background: linear-gradient(180deg, #EAC579, #D6A645);
  color: #2A1E06;
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 12px 28px -14px rgba(151,104,26,0.55);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.65) inset, 0 18px 38px -14px rgba(151,104,26,0.6); }
.btn-ghost { background: #FFFFFF; border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--gold); color: var(--text); }

/* Brand mark — rich gold */
.brand .mark { background: linear-gradient(150deg, #EAC579, #D6A645); color: #2A1E06; box-shadow: 0 6px 16px -8px rgba(151,104,26,0.5); }

/* Gradient text — deep gold for contrast on white */
.text-grad { background: linear-gradient(100deg, #B5852A 0%, #8A5E14 55%, #6F4D12 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Cards & surfaces — clean white with soft shadow */
.card { background: #FFFFFF; box-shadow: 0 1px 2px rgba(20,30,48,0.04), 0 16px 36px -24px rgba(20,30,48,0.14); }
.card:hover { box-shadow: 0 2px 4px rgba(20,30,48,0.05), 0 28px 56px -30px rgba(20,30,48,0.20); border-color: var(--border-strong); }
.panel { background: linear-gradient(165deg, var(--surface-2), #FFFFFF); border-color: var(--border); box-shadow: 0 1px 2px rgba(20,30,48,0.04), 0 18px 42px -28px rgba(20,30,48,0.14); }
.cta-band { background: linear-gradient(150deg, var(--surface-2), #FFFFFF); border-color: var(--border-strong); }
.info-item { box-shadow: 0 1px 2px rgba(20,30,48,0.04); }
.step:hover { background: var(--surface-2); }

/* Dashboard mock + bars */
.mock-row { background: var(--surface-2); border-color: var(--border); }
.bar { background: rgba(20,30,48,0.08); }
.chip { background: #FFFFFF; }
.chip:hover { background: var(--surface-2); }

/* Form fields — white inputs, darker dropdown arrow */
.field input, .field select, .field textarea { background: #FFFFFF; border-color: var(--border-strong); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(151,104,26,0.15); background: #FFFFFF; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234C5A6E' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); }
.form-status.ok { background: rgba(31,158,107,0.10); border: 1px solid rgba(31,158,107,0.35); color: #0F6E49; }
.form-status.err { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.30); color: #B42318; }

/* Collapse the (now denser) nav to the mobile menu earlier so it never crowds */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-portal { display: none; }
}
