/* =================================================================
   CLERMONT GLOBAL — Design System
   Palette: deep navy + warm paper + metallic gold (from brand brief)
   Type:    Fraunces (display serif) · Inter (body) · IBM Plex Mono (data)
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand color */
  --ink:        #0E1822;   /* deepest navy-black */
  --navy:       #1B2733;   /* brief navy */
  --navy-2:     #293138;   /* brief navy-2 */
  --navy-soft:  #38444f;
  --slate:      #5B6672;   /* muted text on light (>=4.5:1) */
  --slate-2:    #8A929B;
  --gold:       #E8A33D;   /* hero-finalized amber accent */
  --gold-2:     #F2BB6E;   /* lighter amber (better contrast on dark) */
  --gold-deep:  #B9740F;   /* darker amber (contrast on light/paper) */
  --paper:      #FBFAF7;   /* warm paper (cool-leaning, not cream) */
  --paper-2:    #F2EFEA;
  --white:      #FFFFFF;

  /* Functional */
  --bg:         var(--paper);
  --text:       var(--navy);
  --text-dim:   var(--slate);
  --line:       rgba(27, 39, 51, 0.12);
  --line-soft:  rgba(27, 39, 51, 0.07);
  --gold-line:  rgba(232, 163, 61, 0.34);

  /* On-dark */
  --on-dark:        rgba(255, 255, 255, 0.92);
  --on-dark-dim:    rgba(255, 255, 255, 0.66);
  --on-dark-line:   rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: "Gotham", "Helvetica Neue", Arial, sans-serif; /* display = Gotham (final build) */
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Scale (fluid) */
  --step--1: clamp(0.80rem, 0.77rem + 0.14vw, 0.88rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.13rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.45rem);
  --step-2:  clamp(1.50rem, 1.34rem + 0.78vw, 2.05rem);
  --step-3:  clamp(1.95rem, 1.66rem + 1.45vw, 3.00rem);
  --step-4:  clamp(2.45rem, 1.95rem + 2.50vw, 4.20rem);
  --step-5:  clamp(3.00rem, 2.20rem + 4.00vw, 5.60rem);

  /* Space */
  --gutter: clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
  --maxw: clamp(1200px, 92vw, 1720px);
  --maxw-narrow: 880px;
  --radius: 14px;
  --radius-sm: 9px;

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

  --shadow-sm: 0 1px 2px rgba(14,24,34,.06), 0 4px 14px rgba(14,24,34,.05);
  --shadow:    0 10px 40px -12px rgba(14,24,34,.20), 0 2px 8px rgba(14,24,34,.06);
  --shadow-lg: 0 30px 70px -20px rgba(14,24,34,.34);
  --header-h: 74px;
}

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

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(4rem, 3rem + 5vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 2.4rem + 3vw, 5rem); }
.section--dark { background: var(--navy); color: var(--on-dark); }
.section--ink  { background: var(--ink); color: var(--on-dark); }
.section--paper2 { background: var(--paper-2); }

.section--dark .muted, .section--ink .muted { color: var(--on-dark-dim); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.012em; color: inherit; font-optical-sizing: auto; }
.display { font-size: var(--step-5); font-weight: 600; line-height: 1.02; letter-spacing: -0.022em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 550; letter-spacing: -0.01em; }
p { max-width: 64ch; }
strong { font-weight: 600; }

.serif { font-family: var(--serif); }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--text-dim); font-weight: 400; }
.section--dark .lead, .section--ink .lead { color: var(--on-dark-dim); }
.muted { color: var(--text-dim); }
.balance { text-wrap: balance; }

