/* ==========================================================================
   Solar Exit Group — design system
   Navy #101B36 · Gold #C9A24A · Fraunces (display) + Satoshi (UI/body)
   ========================================================================== */

:root {
  --navy: #101B36;
  --navy-2: #1B2A4E;
  --navy-3: #263757;
  --gold: #C9A24A;
  --gold-hi: #E0B85C;
  --gold-text: #D8B463;         /* AA-safe gold for text on navy */
  --cream: #F7F5F0;
  --cream-2: #EFEBE2;
  --white: #FFFFFF;
  --ink: #131A2C;
  --body: #3A4256;
  --body-dim: #5A6376;
  --line: #DDD7CB;
  --line-dark: rgba(201, 162, 74, 0.28);
  --ok: #1F7A4D;
  --err: #B3261E;

  --font-display: "Fraunces", "Instrument Serif", Georgia, serif;
  --font-body: "Satoshi", "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --gut: clamp(1.25rem, 4vw, 3rem);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --sh-1: 0 1px 2px rgba(16, 27, 54, 0.06), 0 8px 24px rgba(16, 27, 54, 0.06);
  --sh-2: 0 2px 6px rgba(16, 27, 54, 0.08), 0 18px 48px rgba(16, 27, 54, 0.12);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; font-variation-settings: "SOFT" 0, "WONK" 0; }
p { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: var(--r-md);
  font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- type scale ---------- */
.h-hero { font-size: clamp(2.5rem, 6.4vw, 5rem); }
.h-1 { font-size: clamp(2.1rem, 4.8vw, 3.5rem); }
.h-2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
.h-3 { font-size: clamp(1.2rem, 1.7vw, 1.4rem); line-height: 1.2; }
.lede { font-size: clamp(1.075rem, 1.5vw, 1.3rem); line-height: 1.6; color: var(--body); }
.small { font-size: .875rem; line-height: 1.55; }
.fine { font-size: .8125rem; line-height: 1.6; color: var(--body-dim); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .625rem;
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #7A5F1E;
  margin: 0 0 1.25rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); display: block; }
