/* ============================================================
   MAX4 CLAIMS SPECIALISTS — Premium marketing site
   Brand: Oswald display / Roboto body. Matte navy + gold.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0F2436;   /* deep matte navy, dark sections */
  --ink-2:      #142B40;   /* slightly lifted navy */
  --ink-3:      #1C3A55;   /* card surface on dark */
  --teal:       #2F6088;   /* steel blue accent (icons, secondary) */
  --teal-soft:  #5B7C96;
  --teal-line:  rgba(255,255,255,.12);
  --orange:     #FFB84D;   /* brand gold */
  --orange-2:   #F0A93C;
  --orange-deep:#D98A24;
  --cream:      #FFFDFB;   /* warm white bg */
  --paper:      #FAF9F5;
  --sand:       #DBDAD0;
  --charcoal:   #414242;
  --ink-60:     rgba(15,36,54,.62);
  --shadow-lg:  0 30px 70px -30px rgba(8,18,32,.48);
  --shadow-md:  0 18px 40px -22px rgba(8,18,32,.42);
  --maxw:       1200px;
  --gut:        clamp(20px, 5vw, 64px);
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography helpers ---------- */
.display, h1, h2, h3, .eyebrow, .stat-num, .nav__links a, .btn {
  font-family: "Oswald", "Oswald Fallback", sans-serif;
}
h1, h2, h3 { margin: 0; font-weight: 500; line-height: 1.04; letter-spacing: .01em; text-transform: uppercase; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(11px, 1vw, 13px); font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--orange-deep); margin: 0 0 22px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--orange); display: inline-block; }
.on-dark .eyebrow, .eyebrow--light { color: var(--orange); }
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--center::after { content: ""; width: 30px; height: 1px; background: var(--orange); display: inline-block; }

h2.section-title { font-size: clamp(30px, 5.2vw, 58px); letter-spacing: .015em; }
.lead { font-size: clamp(17px, 1.55vw, 20px); color: var(--charcoal); max-width: 62ch; }
.on-dark, .on-dark p, .on-dark .lead { color: rgba(255,255,255,.82); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.wrap--wide { max-width: 1360px; }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 10vw, 132px); }
.bg-ink   { background: var(--ink); color: #fff; }
.bg-ink-2 { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .lead { text-align: center; }

/* centered title hairline bracket (brand signature) */
.titled { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.titled .section-title { position: relative; display: inline-block; }
.titled--rule .section-title::after {
  content: ""; display: block; width: 64px; height: 2px; background: var(--orange);
  margin: 26px auto 0;
}
/* On phones, left-align centered section headers + their eyebrows */
@media (max-width: 700px){
  .titled { text-align: left; }
  .titled--rule .section-title::after { margin-left: 0; margin-right: auto; }
  .eyebrow--center { justify-content: flex-start; }
  .eyebrow--center::after { display: none; }
  .voices__cta { align-items: flex-start; text-align: left; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--orange); color: #1a1208; box-shadow: 0 14px 30px -14px rgba(255,184,77,.7); }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(255,184,77,.85); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--teal); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(15,36,54,.25); }
.btn-outline-dark:hover { border-color: var(--orange-deep); color: var(--orange-deep); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 15px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(12,27,43,.86); backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  padding-block: 12px; border-bottom-color: var(--teal-line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.6);
}
.nav__brand img { height: 34px; width: auto; transition: height .4s var(--ease); }
.nav.is-stuck .nav__brand img { height: 30px; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 1.8vw, 30px); list-style: none; margin: 0; padding: 0; }
.nav__links > li { position: relative; }
.nav__links a {
  font-size: 13.5px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85); position: relative; padding: 6px 0; white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav__links > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--orange);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links > li > a:hover::after { width: 100%; }

/* desktop dropdown */
.nav__links .has-sub > a { display: inline-flex; align-items: center; gap: 6px; }
.nav__links .has-sub > a::before {
  content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .7; order: 2; transition: transform .3s var(--ease);
}
.nav__sub {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px); min-width: 210px;
  background: rgba(12,27,43,.97); backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid var(--teal-line); border-radius: 12px; padding: 8px; list-style: none; margin: 0;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav__sub li { display: block; }
.nav__sub a { display: block; padding: 11px 14px; border-radius: 8px; font-size: 12.5px; letter-spacing: .08em; }
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__links .has-sub:hover .nav__sub,
.nav__links .has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav__links .has-sub:hover > a::before { transform: rotate(225deg) translateX(-2px); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: .04em; color: rgba(255,255,255,.85); font-family: "Oswald", sans-serif; }
.nav__phone svg { width: 15px; height: 15px; color: var(--orange); }
.nav__phone:hover { color: #fff; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: .3s var(--ease); }

/* mobile drawer */
.nav__drawer { display: none; }

/* ============================================================
   HERO
   ============================================================ */
/* Rounded full-width image card; text centered in the wall space above the men */
.hero { background: var(--ink); padding: clamp(90px, 12vh, 122px) clamp(14px, 2.2vw, 30px) clamp(16px, 2.2vw, 30px); }
.hero__card {
  position: relative; width: 100%; max-width: 1480px; margin: 0 auto;
  aspect-ratio: 1672 / 941; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
/* Crop in closer on Ray & Justin (less empty room). `scale` composes with the
   JS parallax `transform`, so it survives scroll + reduced-motion. */
@media (min-width: 701px){ .hero__img{ scale: 1.18; transform-origin: 50% 40%; } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,19,32,.66) 0%, rgba(8,19,32,.34) 20%, rgba(8,19,32,.05) 38%, rgba(8,19,32,0) 50%),
    linear-gradient(0deg, rgba(8,19,32,.34) 0%, rgba(8,19,32,0) 20%);
}
.hero__content {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  padding: clamp(26px, 4.4%, 58px) clamp(20px, 6%, 64px) 0; text-align: center;
}
.hero__inner { max-width: 720px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(32px, 4.4vw, 64px); font-weight: 500; color: #fff;
  letter-spacing: .02em; line-height: 1; margin: 0 0 clamp(10px, 1.2vw, 16px);
  text-shadow: 0 2px 26px rgba(8,19,32,.5);
}
.hero h1 .gold { color: var(--orange); }
.hero__sub {
  font-size: clamp(14px, 1.25vw, 17px); color: rgba(255,255,255,.92); font-weight: 300;
  max-width: 600px; margin: 0 auto clamp(16px, 1.9vw, 24px); line-height: 1.5;
  text-shadow: 0 1px 18px rgba(8,19,32,.65);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--ink-2); border-top: 1px solid var(--teal-line); }
.trust__row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(28px, 5vw, 70px);
  padding-block: 30px;
}
.trust__label { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .22em; font-size: 12px; color: rgba(255,255,255,.55); }
.trust__logos { display: flex; align-items: center; gap: clamp(26px, 4vw, 54px); flex-wrap: wrap; justify-content: center; }
.trust__logos img { height: 56px; width: auto; opacity: .92; filter: saturate(1); }
.trust__logos .badge-round { height: 66px; border-radius: 50%; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(8px, 1.4vw, 18px) clamp(16px, 2.5vw, 40px); text-align: center;
  border-right: 1px solid var(--teal-line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(42px, 5.6vw, 70px); font-weight: 600; color: #fff; line-height: 1;
  letter-spacing: .005em; display: block; margin-bottom: 16px;
}
.stat-num .gold { color: var(--orange); }
.stat-label { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); font-family: "Oswald", sans-serif; }