/* Eyebrow — bold display label */
.eyebrow {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.section--dark .eyebrow, .section--ink .eyebrow { color: #E8A33D; }
.eyebrow--plain { font-size: 1.35rem; letter-spacing: 0.07em; color: #E8A33D; }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--serif); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 0.92em 1.6em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg); border-radius: 100px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform 0.25s var(--ease);
  isolation: isolate;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn--gold { --btn-bg: #E8A33D; --btn-fg: #241505; border-color: #E8A33D; }
.btn--gold:hover { --btn-bg: #CF8B22; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--line); }
.btn--ghost:hover { --btn-bg: transparent; border-color: var(--navy); }
.section--dark .btn--ghost, .section--ink .btn--ghost, .hero .btn--ghost { --btn-fg: var(--on-dark); border-color: rgba(255,255,255,0.24); }
.section--dark .btn--ghost:hover, .section--ink .btn--ghost:hover, .hero .btn--ghost:hover { border-color: var(--on-dark); background: rgba(255,255,255,0.05); }

.btn--lg { padding: 1.05em 2em; font-size: 1rem; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 500; color: var(--navy);
  padding-bottom: 3px; position: relative;
}
.textlink::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.textlink:hover::after { transform: scaleX(1); }
.textlink svg { width: 1em; height: 1em; transition: transform 0.35s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }
.section--dark .textlink, .section--ink .textlink { color: var(--on-dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s var(--ease), opacity 0.25s var(--ease);
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.site-header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 1.56rem; width: 100%; }
.site-header .brand { order: 1; justify-self: start; }
.site-header .nav { order: 2; justify-self: center; }
.site-header .header-cta { order: 3; justify-self: end; }
.site-header.scrolled {
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  height: 64px;
}
/* dark hero pages: header starts light-on-dark, flips when scrolled */
.site-header.on-dark { color: var(--on-dark); }
.site-header.on-dark .brand__name { color: var(--white); }
.site-header.on-dark .nav a { color: #fff; }
.site-header.on-dark .nav a:hover { color: var(--white); }
.site-header.on-dark:not(.scrolled) .header-phone { color: #fff; }
.site-header.on-dark.scrolled { color: var(--navy); }
.site-header.on-dark.scrolled .brand__name { color: var(--navy); }
.site-header.on-dark.scrolled .nav a { color: var(--navy); }

/* Transparent-over-photo header (homepage hero) */
/* Before the user scrolls past the Call Now button, the header is a normal in-flow
   element anchored to the top of the page (position: absolute, not fixed) — it scrolls
   away with the rest of the hero content instead of staying pinned to the viewport.
   Only once .scrolled is added (past Call Now) does it switch to position: fixed below. */
.site-header.on-dark:not(.scrolled) { position: absolute; background: transparent; border-bottom-color: transparent; box-shadow: none; }
.site-header.on-dark:not(.scrolled) .header-phone,
.site-header.on-dark:not(.scrolled) .header-phone svg { color: var(--on-dark); }
.site-header.on-dark:not(.scrolled) .nav-toggle { color: #E8A33D; }
.site-header.on-dark:not(.scrolled) .header-divider { background: rgba(255,255,255,0.4); }

.brand-mark--light { display: none; }
.site-header.on-dark:not(.scrolled) .brand-mark--dark { display: none; }
.site-header.on-dark:not(.scrolled) .brand-mark--light { display: block; }

.header-divider { width: 1px; height: 24px; background: var(--line); flex: none; }

.btn--gold-outline { --btn-bg: transparent; --btn-fg: #E8A33D; border-color: #E8A33D; }
.btn--gold-outline:hover { --btn-bg: rgba(232,163,61,0.12); }

/* Unify header CTA with the hero's amber accent on dark hero pages */
.site-header.on-dark .btn--gold { --btn-bg: #E8A33D; --btn-fg: #241505; border-color: #E8A33D; }
.site-header.on-dark .btn--gold:hover { --btn-bg: #CF8B22; }

.site-header.nav-compact .nav { display: none; }
.site-header.nav-compact .nav-toggle { display: block; }
.site-header.nav-compact .header-cta { gap: 0.85rem; }
.site-header.nav-compact + .mobile-nav { display: flex; }
.site-header.nav-compact .container { grid-template-columns: auto 1fr auto; }
.site-header.nav-compact .brand { justify-self: start; }
.site-header.nav-compact .header-cta { justify-self: end; }
.site-header.nav-compact .header-cta .btn { font-size: 0.92rem; padding: 0.72em 1.3em; }

/* Compact dropdown menu (desktop) instead of a full-screen takeover */
@media (min-width: 941px) {
  .site-header.nav-compact + .mobile-nav {
    position: fixed; inset: auto; top: calc(var(--header-h) + 0.7rem); right: var(--gutter); left: auto;
    width: 242px; padding: 0.9rem 1.2rem;
    flex-direction: column; justify-content: flex-start; gap: 0;
    background: rgba(14, 24, 34, 0.94);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--on-dark-line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px) scale(0.97); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  body.nav-open .site-header.nav-compact + .mobile-nav {
    transform: translateY(0) scale(1); opacity: 1; visibility: visible; pointer-events: auto;
  }
  .site-header.nav-compact + .mobile-nav a {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
    padding: 0.65rem 0; border-bottom: 1px solid var(--on-dark-line);
    justify-content: center; text-align: center;
  }
  .site-header.nav-compact + .mobile-nav a:last-of-type { border-bottom: none; }
  .site-header.nav-compact + .mobile-nav a span { display: none; }
  .site-header.nav-compact + .mobile-nav .mobile-foot { display: none; }
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.site-header .nav, .site-header .header-cta { transform: translateY(8px); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); line-height: 1; transition: color 0.4s var(--ease); }
.brand__name small { display: block; font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.32em; color: var(--gold-deep); margin-top: 4px; font-weight: 500; }
.site-header.on-dark .brand__name small { color: var(--gold-2); }

.nav { display: flex; align-items: center; gap: 1.04rem; }
.nav a { font-family: var(--serif); font-size: 1.34rem; font-weight: 700; color: var(--navy); position: relative; transition: color 0.3s var(--ease); }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; width:100%; height:1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold-deep); }

.header-cta { display: inline-flex; align-items: center; gap: 1.04rem; }
.header-phone { font-family: var(--serif); font-size: 1.26rem; font-weight: 700; letter-spacing: 0.005em; display: inline-flex; align-items: center; gap: 0.5em; }
.header-phone svg { width: 1em; height: 1em; color: var(--gold-deep); }
.header-cta .btn { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; border-radius: 10px; }
.hero__actions .btn--ghost { font-size: 1.12rem; padding: 1.15em 2.2em; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; position: relative; z-index: 60; }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 2.6px; border-radius: 2px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle span:nth-child(4) { top: 31px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(4) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav, .header-cta .btn, .header-phone { display: none; }
  body .mobile-nav { display: flex; }
}

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 55;
  flex-direction: column; justify-content: center; gap: 0.4rem;
  padding: var(--gutter);
  background: var(--navy); color: var(--on-dark);
  transform: translateY(-100%); transition: transform 0.55s var(--ease);
}
body.nav-open .mobile-nav { transform: translateY(0); }
.mobile-nav a { font-family: var(--serif); font-size: clamp(1.8rem, 1.2rem + 3vw, 2.6rem); font-weight: 350; padding: 0.35rem 0; color: var(--on-dark); border-bottom: 1px solid var(--on-dark-line); display: flex; align-items: center; justify-content: space-between; }
.mobile-nav a span { font-family: var(--mono); font-size: 0.8rem; color: var(--gold-2); }
.mobile-nav .mobile-foot { margin-top: 2rem; font-family: var(--mono); font-size: 0.85rem; color: var(--on-dark-dim); line-height: 2; }
.mobile-nav .mobile-foot a { font-family: var(--mono); font-size: 0.85rem; border: none; padding: 0; display: inline; color: var(--gold-2); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(3rem, 2rem + 5vw, 6rem)); padding-bottom: clamp(3rem, 2rem + 5vw, 6rem); background: var(--ink); color: var(--on-dark); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__contours { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero__glow { position: absolute; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; right: -10%; top: -15%; background: radial-gradient(circle, rgba(176,141,87,0.16), transparent 65%); border-radius: 50%; filter: blur(8px); }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }

.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 { font-size: var(--step-5); font-weight: 650; letter-spacing: -0.025em; line-height: 1.0; margin-bottom: 1.6rem; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .gold { color: var(--gold-2); font-style: italic; font-weight: 560; }
.hero__sub { font-size: var(--step-1); line-height: 1.5; color: var(--on-dark-dim); max-width: 30ch; margin-bottom: 2.3rem; font-weight: 420; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.3rem; }
.hero__actions .btn { border-radius: 10px; }
.hero__actions .btn--ghost { --btn-fg: #E8A33D; border-color: #E8A33D; }
.hero__actions .btn--ghost:hover { --btn-bg: rgba(232,163,61,0.1); border-color: #E8A33D; }

/* Natural-case hero variant (homepage) */
.hero__rule { display: block; width: 56px; height: 2px; background: #E8A33D; margin: 0.9rem 0 1.5rem; }
.hero--natural-case h1 { text-transform: none; letter-spacing: -0.015em; }

/* Hero stat row with icons + dividers */
.hero__stats { display: flex; align-items: flex-start; gap: 1.75rem; margin-bottom: 1.6rem; }
.hero__stat { display: flex; flex-direction: column; gap: 0.55rem; }
.hero__stat-icon { width: 28px; height: 28px; color: #E8A33D; }
.hero__stat-num { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: #fff; line-height: 1; }
.hero__stat-label { font-family: var(--serif); font-size: 0.85rem; font-weight: 700; color: var(--on-dark-dim); }
.hero__stat-divider { width: 1px; align-self: stretch; background: var(--on-dark-line); }
.hero__highlight { font-family: var(--serif); font-weight: 700; color: #E8A33D; font-size: 1rem; letter-spacing: -0.005em; }

/* Premium hero accent (scoped to hero only) */
.hero .eyebrow--plain,
.hero__rule,
.hero__stat-icon,
.hero__highlight,
.hero__actions .btn--ghost { color: #E8A33D; }
.hero__rule { background: #E8A33D; }
.hero__actions .btn--ghost { border-color: #E8A33D; }
.hero__actions .btn--ghost:hover { --btn-bg: rgba(232,163,61,0.12); border-color: #E8A33D; }
.hero .btn--gold { --btn-bg: #E8A33D; --btn-fg: #241505; border-color: #E8A33D; }
.hero .btn--gold:hover { --btn-bg: #CF8B22; }

@media (max-width: 760px) {
  .hero__stats { flex-wrap: wrap; gap: 1.4rem 1.8rem; }
  .hero__stat-divider { display: none; }
}
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--on-dark-dim); }
.hero__trust span { display: inline-flex; align-items: center; gap: 0.55em; }
.hero__trust svg { width: 0.95em; height: 0.95em; color: var(--gold-2); }

/* Hero metric card */
.metric-card { background: linear-gradient(165deg, rgba(10,17,25,0.62), rgba(10,17,25,0.4)); border: 1px solid var(--on-dark-line); border-radius: var(--radius); padding: 1.4rem 1.5rem; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }
.metric-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.9rem; margin-bottom: 0.4rem; border-bottom: 1px solid var(--on-dark-line); }
.metric-card__label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-dim); }
.metric-card__live { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--gold-2); display: inline-flex; align-items: center; gap: 0.5em; }
.metric-card__live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(201,168,117,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(201,168,117,0.5);} 70%{ box-shadow: 0 0 0 9px rgba(201,168,117,0);} 100%{ box-shadow: 0 0 0 0 rgba(201,168,117,0);} }
.metric-row { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.6rem 0; }
.metric-row + .metric-row { border-top: 1px dashed var(--on-dark-line); }
.metric-row dt { font-family: var(--mono); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-dim); }
.metric-row dd { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; color: var(--white); }
.metric-row dd .u { font-family: var(--mono); font-size: 0.8rem; color: var(--gold-2); margin-left: 0.15em; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__sub { max-width: 46ch; }
  .metric-card { max-width: 420px; }
}

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.marquee--top { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; margin: 0; transform: translateY(6.5%); background: #E8A33D; border-color: transparent; }
.marquee--top .marquee__item { color: var(--navy); }
.marquee--top .marquee__item::after { color: var(--navy); opacity: 0.55; }
.section--dark + .marquee, .marquee.on-dark { background: var(--ink); border-color: var(--on-dark-line); }
.marquee__inner { display: flex; gap: 3.5rem; padding-block: 1.2rem; width: max-content; animation: scroll-x 56.3s linear infinite; }
.marquee:hover .marquee__inner { animation-play-state: paused; }
.marquee__item { font-family: var(--serif); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--slate); display: inline-flex; align-items: center; gap: 0.8rem; white-space: nowrap; }
.marquee__item::after { content:"·"; color: var(--gold); margin-left: 0.8rem; }
.marquee.on-dark .marquee__item { color: #fff; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem); }
.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: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  position: relative; overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.card::before { content:""; position:absolute; left:0; top:0; height:100%; width:3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease); }
.card:hover { border-color: var(--gold-line); box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before { transform: scaleY(1); }
.card__icon { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--gold-2); margin-bottom: 1.3rem; }
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--text-dim); }
.card__num { position: absolute; top: 1.2rem; right: 1.3rem; font-family: var(--mono); font-size: 0.78rem; color: var(--slate-2); letter-spacing: 0.1em; }

.section--dark .card, .section--ink .card { background: rgba(255,255,255,0.035); border-color: var(--on-dark-line); }
.section--dark .card p, .section--ink .card p { color: var(--on-dark-dim); }
.section--dark .card:hover, .section--ink .card:hover { background: rgba(255,255,255,0.06); border-color: var(--gold-line); }
.section--dark .card__icon, .section--ink .card__icon { background: rgba(255,255,255,0.06); }

/* service list inside card */
.card__list { margin-top: 1rem; display: grid; gap: 0.5rem; }
.card__list li { font-size: 0.88rem; color: var(--text-dim); display: flex; gap: 0.6em; align-items: flex-start; }
.card__list li svg { width: 1em; height: 1em; color: var(--gold); flex: none; margin-top: 0.42em; }
.section--dark .card__list li, .section--ink .card__list li { color: var(--on-dark-dim); }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--on-dark-line); border: 1px solid var(--on-dark-line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--navy); padding: clamp(1.5rem, 1.1rem + 1.5vw, 2.4rem); text-align: left; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem); font-weight: 380; line-height: 1; color: var(--white); letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 0.08em; }
.stat__num .u { font-family: var(--mono); font-size: 0.95rem; color: var(--gold-2); }
.stat__label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: 0.9rem; line-height: 1.5; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
/* Top-alignment nudge for the Insurance split row — only meaningful side-by-side; reset when stacked on mobile/tablet */
@media (min-width: 861px) {
  .insurance-img-nudge { margin-top: -1.4rem; }
  .insurance-head-nudge { margin-top: -1.55rem; }
}

/* Right-aligned section head (mirrors the Insurance flagship layout) — only on desktop; left-aligned and readable when stacked */
@media (min-width: 701px) {
  .section-head--right-desktop { margin-left: auto; text-align: right; }
  .eyebrow--right-desktop { justify-content: flex-end; }
}

/* contour panel used as visual */
.panel { background: var(--navy); border-radius: var(--radius); border: 1px solid var(--on-dark-line); overflow: hidden; position: relative; aspect-ratio: 5 / 4; box-shadow: var(--shadow); }
.panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.panel__tag { position: absolute; left: 1.2rem; bottom: 1.2rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-2); z-index: 2; }

/* checklist */
.checklist { display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist li svg { width: 1.35em; height: 1.35em; flex: none; color: var(--gold); margin-top: 0.1em; }
.checklist li strong { display: block; font-weight: 600; margin-bottom: 0.1rem; }
.checklist li span { color: var(--text-dim); font-size: 0.95rem; }
.section--dark .checklist li span, .section--ink .checklist li span { color: var(--on-dark-dim); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 0.6rem + 1.4vw, 1.8rem); counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step__n { position: absolute; top: 0; left: 0; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold-deep); }
.section--dark .step__n, .section--ink .step__n { color: var(--gold-2); }
.step::after { content:""; position: absolute; top: 6px; left: 2.6rem; right: 0; height: 1px; background: var(--line); }
.section--dark .step::after, .section--ink .step::after { background: var(--on-dark-line); }
.step:last-child::after { display: none; }
.step h3 { font-size: var(--step-0); font-weight: 550; font-family: var(--sans); letter-spacing: 0; margin-bottom: 0.5rem; margin-top: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--text-dim); }
.section--dark .step p, .section--ink .step p { color: var(--on-dark-dim); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.5rem + 1.2vw, 1.5rem); align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.price {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem); display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.price:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-line); }
.price--featured { background: var(--navy); color: var(--on-dark); border-color: var(--navy); box-shadow: var(--shadow-lg); position: relative; }
.price--featured .price__name, .price--featured .price__amount { color: var(--white); }
.price--featured .price__desc, .price--featured .price__period { color: var(--on-dark-dim); }
.price__badge { position: absolute; top: 1.3rem; right: 1.3rem; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: #2a2013; background: var(--gold); padding: 0.35em 0.8em; border-radius: 100px; }
.price__name { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.price--featured .price__name { color: var(--gold-2); }
.price__amount { font-family: var(--serif); font-size: clamp(2.2rem, 1.7rem + 2vw, 3rem); font-weight: 380; line-height: 1; letter-spacing: -0.02em; }
.price__amount .from { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 0.5rem; }
.price--featured .price__amount .from { color: var(--on-dark-dim); }
.price__period { font-family: var(--mono); font-size: 0.8rem; color: var(--slate); margin-top: 0.5rem; }
.price__desc { font-size: 0.92rem; color: var(--text-dim); margin: 1.2rem 0 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.price--featured .price__desc { border-color: var(--on-dark-line); }
.price__features { display: grid; gap: 0.7rem; margin-bottom: 1.8rem; flex: 1; }
.price__features li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.9rem; }
.price__features li svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; margin-top: 0.3em; }
.price--featured .price__features li svg { color: var(--gold-2); }
.price .btn { width: 100%; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
@media (max-width: 800px){ .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { font-size: var(--step-4); margin-bottom: 1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; }
.cta-actions .btn { width: 100%; }
.cta-phone { font-family: var(--mono); font-size: 0.85rem; color: var(--on-dark-dim); text-align: center; }
.cta-phone a { color: var(--gold-2); }

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.ac { border-bottom: 1px solid var(--line); }
.ac__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; font-family: var(--serif); font-size: var(--step-1); font-weight: 420; color: var(--navy); position: relative; line-height: 1.3; }
.ac__q::after { content:"+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 1.4rem; color: var(--gold-deep); transition: transform 0.4s var(--ease); font-weight: 300; }
.ac.open .ac__q::after { transform: translateY(-50%) rotate(45deg); }
.ac__a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.ac__a-inner { padding: 0 3rem 1.6rem 0; color: var(--text-dim); }
.ac__a-inner p { font-size: 0.97rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 560px){ .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.5rem; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.field input, .field select, .field textarea {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.85em 1em; font: inherit; font-size: 0.97rem; line-height: 1.4; color: var(--text);
  width: 100%; box-sizing: border-box; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6672' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85em center; background-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,87,0.16); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: 0.82rem; color: var(--slate); line-height: 1.55; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding-top: clamp(3.5rem, 2.5rem + 4vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem); padding-bottom: 3rem; border-bottom: 1px solid var(--on-dark-line); }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 480px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { color: var(--on-dark-dim); font-size: 0.92rem; margin-top: 1.2rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { color: var(--on-dark-dim); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.8rem; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--on-dark-dim); }
.footer-bottom .tagline { color: var(--gold-2); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

.hero [data-load] { opacity: 0; transform: translateY(24px); }
.hero.loaded [data-load] { opacity: 1; transform: none; transition: opacity 1.3s var(--ease-out), transform 1.3s var(--ease-out); }
.hero.loaded [data-load="1"]{ transition-delay: 0.12s; }
.hero.loaded [data-load="2"]{ transition-delay: 0.28s; }
.hero.loaded [data-load="3"]{ transition-delay: 0.44s; }
.hero.loaded [data-load="4"]{ transition-delay: 0.6s; }
.hero.loaded [data-load="5"]{ transition-delay: 0.76s; }
.hero.loaded [data-load="6"]{ transition-delay: 0.92s; }

/* contour draw-on */
.draw path { stroke-dasharray: 1; stroke-dashoffset: 1; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.divider-contour { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent); border: none; }
.pill { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5em 0.9em; border: 1px solid var(--line); border-radius: 100px; color: var(--text-dim); }
.section--dark .pill, .section--ink .pill { border-color: var(--on-dark-line); color: var(--on-dark-dim); }
.pill svg { width: 1em; height: 1em; color: var(--gold); }

.two-col-text { columns: 2; column-gap: 3rem; }
@media (max-width: 680px){ .two-col-text { columns: 1; } }

/* ---------- Sub-hero (inner pages) ---------- */
.subhero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; padding-top: calc(var(--header-h) + clamp(2.5rem, 2rem + 3vw, 4.5rem)); padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.subhero .container { position: relative; z-index: 2; }
.subhero .eyebrow { margin-bottom: 1.3rem; }
.subhero h1 { font-size: var(--step-4); font-weight: 350; max-width: 18ch; margin-bottom: 1.2rem; }
.subhero .lead { max-width: 56ch; color: var(--on-dark-dim); }
.subhero .textlink { color: var(--on-dark); }
.subhero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 1.8rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--on-dark-dim); }
.subhero__meta span { display: inline-flex; align-items: center; gap: 0.5em; }
.subhero__meta svg { width: 0.95em; height: 0.95em; color: var(--gold-2); }
.breadcrumb { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: 1.6rem; }
.breadcrumb a { color: var(--gold-2); }

/* ---------- Service detail blocks ---------- */
.svc { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); border-bottom: 1px solid var(--line); }
.svc:last-child { border-bottom: none; }
.svc__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: start; }
@media (max-width: 820px){ .svc__grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.svc__head { position: sticky; top: calc(var(--header-h) + 1rem); }
@media (max-width: 820px){ .svc__head { position: static; } }
.svc__n { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.12em; color: var(--gold-deep); margin-bottom: 1rem; }
.svc__head h2 { font-size: var(--step-2); margin-bottom: 1rem; }
.svc__head p { color: var(--text-dim); font-size: 0.97rem; }
.svc__items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.6rem; }
@media (max-width: 520px){ .svc__items { grid-template-columns: 1fr; } }
.svc__items li { display: flex; gap: 0.65em; align-items: flex-start; font-size: 0.93rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line-soft); }
.svc__items li svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; margin-top: 0.35em; }

/* ---------- Value / principle cards ---------- */
.value { padding: clamp(1.4rem, 1rem + 1vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease); }
.value:hover { border-color: var(--gold-line); transform: translateY(-4px); box-shadow: var(--shadow); }
.value__n { font-family: var(--mono); font-size: 0.78rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.value h3 { font-size: var(--step-1); margin: 0.8rem 0 0.6rem; }
.value p { font-size: 0.94rem; color: var(--text-dim); }
.section--dark .value, .section--ink .value { background: rgba(255,255,255,.035); border-color: var(--on-dark-line); }
.section--dark .value p { color: var(--on-dark-dim); }
.section--dark .value__n { color: var(--gold-2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(2rem, 1.5rem + 2vw, 3.1rem); box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: var(--step-2); margin-top: 0.6em; margin-bottom: 0.6rem; text-align: center; }
.contact-card > .muted { text-align: center; margin-bottom: 2rem; }
.contact-method { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.contact-method:first-child { padding-top: 0; }
.contact-method:last-child { border-bottom: none; padding-bottom: 0; }
.contact-method__icon { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: var(--gold-2); flex: none; }
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method dt { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.3rem; }
.contact-method dd { font-weight: 500; font-size: 1.02rem; color: var(--text); margin: 0; }
.contact-method dd a { font-weight: 500; font-size: 1.02rem; color: inherit; }
.contact-method dd a:hover { color: var(--gold-deep); }
.contact-method small { line-height: 1.45; }
.contact-method small { display:block; color: var(--slate); font-size: 0.82rem; margin-top: 0.15rem; }

/* mini stat inline */
.kpi-inline { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.kpi-inline div { }
.kpi-inline .n { font-family: var(--serif); font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); font-weight: 380; line-height: 1; display:flex; align-items:baseline; gap:.1em; }
.kpi-inline .n .u { font-family: var(--mono); font-size: 0.85rem; color: var(--gold-deep); }
.section--dark .kpi-inline .n .u, .section--ink .kpi-inline .n .u { color: var(--gold-2); }
.kpi-inline .l { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.6rem; }
.section--dark .kpi-inline .l, .section--ink .kpi-inline .l { color: var(--on-dark-dim); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero [data-load] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__inner { animation: none; }
  .metric-card__live::before { animation: none; }
  .draw path { stroke-dashoffset: 0 !important; }
  * { scroll-behavior: auto !important; }
}

/* =================================================================
   FINAL BUILD (v3) — Gotham · white ribbon · mountain photography
   ================================================================= */

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Gotham is bold-only — manage hierarchy via size / case / spacing */
h1, h2, .display { font-weight: 700; letter-spacing: -0.018em; }
.display, .hero h1, .subhero h1 { text-transform: uppercase; line-height: 0.98; letter-spacing: -0.005em; }
.hero--natural-case h1 { text-transform: none; line-height: 1.1; }
h2 { line-height: 1.04; }
h3 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
.ac__q { font-family: var(--sans); font-weight: 600; }
.hero h1 .gold, .display .gold { font-style: normal; color: var(--gold-2); }

/* ---------- White ribbon header ---------- */
.site-header { background: #fff; height: 120px; border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(14,24,34,.03); }
.site-header::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-deep), var(--gold) 45%, var(--gold-2)); }
.site-header.scrolled { background: #fff; height: 101px; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: 0 10px 30px -16px rgba(14,24,34,.22); border-bottom-color: var(--line); }
.site-header .nav a { color: var(--navy); }
.site-header .nav a:hover { color: var(--gold-deep); }
.header-phone { color: var(--navy); }
.nav-toggle { color: var(--navy); }
:root { --header-h: 120px; }

/* ---------- New logo lockup ---------- */
.brand { gap: 0.7rem; align-items: center; }
.brand-mark { height: 94px; width: auto; flex: none; display: block; transition: height .35s var(--ease); }
.site-header .brand-mark { transform: translateY(8px); }
.site-header.scrolled .brand-mark { height: 77px; }
.site-footer .brand-mark { height: 73px; }

/* ---------- Hero with photo ---------- */
.hero { background: var(--ink); padding-top: calc(var(--header-h) + clamp(1.2rem, 1rem + 2vw, 2.5rem)); }
.hero__photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: 50% center; }
.hero__photo::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 65% at center, rgba(10,17,25,.8), rgba(10,17,25,.45) 70%),
              linear-gradient(180deg, rgba(10,17,25,.35), rgba(10,17,25,.55)); }
.hero .container { position: relative; z-index: 2; }
.hero__grid { grid-template-columns: minmax(0, 1100px); }
.hero__copy { max-width: 1100px; }
.hero h1 { font-size: clamp(2.6rem, 1.6rem + 3.2vw, 4.4rem); margin-bottom: 1.5rem; }
.hero__sub { max-width: 50ch; font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem); line-height: 1.45; letter-spacing: -0.005em; color: #fff; }
.hero__actions .btn { font-family: var(--serif); font-weight: 700; letter-spacing: 0.01em; }

/* Centered hero variant */
.hero--center .hero__grid { justify-content: center; }
.hero--center .hero__copy { max-width: 800px; margin-inline: auto; text-align: center; }
.hero--center .hero__eyebrow { justify-content: center; }
.hero--center .hero__sub { margin-inline: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero--center .sla-strip { justify-content: center; }

/* SLA strip (replaces hero metric card) */
.sla-strip { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.1rem; }
.sla-strip .pill2 { display: inline-flex; align-items: baseline; gap: 0.5em; padding: 0.75em 1.15em; border: 1px solid var(--on-dark-line); border-radius: 100px; background: rgba(255,255,255,.06); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.sla-strip .n { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.05rem; letter-spacing: -0.005em; }
.sla-strip .l { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.005em; text-transform: none; color: #fff; }
.sla-strip .pill2--wide { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.05rem; letter-spacing: -0.005em; flex: 0 1 auto; min-width: min(640px, 100%); justify-content: center; padding: 0.85em 1.5em; }

/* ---------- Sub-hero with photo ---------- */
.subhero { background: var(--ink); }
.subhero__photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.subhero__photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(101deg, rgba(10,17,25,.94) 0%, rgba(10,17,25,.8) 44%, rgba(10,17,25,.42) 74%, rgba(10,17,25,.58) 100%); }

/* ---------- Photo panels (splits) ---------- */
.panel--photo { background-size: cover; background-position: center; aspect-ratio: 4 / 5; }
.panel--photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,17,25,.04), rgba(10,17,25,.5)); }
.panel--photo .panel__tag { z-index: 2; }

/* ---------- Section background photos ---------- */
.bg-photo { position: relative; isolation: isolate; }
.bg-photo > .bgimg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.bg-photo > .container { position: relative; z-index: 2; }
.stats-band > .bgimg::after, .photo-band > .bgimg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,17,25,.55) 0%, rgba(10,17,25,.74) 55%, rgba(10,17,25,.92) 100%); }
.cta-summit > .bgimg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(101deg, rgba(10,17,25,.92), rgba(10,17,25,.6) 58%, rgba(10,17,25,.82)); }

/* journey eyebrow tick already gold; nudge section heads on photos */
.subhero .breadcrumb { color: var(--on-dark-dim); }

/* keep hero contour layer subtle if present behind photo (none now) */
.hero__bg { display: none; }

@media (max-width: 860px) {
  .hero__photo { background-position: 68% center; }
}

/* Scale hero text and header logo down ~20% on mobile so the hero doesn't feel oversized */
@media (max-width: 760px) {
  .site-header .brand-mark { height: 75px; }
  .hero .eyebrow--plain { font-size: 1.08rem; }
  .hero h1 { font-size: clamp(2.08rem, 1.28rem + 2.56vw, 3.52rem); }
  .hero__sub { font-size: clamp(0.96rem, 0.9rem + 0.32vw, 1.16rem); }
  .hero__stat-num { font-size: 1.2rem; }
  .hero__stat-label { font-size: 0.68rem; }
  .hero__actions .btn { font-size: 0.92rem; padding: 0.9em 1.6em; }
}