.on-dark .eyebrow, .dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow { color: var(--gold-text); }

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

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.75rem, 5vw, 4.5rem); }
.dark { background: var(--navy); color: #C9D1E4; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lede { color: #B9C3DA; }
.navy-2 { background: var(--navy-2); }
.cream-2 { background: var(--cream-2); }
.white { background: var(--white); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.section-head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.wide { max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  padding: 1rem 1.6rem; border: 1.5px solid transparent; border-radius: var(--r-md);
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: #16203A; }
.btn-gold:hover { background: var(--gold-hi); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-ghost { border-color: rgba(16, 27, 54, .28); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--navy); background: rgba(16, 27, 54, .04); }
.dark .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost, .cta-band .btn-ghost, .nav-wrap .btn-ghost { border-color: rgba(216, 180, 99, .55); color: #fff; }
.dark .btn-ghost:hover, .hero .btn-ghost:hover, .page-hero .btn-ghost:hover, .cta-band .btn-ghost:hover, .nav-wrap .btn-ghost:hover { background: rgba(216, 180, 99, .14); border-color: var(--gold); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }

.link-gold {
  color: #75591C; font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 1px;
}
.link-gold:hover { color: var(--ink); border-color: var(--ink); }
.dark .fine a, .dark p a:not(.btn):not(.link-gold) { color: var(--gold-text); }
.dark .link-gold { color: var(--gold-text); border-color: var(--line-dark); }
.dark .link-gold:hover { color: #fff; border-color: var(--gold); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 74px; padding-block: .75rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; }
.brand svg { width: 40px; height: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.brand-tag { font-size: .5625rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); margin-top: .3rem; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav a {
  color: #D4DAEA; text-decoration: none; font-size: .9375rem; font-weight: 500;
  padding: .35rem 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav a:hover { color: #fff; border-color: var(--gold); }
.nav a[aria-current="page"] { color: #fff; border-color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { color: #fff; text-decoration: none; font-weight: 700; font-size: .9375rem; white-space: nowrap; }
.header-phone:hover { color: var(--gold-text); }
.nav-wrap .mobile-actions { display: none; }

.burger {
  display: none; background: transparent; border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-sm); padding: .55rem .7rem; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: #fff; margin: 3.5px 0; transition: transform .2s var(--ease); }

@media (max-width: 980px) {
  .nav-wrap {
    position: fixed; inset: 74px 0 auto 0; background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem var(--gut) 1.75rem; display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  }
  .nav-wrap.open { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: .95rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav a:hover, .nav a[aria-current="page"] { border-color: rgba(255, 255, 255, .08); }
  .header-cta { display: none; }
  .burger { display: block; }
  .nav-wrap .mobile-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; opacity: .85; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 27, 54, .96) 0%, rgba(16, 27, 54, .9) 38%, rgba(16, 27, 54, .5) 68%, rgba(16, 27, 54, .35) 100%),
    linear-gradient(to top, rgba(16, 27, 54, .85), transparent 45%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 8rem); max-width: 46rem; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-text); }
.hero p.lede { color: #C6CEE2; margin-top: 1.5rem; max-width: 40rem; }
.hero .btn-row { margin-top: 2.25rem; }

.trust-strip { border-top: 1px solid rgba(255, 255, 255, .12); background: rgba(11, 18, 36, .55); position: relative; z-index: 2; }
.trust-strip ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem clamp(1.25rem, 3vw, 2.5rem);
  padding-block: 1.1rem; margin: 0;
}
.trust-strip li {
  display: flex; align-items: center; gap: .55rem;
  color: #DCE2F0; font-size: .875rem; font-weight: 600; letter-spacing: .01em;
}
.trust-strip svg { width: 16px; height: 16px; flex: none; color: var(--gold); }

/* page hero (interior pages) */
.page-hero { background: var(--navy); position: relative; padding-block: clamp(3rem, 7vw, 5.5rem); }
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 74, 0));
}
.page-hero h1 { color: #fff; max-width: 24ch; }
.page-hero .lede { margin-top: 1.25rem; max-width: 60ch; }
.breadcrumb { font-size: .8125rem; color: #9AA6C2; margin-bottom: 1.25rem; letter-spacing: .04em; }
.breadcrumb a { color: #9AA6C2; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-text); }

/* ---------- cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.2vw, 2rem); position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-1); border-color: #CFC6B3; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--body); font-size: .9688rem; }
.card-icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1.1rem; }
.dark .card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.dark .card p { color: #B4BFD8; }
.dark .card:hover { border-color: var(--line-dark); background: rgba(255, 255, 255, .06); }

.dark .card-num { color: var(--gold-text); }
.card-num {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: #A67C2B;
  display: block; margin-bottom: .9rem; font-weight: 600;
}

/* numbered step list */
.steps { list-style: none; display: grid; gap: 1.25rem; counter-reset: s; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.25rem; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.35rem, 2vw, 1.9rem);
}
.step-badge {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
}
.step h3 { margin-bottom: .45rem; }
.step .meta { font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #7A5F1E; margin-bottom: .5rem; }
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: .9rem; }
  .step-badge { width: 44px; height: 44px; font-size: 1.15rem; }
}

/* checklist */
.checks { list-style: none; display: grid; gap: .9rem; }
.checks li { display: grid; grid-template-columns: 24px 1fr; gap: .85rem; align-items: start; font-size: 1rem; }
.checks svg { width: 22px; height: 22px; color: var(--gold); margin-top: .18rem; flex: none; }
.dark .checks li { color: #C4CDE2; }

/* tag pills */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; }
.tags li {
  border: 1px solid var(--line); background: var(--white); border-radius: 100px;
  padding: .45rem 1rem; font-size: .875rem; font-weight: 600; color: var(--ink);
}
.dark .tags li { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .14); color: #E4E9F5; }

/* split media block */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.75rem, 4vw, 4rem); align-items: center; }
.split.rev > *:first-child { order: 2; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(16, 27, 54, .12);
  background: linear-gradient(200deg, rgba(201, 162, 74, .10), rgba(16, 27, 54, .18));
  border-radius: var(--r-lg);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.rev > *:first-child { order: 0; }
}

/* pull quote / result callout */
.callout {
  border-left: 3px solid var(--gold); padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, .05); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.callout.light { background: var(--white); border-color: var(--gold); box-shadow: var(--sh-1); }
.callout .label {
  font-size: .6875rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: .8rem; display: block;
}
.callout.light .label { color: #7A5F1E; }

/* stats */
.stats { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 1.5rem; }
.stat { border-top: 2px solid var(--line-dark); padding-top: 1.1rem; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--gold-text); line-height: 1; font-weight: 600; }
.stat .lbl { font-size: .9375rem; margin-top: .6rem; color: #B4BFD8; }

/* partner firm cards */
.firm { display: flex; flex-direction: column; gap: .35rem; }
.firm .loc { font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #7A5F1E; }
.dark .firm .loc { color: var(--gold-text); }
.dark .firm .contact-line, .dark .firm .contact-line a { color: #EAEFFA; }
.dark .firm a:hover { color: var(--gold-text); }
.firm .focus { margin-block: .55rem .9rem; }
.firm .contact-line { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.firm a { text-decoration: none; border-bottom: 1px solid var(--gold); }
.firm a:hover { color: #7E6220; }

/* FAQ accordion */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.35rem 0; font-family: var(--font-display); font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600; color: var(--ink); line-height: 1.25;
}
.faq-q:hover { color: #7E6220; }
.faq-icon { flex: none; width: 22px; height: 22px; position: relative; margin-top: .25rem; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 2.5px; }
.faq-icon::after { left: 10px; top: 0; width: 2.5px; height: 22px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; height: 0; transition: height .3s var(--ease); }
.faq-a > div { padding: 0 clamp(0rem, 3vw, 3rem) 1.5rem 0; max-width: 68ch; }
.faq-a p + p { margin-top: .85rem; }

/* ---------- form ---------- */
.form-shell {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); padding: clamp(1.35rem, 3vw, 2.5rem); position: relative;
}
.form-head { border-bottom: 1px solid var(--line); padding-bottom: 1.35rem; margin-bottom: 1.75rem; }
.form-head h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.form-head p { margin-top: .5rem; }

.progress { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.75rem; }
.progress-step { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.progress-bar { height: 4px; border-radius: 4px; background: var(--cream-2); overflow: hidden; }
.progress-bar i { display: block; height: 100%; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.progress-step.done .progress-bar i, .progress-step.active .progress-bar i { width: 100%; }
.progress-step.active .progress-bar i { width: 100%; background: var(--gold); }
.progress-label { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--body-dim); }
.progress-step.active .progress-label, .progress-step.done .progress-label { color: #7A5F1E; }
@media (max-width: 520px) { .progress-label { font-size: .625rem; letter-spacing: .06em; } }

.fs { display: none; border: 0; padding: 0; margin: 0; }
.fs.active { display: block; }
.fs legend:focus { outline: none; }
.success:focus { outline: none; }
.fs legend { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; padding: 0; }
.fs .hint { font-size: .9375rem; color: var(--body-dim); margin-bottom: 1.4rem; }

.field { margin-bottom: 1.15rem; }
.field label, .field .lbl { display: block; font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.field .opt { font-weight: 500; color: var(--body-dim); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; background: #FCFBF8;
  border: 1.5px solid var(--line); border-radius: var(--r-md); font-size: 1rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C6BCA6; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; border-color: var(--navy); outline: 2px solid rgba(201, 162, 74, .35); outline-offset: 0; }
.field textarea { min-height: 116px; resize: vertical; }
.field.err input, .field.err select, .field.err textarea { border-color: var(--err); background: #FDF6F5; }
.err-msg { display: none; color: var(--err); font-size: .8125rem; font-weight: 600; margin-top: .4rem; }
.field.err .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: .75rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: flex; align-items: center; gap: .7rem; height: 100%;
  border: 1.5px solid var(--line); background: #FCFBF8; border-radius: var(--r-md);
  padding: .9rem 1rem; font-size: .9375rem; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.chip span::before {
  content: ""; width: 20px; height: 20px; flex: none; border: 1.5px solid #B9AF98;
  border-radius: var(--r-sm); background: #fff; transition: all .18s var(--ease);
}
.chip span:hover { border-color: #C0B49A; background: #fff; }
.chip input:checked + span { border-color: var(--navy); background: #fff; box-shadow: inset 0 0 0 1px var(--navy); }
.chip input:checked + span::before {
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23101B36' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
  border-color: var(--gold);
}
.chip input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.form-nav { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-nav .spacer { flex: 1; }
.form-note { font-size: .8125rem; color: var(--body-dim); margin-top: 1.1rem; }
.form-note a { color: #7E6220; }

.success { display: none; text-align: left; }
.success.active { display: block; }
.success-icon { width: 62px; height: 62px; border-radius: 50%; background: rgba(31, 122, 77, .1); color: var(--ok); display: grid; place-items: center; margin-bottom: 1.35rem; }
.success-icon svg { width: 32px; height: 32px; }
.next-steps { list-style: none; display: grid; gap: 1rem; margin: 1.75rem 0; counter-reset: n; }
.next-steps li { display: grid; grid-template-columns: 34px 1fr; gap: .9rem; align-items: start; }
.next-steps li::before {
  counter-increment: n; content: counter(n);
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: .875rem;
}
.next-steps strong { color: var(--ink); display: block; }
.demo-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #6E551A;
  background: rgba(201, 162, 74, .13); border: 1px solid rgba(201, 162, 74, .4);
  padding: .3rem .7rem; border-radius: 100px; margin-bottom: 1rem;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 88% 8%, rgba(201, 162, 74, .16), transparent 70%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { max-width: 30ch; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-phone { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2rem); color: #fff; text-decoration: none; font-weight: 600; }
.cta-phone:hover { color: var(--gold-text); }

/* ---------- footer ---------- */
.site-footer { background: #0B1224; color: #99A4BE; padding-block: clamp(2.75rem, 5vw, 4rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: clamp(1.75rem, 3.5vw, 3rem); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 1.1rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { color: #A7B1CA; text-decoration: none; font-size: .9375rem; }
.footer-col a:hover { color: var(--gold-text); }
.footer-contact { font-size: .9375rem; line-height: 1.75; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--gold-text); }
.disclaimer {
  margin-top: clamp(2.25rem, 4vw, 3rem); padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .1); font-size: .8125rem; line-height: 1.7; color: #8892AC;
  max-width: 92ch;
}
.footer-bottom { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; font-size: .8125rem; }
.footer-bottom a { color: #8892AC; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-text); }

/* ---------- sticky mobile bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: .6rem; padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(11, 18, 36, .97); border-top: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
}
.mobile-bar .btn { flex: 1; padding: .95rem 1rem; font-size: .9375rem; }
.mobile-bar .btn-ghost { color: #fff; border-color: rgba(216, 180, 99, .6); }
.mobile-bar .btn-ghost:hover { background: rgba(216, 180, 99, .14); border-color: var(--gold); }
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover { transform: none; }
}

/* utilities */
.mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.25rem; }
.mb-2 { margin-bottom: 1.5rem; }
.center { text-align: center; }
.rule-gold { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------- quotes -- */
.link-navy {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color .2s ease, border-color .2s ease;
}
.link-navy:hover { color: var(--navy-2); border-color: var(--ink); }

.card.quote { display: flex; flex-direction: column; }
.card.quote p {
  font-size: 1.0313rem;
  line-height: 1.72;
  color: var(--body);
  flex: 1 1 auto;
}
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); display: block; }
.card.quote footer {
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.q-name {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--ink);
  letter-spacing: -.005em;
}


/* ---------------------------------------------------------------- legal --- */
.legal { max-width: 74ch; }
.legal h2 { font-family: var(--font-display); font-size: clamp(1.2rem, 1.7vw, 1.4rem); line-height: 1.25;
  color: var(--navy); margin: 3rem 0 .85rem; letter-spacing: -0.01em; scroll-margin-top: 6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-family: var(--font-body); font-size: .84rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy); margin: 2rem 0 .7rem; }
.legal p { margin: 0 0 1.05rem; color: var(--body); line-height: 1.75; }
.legal ul { margin: 0 0 1.15rem; padding-left: 1.15rem; }
.legal li { margin: 0 0 .55rem; color: var(--body); line-height: 1.7; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(201,162,74,.6); }
.legal a:hover { text-decoration-color: var(--gold); }
.legal strong { color: var(--navy); font-weight: 700; }
.legal-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; padding: 0 0 1.5rem;
  margin: 0 0 2.5rem; border-bottom: 1px solid rgba(16,27,54,.12); }
.legal-meta span { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--body-dim); font-weight: 600; }
.legal-toc { background: var(--cream-2); border-radius: var(--r-md); padding: 1.5rem 1.75rem; margin: 0 0 3rem; }
.legal-toc h2 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--body-dim); margin: 0 0 .85rem; }
.legal-toc ol { margin: 0; padding-left: 1.15rem; columns: 2; column-gap: 2rem; }
.legal-toc li { margin: 0 0 .45rem; font-size: .93rem; break-inside: avoid; }
@media (max-width: 640px) { .legal-toc ol { columns: 1; } }

/* ------------------------------------------- hours / business profile --- */
.gbp { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gut); align-items: start; }
.gbp-card { background: var(--white); border: 1px solid rgba(16,27,54,.10);
  border-radius: var(--r-md); padding: 1.9rem 1.9rem 2rem; box-shadow: var(--sh-1); }
.gbp-head { display: flex; align-items: flex-start; gap: .9rem; margin: 0 0 1.35rem; }
.gbp-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream-2); color: var(--navy); }
.gbp-ico svg { width: 21px; height: 21px; }
.gbp-head .h-3 { margin: 0; }

.gbp-status { display: inline-flex; align-items: center; gap: .45rem; margin: .3rem 0 0;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap; }
.gbp-status-note { margin: .18rem 0 0; }
.gbp-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--body-dim); }
.gbp-status.is-open { color: #16794A; }
.gbp-status.is-open .dot { background: #16794A; box-shadow: 0 0 0 3px rgba(22,121,74,.16); }
.gbp-status.is-shut { color: #8A6516; }
.gbp-status.is-shut .dot { background: #C9A24A; box-shadow: 0 0 0 3px rgba(201,162,74,.2); }

.hrs { width: 100%; border-collapse: collapse; }
.hrs th, .hrs td { padding: .62rem 0; font-size: .95rem; text-align: left;
  border-bottom: 1px solid rgba(16,27,54,.07); }
.hrs tr:last-child th, .hrs tr:last-child td { border-bottom: 0; }
.hrs th { font-weight: 500; color: var(--body); }
.hrs td { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.hrs .is-closed { color: var(--body-dim); }
.hrs tr.is-today th, .hrs tr.is-today td { font-weight: 700; color: var(--navy); }
.hrs tr.is-today th::after { content: "Today"; display: inline-block; margin-left: .55rem;
  padding: .1rem .45rem; border-radius: 999px; background: var(--cream-2);
  font-size: .66rem; letter-spacing: .07em; text-transform: uppercase;
  font-weight: 700; color: var(--navy); vertical-align: middle; }

.gbp-addr { font-size: 1.05rem; line-height: 1.55; color: var(--ink); margin: 0; }
.gbp-review { margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid rgba(16,27,54,.10); }
.gbp-stars { display: flex; gap: .22rem; color: var(--gold); margin: 0 0 .55rem; }
.gbp-stars svg { width: 17px; height: 17px; }
.gbp-review .h-3 { margin: 0; }

@media (max-width: 860px) { .gbp { grid-template-columns: 1fr; } }