/* ============================================================
   ADVANTAGE / why underpaid (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-lg); }
.split__frame { position: relative; z-index: 0; }
.split__frame::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--orange);
  border-radius: 6px; z-index: -1;
}
.feature-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 4px; }
.feature-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(15,36,54,.1); }
.on-dark .feature-list li { border-top-color: var(--teal-line); }
.feature-list li:last-child { border-bottom: 1px solid rgba(15,36,54,.1); }
.on-dark .feature-list li:last-child { border-bottom-color: var(--teal-line); }
.feature-list .num { font-family: "Oswald", sans-serif; color: var(--orange); font-size: 15px; font-weight: 600; letter-spacing: .1em; padding-top: 3px; }
.feature-list h3 { font-size: 20px; margin-bottom: 4px; letter-spacing: .02em; }
.feature-list p { font-size: 16px; margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
/* Editorial capabilities list, no boxes. Index + content + arrow per row. */
.svc-intro { margin-bottom: clamp(34px, 4.5vw, 60px); }
.svc-intro .section-title { margin-top: 6px; }
.svc-list { border-top: 1px solid var(--teal-line); }
.svc {
  display: grid; grid-template-columns: minmax(54px, auto) 1fr 28px; align-items: center;
  gap: clamp(20px, 3.4vw, 56px); padding: clamp(28px, 3.4vw, 48px) 6px;
  border-bottom: 1px solid var(--teal-line);
  transition: padding-left .5s var(--ease), background .5s var(--ease);
}
.svc__idx {
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: clamp(28px, 4vw, 50px);
  line-height: .8; color: rgba(255,255,255,.16); letter-spacing: .01em; transition: color .5s var(--ease);
}
.svc__head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.svc__icon { width: 28px; height: 28px; color: var(--orange); flex: none; }
.svc__icon svg { width: 100%; height: 100%; }
.svc h3 { font-size: clamp(21px, 2.4vw, 30px); color: #fff; letter-spacing: .03em; }
.svc p { font-size: 15.5px; color: rgba(255,255,255,.7); margin: 0; max-width: 64ch; }
.svc__tags { margin-top: 14px; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: 11.5px; color: rgba(255,255,255,.48); }
.svc__tags span:not(:last-child)::after { content: "\00B7"; margin: 0 10px; color: var(--orange); }
.svc__arrow { width: 26px; height: 26px; color: rgba(255,255,255,.26); transition: transform .5s var(--ease), color .5s var(--ease); }
.svc:hover { padding-left: 20px; background: linear-gradient(90deg, rgba(255,255,255,.025), transparent 60%); }
.svc:hover .svc__idx { color: var(--orange); }
.svc:hover .svc__arrow { color: var(--orange); transform: translateX(7px); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 8px clamp(16px, 2vw, 28px) 8px 0; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: "Oswald", sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .2em; color: var(--orange);
}
.step__bar { height: 2px; background: rgba(15,36,54,.12); margin: 16px 0 22px; position: relative; }
.on-dark .step__bar { background: var(--teal-line); }
.step__bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 34px; background: var(--orange); }
.step h3 { font-size: 22px; letter-spacing: .04em; margin-bottom: 10px; }
.step p { font-size: 15.5px; }
.step__ico { width: 30px; height: 30px; color: var(--orange); margin-bottom: 18px; }

/* ============================================================
   AUDIENCE / who we serve
   ============================================================ */
/* Column-rule layout, no boxes. A short top rule per column, gold on hover. */
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.aud { padding-top: 26px; border-top: 2px solid var(--sand); transition: border-color .45s var(--ease); }
.aud:hover { border-top-color: var(--orange); }
.aud__ico { width: 40px; height: 40px; color: var(--teal); margin-bottom: 22px; transition: color .45s var(--ease); }
.aud:hover .aud__ico { color: var(--orange-deep); }
.aud h3 { font-size: 20px; color: var(--ink); margin-bottom: 10px; letter-spacing: .03em; }
.aud p { font-size: 15.5px; color: var(--charcoal); margin: 0; }

/* ============================================================
   RESULTS / case studies
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.result {
  border: 1px solid var(--teal-line); border-radius: 6px; padding: 36px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  display: flex; flex-direction: column;
}
.result__delta { font-family: "Oswald", sans-serif; font-weight: 600; color: var(--orange); font-size: clamp(34px, 4vw, 46px); line-height: 1; letter-spacing: .01em; }
.result__delta small { display: block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 400; margin-top: 8px; }
.result__rule { height: 1px; background: var(--teal-line); margin: 22px 0; }
.result__amounts { display: flex; gap: 26px; margin-bottom: 18px; }
.result__amounts div span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); font-family: "Oswald", sans-serif; display: block; margin-bottom: 4px; }
.result__amounts div b { font-size: 19px; color: #fff; font-family: "Oswald", sans-serif; font-weight: 500; }
.result__amounts .to { color: var(--orange); }
.result p { font-size: 15.5px; color: rgba(255,255,255,.76); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--cream); border: 1px solid var(--sand); border-radius: 6px; padding: 36px 32px;
  display: flex; flex-direction: column; position: relative;
}
.quote__mark { font-family: "Oswald", sans-serif; font-size: 70px; line-height: .7; color: var(--orange); opacity: .9; margin-bottom: 8px; }
.quote__tag { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; color: var(--orange-deep); margin-bottom: 14px; }
.quote p { font-size: 17px; color: var(--ink); line-height: 1.6; flex: 1; }
.quote__by { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--sand); font-family: "Oswald", sans-serif; }
.quote__by b { display: block; color: var(--ink); letter-spacing: .04em; font-weight: 500; font-size: 16px; }
.quote__by span { font-size: 13px; color: var(--teal-soft); letter-spacing: .06em; }

/* ============================================================
   PARTNERS (authority quotes w/ logos)
   ============================================================ */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner-grid--two { grid-template-columns: repeat(2, 1fr); }
.partner {
  background: var(--ink-2); border: 1px solid var(--teal-line); border-radius: 6px; padding: 34px 30px;
  display: flex; flex-direction: column;
}
.partner__logo { height: 64px; display: flex; align-items: center; margin-bottom: 22px; }
.partner__logo img { max-height: 64px; width: auto; border-radius: 6px; }
.partner__logo .txt { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 22px; line-height: 1.1; }
.partner__logo .txt b { color: var(--orange); display:block; font-weight:600; }
.partner p { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.62; flex: 1; }
.partner__by { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--teal-line); font-family: "Oswald", sans-serif; }
.partner__by b { display: block; color: #fff; letter-spacing: .03em; font-weight: 500; }
.partner__by span { font-size: 13px; color: var(--orange); letter-spacing: .05em; }

/* ============================================================
   COMMITMENT band
   ============================================================ */
.commit { position: relative; overflow: hidden; }
.commit .split__media img { aspect-ratio: 1003/1568; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta-band { background: var(--ink); position: relative; overflow: hidden; }
.cta-band__mark { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: 40%; opacity: .05; pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-copy h2 { font-size: clamp(30px, 4.6vw, 52px); margin-bottom: 22px; }
.contact-copy .pull { font-family: "Oswald", sans-serif; font-size: clamp(20px, 2.4vw, 27px); color: var(--orange); text-transform: none; line-height: 1.3; letter-spacing: .01em; margin: 0 0 26px; font-weight: 300; }
.contact-detail { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--teal-line); }
.contact-detail a, .contact-detail div { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.85); font-size: 16px; }
.contact-detail svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.contact-detail a:hover { color: var(--orange); }

.form {
  background: var(--ink-2); border: 1px solid var(--teal-line); border-radius: 8px; padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form__title { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .1em; color: #fff; font-size: 22px; margin-bottom: 6px; }
.form__sub { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--teal-line); border-radius: 5px;
  padding: 13px 15px; color: #fff; font-family: inherit; font-size: 15px; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,.07); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFB84D' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { color: #111; }
/* audit scale */
.scale { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.scale input { position: absolute; opacity: 0; pointer-events: none; }
.scale label {
  display: flex; align-items: center; justify-content: center; padding: 12px 0; margin: 0;
  border: 1px solid var(--teal-line); border-radius: 5px; color: rgba(255,255,255,.8);
  font-family: "Oswald", sans-serif; font-size: 17px; letter-spacing: 0; cursor: pointer; transition: .25s var(--ease);
}
.scale label:hover { border-color: var(--orange); }
.scale input:checked + label { background: var(--orange); color: #1a1208; border-color: var(--orange); }
.scale-help { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; font-family: "Oswald", sans-serif; }
.form .btn { width: 100%; margin-top: 8px; }
.form .btn[disabled] { opacity: .6; pointer-events: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__error { font-size: 13.5px; color: #F2A28B; text-align: center; margin-top: 14px; min-height: 0; }
.form__error:empty { display: none; }
.form__note { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; margin-top: 16px; }
.form__success { display: none; text-align: center; padding: 20px 0; }
.form__success.show { display: block; }
.form__success .ico { width: 54px; height: 54px; margin: 0 auto 18px; color: var(--orange); }
.form__success h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.form__success p { color: rgba(255,255,255,.7); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A1622; color: rgba(255,255,255,.7); padding-block: clamp(56px, 7vw, 84px) 30px; border-top: 1px solid var(--teal-line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--teal-line); }
.footer__brand img { height: 40px; margin-bottom: 22px; }
.footer__brand p { font-size: 15.5px; max-width: 36ch; }
.footer h4 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: #fff; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .3s var(--ease); }
.footer ul a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer__bottom .made { letter-spacing: .04em; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero { position: relative; padding-top: 150px; padding-bottom: clamp(56px,7vw,86px); background: var(--ink); overflow: hidden; }
.page-hero__mark { position:absolute; right:-5%; bottom:-30%; width: 38%; opacity:.05; }
.page-hero h1 { font-size: clamp(40px, 6.5vw, 78px); color: #fff; letter-spacing: .015em; }
.page-hero .lead { color: rgba(255,255,255,.82); margin-top: 22px; }
/* Contractors page: the film section sits directly under the dark page hero, and
   both use var(--ink). Collapse the doubled padding into one tight seam and keep
   the hero watermark fully inside the hero so it no longer clips at the boundary. */
.page-hero:has(+ #film) { padding-bottom: clamp(28px,3.5vw,48px); }
.page-hero:has(+ #film) .page-hero__mark { bottom: 6%; right: -2%; width: 34%; }
.page-hero + #film { padding-top: clamp(20px,2.5vw,36px); }
.breadcrumb { font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.2em; font-size:12px; color:var(--orange); margin-bottom:24px; }
.breadcrumb a { color: rgba(255,255,255,.55); } .breadcrumb a:hover{color:#fff;}

.story { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items:center; }
.timeline { list-style:none; margin: 28px 0 0; padding:0; }
.timeline li { position:relative; padding: 0 0 28px 34px; border-left: 2px solid var(--sand); }
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{ content:""; position:absolute; left:-7px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--orange); }
.timeline .yr{ font-family:"Oswald",sans-serif; color:var(--orange-deep); font-weight:600; letter-spacing:.1em; font-size:14px; }
.timeline h3{ font-size:18px; color:var(--ink); margin:4px 0 6px; }
.timeline p{ font-size:15.5px; margin:0; }
/* Our Story: timeline as a card + full-width feature photo below */
.story__timeline{ background:#fff; border:1px solid var(--sand); border-radius:14px; padding: clamp(26px,3vw,38px); box-shadow: var(--shadow-md); }
.story__timeline .eyebrow{ margin-bottom:20px; }
.story__timeline .timeline{ margin-top:0; }
.story__feature{ margin-top: clamp(40px,5vw,68px); border-radius:12px; overflow:hidden; box-shadow: var(--shadow-lg); }
.story__feature picture{ display:block; width:100%; }
.story__feature img{ display:block; width:100%; aspect-ratio:16/9; object-fit:cover; object-position:center; }

.team-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:26px; max-width:720px; margin:0 auto; }
/* Founder spotlight */
.founder__role{ font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.14em; font-size:13px; color:var(--orange); margin:10px 0 0; }
.creds{ list-style:none; margin:20px 0 26px; padding:0; display:flex; flex-wrap:wrap; gap:10px; }
.creds li{ font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.07em; font-size:11.5px; color:var(--orange); border:1px solid var(--teal-line); border-radius:999px; padding:8px 14px; }
.on-dark .member__link{ color:rgba(255,255,255,.82); }
.on-dark .member__link:hover{ color:var(--orange); }
.member{ background:var(--cream); border:1px solid var(--sand); border-radius:8px; overflow:hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.member:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.member__photo{ aspect-ratio: 1/1; background: var(--paper); }
.member__photo img{ width:100%; height:100%; object-fit:cover; }
.member__body{ padding: 26px 26px 30px; }
.member__body h3{ font-size:23px; color:var(--ink); letter-spacing:.02em; }
.member__role{ font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.14em; font-size:12px; color:var(--orange-deep); margin:6px 0 16px; }
.member__body p{ font-size:15.5px; color:var(--charcoal); }
.member__link{ display:inline-flex; align-items:center; gap:8px; margin-top:16px; font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.1em; font-size:12px; color:var(--teal); }
.member__link svg{ width:16px;height:16px; }
.member__link:hover{ color:var(--orange-deep); }

.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.value{ padding: 30px 28px; border:1px solid var(--teal-line); border-radius:6px; }
.value__ico{ width:40px;height:40px;color:var(--orange); margin-bottom:18px; }
.value h3{ color:#fff; font-size:20px; margin-bottom:10px; letter-spacing:.03em; }
.value p{ font-size:15.5px; color:rgba(255,255,255,.76); margin:0; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* progressive enhancement: only hide when JS is active (html.js), so
   content is always visible if scripts are blocked or slow to load */
.js .reveal { opacity: 0; transform: translateY(30px); filter: blur(7px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.js .reveal.in, .reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1{ transition-delay:.09s; } .reveal.d2{ transition-delay:.18s; }
.reveal.d3{ transition-delay:.27s; } .reveal.d4{ transition-delay:.36s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1!important; transform:none!important; filter:none!important; transition:none; } html{scroll-behavior:auto;} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .stats__grid{ grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2){ border-right:0; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid var(--teal-line); }
  .process-grid{ grid-template-columns: repeat(2,1fr); row-gap:40px; }
  .aud-grid{ grid-template-columns: repeat(2,1fr); }
  .results-grid,.quotes-grid,.partner-grid{ grid-template-columns: 1fr; }
  .team-grid,.values-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 1024px){
  .nav__links, .nav__phone { display:none; }
  .nav__toggle{ display:block; }
  .nav.is-stuck, .nav{ }
  .nav__drawer{
    display:block; position:fixed; inset:0; z-index:99; background:rgba(8,19,32,.98);
    backdrop-filter: blur(8px); padding: 104px var(--gut) 40px; transform: translateX(100%);
    transition: transform .45s var(--ease); visibility:hidden; overflow-y:auto;
  }
  .nav__drawer.open{ transform:none; visibility:visible; }
  .nav__drawer ul{ list-style:none; margin:0; padding:0; display:grid; gap:2px; }
  .nav__drawer ul a{ display:block; font-family:"Oswald",sans-serif; text-transform:uppercase; letter-spacing:.1em; font-size:22px; color:#fff; padding:13px 0; border-bottom:1px solid var(--teal-line); }
  .nav__drawer .nav__subdrawer{ margin:2px 0 8px; padding-left:16px; border-left:2px solid var(--teal-line); gap:0; }
  .nav__drawer .nav__subdrawer a{ font-size:15px; letter-spacing:.08em; color:rgba(255,255,255,.72); padding:9px 0; border-bottom:0; }
  .nav__drawer .nav__subdrawer a:hover{ color:var(--orange); }
  .nav__drawer .btn{ margin-top:26px; width:100%; }
  .nav__drawer .dphone{ display:flex; align-items:center; gap:10px; color:var(--orange); margin-top:24px; font-family:"Oswald",sans-serif; font-size:20px; letter-spacing:.05em; }
  .nav__drawer .dphone svg{ width:18px; height:18px; flex:none; }
  body.nav-open{ overflow:hidden; }
  .nav__toggle.x span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav__toggle.x span:nth-child(2){ opacity:0; }
  .nav__toggle.x span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .split{ grid-template-columns:1fr; gap:40px; }
  .split--reverse .split__media{ order:0; }
  .split__frame::after{ inset:12px -12px -12px 12px; }
  .svc{ grid-template-columns: 42px 1fr; gap:18px; padding: 26px 2px; }
  .svc__arrow{ display:none; }
  .svc__idx{ font-size:26px; }
  .svc:hover{ padding-left:2px; background:none; }
  .contact-grid{ grid-template-columns:1fr; }
  .story{ grid-template-columns:1fr; }
  .footer__top{ grid-template-columns:1fr 1fr; gap:32px; }

}

/* On phones, drop the text below the image so faces stay fully clear */
@media (max-width: 700px){
  .hero{ padding-top: 84px; }
  .hero__card{ aspect-ratio: auto; border-radius: 16px; box-shadow: var(--shadow-md); }
  /* Keep the original wide hero frame; just crop in a little (less room) */
  .hero__img{ position: static; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; object-position: center; transform: scale(1.12); transform-origin: center; }
  .hero__overlay{ display: none; }
  .hero__content{ position: static; padding: 26px var(--gut) 4px; }
  .hero h1{ text-shadow: none; }
  .hero__sub{ text-shadow: none; color: rgba(255,255,255,.82); font-size: 15.5px; }
}
@media (max-width: 560px){
  .nav__cta{ display:none; }            /* CTA lives in the hamburger drawer on phones */
  .nav__toggle{ margin-left:auto; }
  .stats__grid{ grid-template-columns:1fr; }
  .stat{ border-right:0 !important; border-bottom:1px solid var(--teal-line); }
  .aud-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .field--row{ grid-template-columns:1fr; }
  .footer__top{ grid-template-columns:1fr; }
  .hero__actions{ flex-direction:column; align-items:stretch; }
  .hero__actions .btn{ width:100%; }
  .result__amounts{ flex-direction:column; gap:12px; }
}

/* ============================================================
   SCROLL MOTION  (progressive enhancement)
   ============================================================ */

/* slim gold page-progress bar (width driven by JS for cross-browser) */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 12px -2px rgba(255,184,77,.6);
}

/* section title: gold rule draws in when revealed */
.js .titled--rule.reveal .section-title::after { transform: scaleX(0); transform-origin: center; transition: transform .85s var(--ease) .25s; }
.js .titled--rule.reveal.in .section-title::after { transform: scaleX(1); }

/* process: each gold bar segment grows on reveal */
.js .step.reveal .step__bar::after { transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease) .15s; }
.js .step.reveal.in .step__bar::after { transform: scaleX(1); }

/* count-up numbers use tabular figures so width doesn't jitter while ticking */
.count { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* hero: image parallax + content lifts away as the hero scrolls past.
   Driven by JS (see main.js) so it works in every browser, not just Chromium. */
.hero__img, .hero__content { will-change: transform; }

/* reduced motion: strip the scroll-driven extras */
@media (prefers-reduced-motion: reduce) {
  .scrollbar { display: none; }
  .js .titled--rule.reveal .section-title::after,
  .js .step.reveal .step__bar::after { transform: none; transition: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__item:first-child { border-top: 1px solid var(--sand); }
.faq__q {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 22px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .03em;
  font-size: clamp(16px, 1.7vw, 21px); font-weight: 500; color: var(--ink);
  padding: 26px 4px; transition: color .3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--orange-deep); }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--orange-deep); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 4px 28px; max-width: 72ch; }
.faq__a p { color: var(--charcoal); font-size: 16.5px; line-height: 1.65; margin: 0; }
.faq__item[open] .faq__a { animation: faqOpen .4s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq__item[open] .faq__a { animation: none; } }

/* ============================================================
   RECOMPOSED SECTIONS — distinct layout archetypes (not a repeated grid)
   ============================================================ */

/* --- Process: connected node timeline --- */
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.flow::before { content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: var(--teal-line); z-index: 0; }
.flow__step { position: relative; z-index: 1; padding: 0 clamp(10px, 1.6vw, 22px); text-align: center; }
.flow__node {
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--orange); background: var(--ink);
  color: var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.flow__node svg { width: 25px; height: 25px; }
.flow__step:hover .flow__node { background: var(--orange); color: var(--ink); }
.flow__num { display: block; font-family: "Oswald", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.flow__step h3 { font-size: clamp(20px, 2.2vw, 26px); color: #fff; letter-spacing: .04em; margin-bottom: 10px; }
.flow__step p { font-size: 15.5px; color: rgba(255,255,255,.7); margin: 0 auto; max-width: 28ch; }

/* --- Who We Serve: asymmetric, sticky heading + editorial list --- */
.serve { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.serve__head { position: sticky; top: 112px; }
.serve__head .lead { margin-top: 22px; font-size: 17px; max-width: 34ch; }
.serve__item { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 2.5vw, 36px); align-items: start;
  padding: clamp(26px, 3vw, 38px) 0; border-top: 1px solid var(--sand); transition: padding-left .45s var(--ease); }
.serve__item:last-child { border-bottom: 1px solid var(--sand); }
.serve__item:hover { padding-left: 14px; }
.serve__ico { width: 40px; height: 40px; color: var(--teal); transition: color .45s var(--ease); }
.serve__item:hover .serve__ico { color: var(--orange-deep); }
.serve__item h3 { font-size: clamp(19px, 2.1vw, 25px); color: var(--ink); letter-spacing: .03em; margin-bottom: 8px; }
.serve__item p { font-size: 15px; color: var(--charcoal); margin: 0; max-width: 52ch; }

/* --- Results: one dominant feature + supporting, with before/after bars --- */
.recap__delta { font-family: "Oswald", sans-serif; font-weight: 600; color: var(--orange); line-height: .88; letter-spacing: .005em; }
.recap__delta small { display: block; font-family: "Oswald", sans-serif; font-weight: 400; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 12px; }
/* Feature: horizontal hero — oversized metric beside the before/after bars */
.recap__feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center;
  max-width: 1060px; margin: 0 auto; border-top: 2px solid var(--orange); padding-top: clamp(30px, 3.5vw, 48px); }
.recap__feature .recap__delta { font-size: clamp(56px, 8.5vw, 118px); }
.recap__lead p { font-size: 17px; color: rgba(255,255,255,.78); margin: 24px 0 0; max-width: 40ch; }
.recap__feature .bars { margin: 0; gap: 18px; }
.recap__feature .bar__val { font-size: 19px; }
.recap__feature .bar__track { height: 10px; }
/* Two supporting results in a row below — lean inline figures, no bars */
.recap__side { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 80px); margin-top: clamp(48px, 6vw, 88px); }
.recap__item { border-top: 1px solid var(--teal-line); padding-top: 26px; }
.recap__item .recap__delta { font-size: clamp(36px, 4.4vw, 54px); }
.recap__money { margin: 18px 0 0; display: flex; align-items: baseline; gap: 14px; font-family: "Oswald", sans-serif; }
.recap__money .from { font-size: clamp(20px, 2.3vw, 27px); color: rgba(255,255,255,.55); font-weight: 500; }
.recap__money .arrow { color: var(--orange); font-size: 20px; line-height: 1; }
.recap__money .to { font-size: clamp(25px, 2.7vw, 34px); color: var(--orange); font-weight: 600; }
.recap__item p { font-size: 14px; color: rgba(255,255,255,.66); margin: 16px 0 0; max-width: 52ch; }
.bars { margin: 24px 0 0; display: grid; gap: 16px; }
.bar__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.bar__label { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .16em; font-size: 10.5px; color: rgba(255,255,255,.5); }
.bar__val { font-family: "Oswald", sans-serif; font-weight: 500; font-size: 16px; color: #fff; }
.bar__val.to { color: var(--orange); }
.bar__track { height: 8px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar__fill { height: 100%; border-radius: 999px; transform-origin: left; transform: scaleX(var(--w, 1)); }
.bar__fill--before { background: rgba(255,255,255,.3); }
.bar__fill--after { background: linear-gradient(90deg, var(--orange-2), var(--orange)); }
.js .reveal .bar__fill { transform: scaleX(0); transition: transform 1.1s var(--ease) .25s; }
.js .reveal.in .bar__fill { transform: scaleX(var(--w, 1)); }

/* --- Testimonials: one oversized lead quote + supporting voices --- */
.voices { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(36px, 5vw, 84px); align-items: start; }
.voices__lead .mark { font-family: "Oswald", sans-serif; font-size: 88px; line-height: .5; color: var(--orange); }
.voices__lead blockquote { margin: 20px 0 0; }
.voices__lead blockquote p { font-family: "Oswald", sans-serif; font-weight: 300; text-transform: none;
  font-size: clamp(24px, 3.1vw, 41px); line-height: 1.24; letter-spacing: .004em; color: var(--ink); margin: 0; }
.voices__lead .by { margin-top: 30px; font-family: "Oswald", sans-serif; }
.voices__lead .by b { color: var(--ink); font-size: 18px; letter-spacing: .04em; display: block; }
.voices__lead .by span { color: var(--orange-deep); font-size: 13px; letter-spacing: .08em; }
.voices__item { padding: clamp(22px, 2.6vw, 30px) 0; border-top: 1px solid var(--sand); }
.voices__item:first-child { border-top: 0; padding-top: 6px; }
.voices__item p { font-size: 16.5px; color: var(--ink); line-height: 1.6; margin: 0 0 14px; }
.voices__item .by b { font-family: "Oswald", sans-serif; color: var(--ink); letter-spacing: .03em; }
.voices__item .by span { font-size: 13px; color: var(--teal-soft); margin-left: 8px; }
.voices__cta { margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(28px, 3.4vw, 40px); border-top: 1px solid var(--sand); display: flex; flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }

/* responsive for recomposed sections */
@media (max-width: 900px) {
  .serve { grid-template-columns: 1fr; gap: 30px; }
  .serve__head { position: static; }
  .voices { grid-template-columns: 1fr; gap: 40px; }
  .recap__feature { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .recap__side { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; }
  .flow::before { top: 0; bottom: 0; left: 27px; right: auto; width: 2px; height: auto; }
  .flow__step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; text-align: left; padding: 0 0 34px; }
  .flow__step:last-child { padding-bottom: 0; }
  .flow__node { margin: 0; }
  .flow__txt { padding-top: 2px; }
  .flow__step p { margin: 0; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal .bar__fill, .js .reveal.in .bar__fill { transform: scaleX(var(--w, 1)); transition: none; }
}

/* ============================================================
   PAGE COMPONENTS (case studies, services, pricing, resources, partners)
   ============================================================ */

/* --- generic two-button audience chooser banner --- */
.chooser { text-align: center; }
.chooser__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 28px; }
.choose-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  width: min(320px, 100%); padding: 30px 26px; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--teal-line);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.choose-card:hover { transform: translateY(-4px); border-color: var(--orange); background: rgba(255,184,77,.06); }
.choose-card .ico { width: 46px; height: 46px; color: var(--orange); }
.choose-card .ico svg { width: 100%; height: 100%; }
.choose-card h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 20px; margin: 0; }
.choose-card p { color: rgba(255,255,255,.74); font-size: 15.5px; margin: 0; }
.choose-card .tag { color: var(--orange); font-family: "Oswald", sans-serif; letter-spacing: .12em; font-size: 12px; text-transform: uppercase; margin-top: 4px; }

/* --- star rating --- */
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; color: var(--orange); fill: var(--orange); }

/* --- case study cards --- */
.cases { display: grid; gap: clamp(26px, 3.4vw, 40px); margin-top: clamp(40px, 5vw, 60px); }
.case {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 3vw, 48px); align-items: center;
  background: var(--ink-2); border: 1px solid var(--teal-line); border-radius: 20px;
  padding: clamp(26px, 3vw, 44px); box-shadow: var(--shadow-md);
}
.case:nth-child(even) .case__body { order: -1; }
.case__delta { font-family: "Oswald", sans-serif; font-weight: 700; color: var(--orange); font-size: clamp(40px, 6vw, 64px); line-height: 1; }
.case__delta small { display: block; font-size: 13px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-soft); margin-top: 8px; }
.case__money { display: flex; align-items: center; gap: 14px; margin: 18px 0; font-family: "Oswald", sans-serif; font-size: clamp(20px, 2.4vw, 28px); }
.case__money .from { color: var(--teal-soft); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.3); }
.case__money .arrow { color: var(--orange); }
.case__money .to { color: #fff; }
.case__desc { color: rgba(255,255,255,.8); line-height: 1.6; font-size: 16.5px; }
.case__review { background: rgba(255,255,255,.04); border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0; padding: 22px 24px; }
.case__review .stars { margin-bottom: 12px; }
.case__review blockquote { margin: 0; }
.case__review p { font-family: "Oswald", sans-serif; font-weight: 300; text-transform: none; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: #fff; margin: 0; }
.case__review .by { margin-top: 16px; font-family: "Oswald", sans-serif; }
.case__review .by b { color: #fff; font-size: 16px; letter-spacing: .03em; display: block; }
.case__review .by span { color: var(--orange); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }

/* --- pricing tiers --- */
.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 34px); margin-top: clamp(40px, 5vw, 60px); align-items: start; }
.tier { background: var(--cream); border: 1px solid var(--sand); border-radius: 20px; padding: clamp(28px, 3vw, 44px); box-shadow: var(--shadow-md); position: relative; display: flex; flex-direction: column; }
.tier--feature { background: var(--ink); border-color: var(--ink); color: #fff; }
.tier__flag { position: absolute; top: 22px; right: 22px; font-family: "Oswald", sans-serif; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--orange); padding: 6px 12px; border-radius: 999px; }
.tier__name { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); margin: 0; }
.tier--feature .tier__name { color: #fff; }
.tier__tagline { color: var(--charcoal); font-size: 15.5px; margin: 6px 0 0; }
.tier--feature .tier__tagline { color: rgba(255,255,255,.72); }
.tier__price { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(34px, 4.4vw, 48px); color: var(--ink); margin: 22px 0 4px; line-height: 1; }
.tier--feature .tier__price { color: var(--orange); }
.tier__price small { display: block; font-size: 13px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-soft); margin-top: 8px; }
.tier__list { list-style: none; margin: 24px 0 0; padding: 24px 0 0; border-top: 1px solid var(--sand); display: grid; gap: 13px; }
.tier--feature .tier__list { border-top-color: var(--teal-line); }
.tier__list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: 16px; color: var(--charcoal); line-height: 1.55; }
.tier--feature .tier__list li { color: rgba(255,255,255,.86); }
.tier__list svg { width: 18px; height: 18px; color: var(--orange); margin-top: 2px; }
.tier .btn { margin-top: 28px; }
.tier__note { margin: 14px 0 0; font-size: 13px; font-style: italic; color: var(--teal-soft); }
.tier--feature .tier__note { color: rgba(255,255,255,.72); }
.tier__foot { margin-top: auto; }

/* --- tools we use grid --- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(36px, 4vw, 52px); }
@media (max-width: 860px){ .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .tools-grid { grid-template-columns: 1fr; } }
.tool { background: rgba(255,255,255,.04); border: 1px solid var(--teal-line); border-radius: 16px; padding: 26px; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.tool:hover { transform: translateY(-4px); border-color: var(--orange); }
.tool__ico { width: 40px; height: 40px; color: var(--orange); margin-bottom: 14px; }
.tool__ico svg { width: 100%; height: 100%; }
.tool h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 18px; margin: 0 0 8px; }
.tool p { color: rgba(255,255,255,.74); font-size: 15.5px; line-height: 1.55; margin: 0; }

/* --- resource / article cards --- */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.6vw, 30px); margin-top: clamp(40px, 5vw, 56px); }
.res-card { position: relative; background: var(--cream); border: 1px solid var(--sand); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform .35s var(--ease); }
.res-card:hover { transform: translateY(-5px); }
/* whole-card click target: stretch the card's link over the entire card */
.res-card:has(a.res-card__link) { cursor: pointer; }
.res-card a.res-card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.res-card__media { aspect-ratio: 16/9; background: var(--ink-2); position: relative; overflow: hidden; }
.res-card__media img { width: 100%; height: 100%; object-fit: cover; }
.res-card__media .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--teal-soft); }
.res-card__media .ph svg { width: 54px; height: 54px; }
.res-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.res-card__kind { font-family: "Oswald", sans-serif; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-deep); }
.res-card__body h3 { font-family: "Oswald", sans-serif; color: var(--ink); font-size: 20px; line-height: 1.25; margin: 10px 0 10px; }
.res-card__body p { color: var(--charcoal); font-size: 15.5px; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.res-card__link { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.res-card__link svg { width: 16px; height: 16px; }
.res-card.is-soon { opacity: .92; }
.res-card.is-soon .res-card__link { color: var(--teal-soft); }
.res-card--feature { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), var(--shadow-md); }
.res-card--feature .res-card__media { background: var(--ink); }
.res-card--feature .res-card__media .ph { color: var(--orange); }
.res-card--feature .res-card__link { color: var(--orange-deep); }

/* --- FAQ accordion --- */
.faq { max-width: 820px; margin: clamp(34px, 4vw, 48px) auto 0; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__item summary { cursor: pointer; list-style: none; padding: 22px 46px 22px 0; position: relative; font-family: "Oswald", sans-serif; font-size: 19px; line-height: 1.35; color: var(--ink); letter-spacing: .01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 6px; top: 22px; font-size: 26px; line-height: 1; font-weight: 300; color: var(--orange-deep); transition: transform .25s var(--ease); }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { color: var(--charcoal); font-size: 16px; line-height: 1.7; margin: 0 0 24px; max-width: 72ch; }

/* --- video embed --- */
.embed { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--teal-line); margin-top: clamp(34px, 4vw, 48px); background: var(--ink-2); }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--ink); cursor: pointer; }
.embed__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--teal-soft); text-align: center; padding: 20px; }
.embed__ph svg { width: 64px; height: 64px; color: var(--orange); }

/* --- train your team callout --- */
.callout { background: var(--ink-2); border: 1px solid var(--teal-line); border-radius: 20px; padding: clamp(30px, 4vw, 56px); text-align: center; box-shadow: var(--shadow-md); }
.callout h2 { color: #fff; }
.callout .lead { color: rgba(255,255,255,.8); max-width: 640px; margin-inline: auto; margin-top: 20px; }
.callout .hero__actions { justify-content: center; margin-top: 30px; }

/* --- copyable email / script template --- */
.emailcard { background: var(--cream); border: 1px solid var(--sand); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; max-width: 760px; margin: clamp(36px, 5vw, 52px) auto 0; }
.emailcard__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 20px; background: var(--ink); }
.emailcard__bar > span { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: rgba(255,255,255,.78); }
.copybtn { display: inline-flex; align-items: center; gap: 8px; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--ink); background: var(--orange); border: 0; border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease); }
.copybtn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.copybtn svg { width: 15px; height: 15px; }
.copybtn.is-copied { background: var(--teal); color: #fff; }
.emailcard__body { padding: clamp(26px, 4vw, 40px); color: var(--charcoal); }
.emailcard__body .subject { font-family: "Oswald", sans-serif; color: var(--ink); font-size: 19px; letter-spacing: .01em; margin: 0 0 22px; padding-bottom: 16px; border-bottom: 1px solid var(--sand); }
.emailcard__body p { font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.emailcard__body ol { margin: 0 0 16px; padding-left: 20px; }
.emailcard__body li { font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.emailcard__body .sig { margin-top: 24px; }
.tok { color: var(--orange-deep); font-weight: 600; white-space: nowrap; }
.emailcard__tip { max-width: 760px; margin: 18px auto 0; font-size: 14px; color: var(--charcoal); display: flex; gap: 10px; align-items: flex-start; }
.emailcard__tip svg { width: 18px; height: 18px; color: var(--orange-deep); flex: none; margin-top: 2px; }

/* --- fillable document builder form (light section) --- */
.docform { background: var(--cream); border: 1px solid var(--sand); border-radius: 18px; box-shadow: var(--shadow-lg); padding: clamp(26px, 4vw, 40px); max-width: 760px; margin: clamp(34px, 4vw, 48px) auto 0; }
.docform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.docform__grid .full { grid-column: 1 / -1; }
.docfield { display: flex; flex-direction: column; }
.docfield label { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--ink); margin-bottom: 7px; }
.docfield label .req { color: var(--orange-deep); }
.docfield input { width: 100%; padding: 12px 14px; font-family: "Roboto", sans-serif; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--sand); border-radius: 10px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.docfield input::placeholder { color: #9a9a93; }
.docfield input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,184,77,.22); }
.docform__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.docform__err { color: #B4441F; font-size: 13.5px; margin-top: 12px; }
.docform__err:empty { display: none; }
.docform__hint { font-size: 12.5px; line-height: 1.6; color: var(--charcoal); margin-top: 16px; display: flex; gap: 9px; align-items: flex-start; }
.docform__hint svg { width: 17px; height: 17px; color: var(--orange-deep); flex: none; margin-top: 2px; }
.docform__legend { grid-column: 1 / -1; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; color: var(--orange-deep); margin: 8px 0 -4px; padding-top: 16px; border-top: 1px solid var(--sand); }
.docform__legend:first-child { padding-top: 0; border-top: 0; margin: 0 0 -4px; }
@media (max-width: 620px){ .docform__grid { grid-template-columns: 1fr; } }

@media (max-width: 820px){
  .case { grid-template-columns: 1fr; gap: 26px; }
  .case:nth-child(even) .case__body { order: 0; }
  .tiers { grid-template-columns: 1fr; }
}

/* ============================================================
   SPLIT / STORY MEDIA — intentional photo panel (no dead-space float,
   no white frame, no vertical crop of people). A fixed 5/6 portrait box
   crops the sides, not the heads, and stays tall enough to fill the column.
   ============================================================ */
@media (min-width: 1025px){
  .split { align-items: center; }
  .split__frame.split__media picture { display: block; width: 100%; }
  .split__frame.split__media img { width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: cover; object-position: center; }

  /* commit keeps its tall portrait infographic at its own ratio */
  .commit .split__frame.split__media img { aspect-ratio: 1003 / 1568; }

  /* About "Our Story": copy + timeline card, top-aligned */
  .story { align-items: start; }
}

/* ============================================================
   AUDIENCE FUNNELS (/owner, /contractor) — minimal-nav landing pages
   ============================================================ */
.serve__item:hover h3 { color: var(--orange-deep); }
.nav--funnel .nav__cta { display: flex !important; }
@media (max-width: 560px){ .nav--funnel .nav__phone { display: none; } }

.funnel-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden;
  padding: clamp(128px, 20vh, 196px) 0 clamp(70px, 10vw, 112px); text-align: center; }
.funnel-hero .wrap { max-width: 900px; position: relative; z-index: 1; }
.funnel-hero h1 { color: #fff; font-size: clamp(36px, 6vw, 72px); letter-spacing: .01em; }
.funnel-hero h1 .gold { color: var(--orange); }
.funnel-hero .lead { color: rgba(255,255,255,.85); margin: 24px auto 0; text-align: center; }
.funnel-hero .hero__actions { justify-content: center; margin-top: 36px; }
.funnel-hero__trust { margin-top: 30px; color: rgba(255,255,255,.58); font-family: "Oswald", sans-serif;
  letter-spacing: .1em; font-size: 12.5px; text-transform: uppercase; }
.funnel-hero__mark { position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 560px; max-width: 62%; opacity: .05; pointer-events: none; z-index: 0; }
