/* ============================================================
   ARAKEL LAW v2 — photography-led, Swiss/agency direction
   Light gray canvas · inset rounded cards · grotesque sans
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --canvas:   #f1ede6;
  --white:    #f8f5ef;
  --ink:      #16130e;
  --navy:     #16130e;
  --navy-2:   #211c15;
  --surface:  #f6f2ea;
  --text:     #16130e;
  --text-2:   #645e54;
  --text-3:   #948d80;
  --on-dark:  #f1ede6;
  --on-dark-2:#c2bcb0;
  --on-dark-3:#8c867a;
  --line:     #ddd6c9;
  --line-dark: rgba(241,237,230,.15);
  --tint:     #e6e0d4;
  --accent:   #16130e;
  --accent-deep: #000000;
  --accent-soft: rgba(241,237,230,.28);
  --gold:     #16130e;

  --font: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --sect: clamp(72px, 9vw, 130px);
  --r: 20px;
  --r-sm: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
::selection { background: var(--ink); color: #fff; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--canvas);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; letter-spacing: -.02em; line-height: 1.08; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sect); }

/* ---------- Section label pill ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 14px; background: transparent; white-space: nowrap;
}
.tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.on-dark .tag { background: transparent; border-color: var(--line-dark); color: var(--on-dark-2); }
.on-dark .tag::before { background: var(--on-dark); }

/* ---------- Headlines ---------- */
.h-xl { font-size: clamp(38px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.03em; text-wrap: balance; }
.h-lg { font-size: clamp(30px, 3.6vw, 52px); letter-spacing: -.025em; text-wrap: balance; }
.h-md { font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -.02em; }
.sub { font-size: 15px; color: var(--text-2); max-width: 44ch; text-wrap: pretty; }
.on-dark .sub { color: var(--on-dark-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 600; letter-spacing: 0;
  padding: 13px 26px; border-radius: 100px;
  border: 1px solid transparent;
  transition: all .3s var(--ease); white-space: nowrap;
}
.btn .arr { font-size: 14px; display: inline-flex; transition: transform .3s var(--ease); }
.arr svg { width: 15px; height: 15px; display: block; }
.btn:hover .arr { transform: translate(2px,-2px); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-accent { background: var(--ink); color: var(--on-dark); }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -12px rgba(0,0,0,.4); }
.btn-line { border-color: var(--line); color: var(--text); background: transparent; }
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.on-dark .btn-line { border-color: rgba(255,255,255,.32); color: #fff; }
.on-dark .btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- HERO (inset rounded photo card) ---------- */
.hero-shell { padding: 14px 14px 0; }
.hero-card {
  position: relative; border-radius: var(--r); overflow: hidden;
  background: var(--navy); color: var(--on-dark);
  min-height: min(92vh, 860px);
  display: flex; flex-direction: column;
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo image-slot { width: 100%; height: 100%; border-radius: 0; outline: none; }
/* Expanding 5-panel hero gallery */
.hero-gallery { position: absolute; inset: 0; display: flex; gap: 3px; z-index: 0; }
.hg-panel { position: relative; flex: 1 1 0%; min-width: 0; overflow: hidden;
  background-size: cover; background-position: center; background-color: var(--navy);
  transition: flex-grow .55s var(--ease), filter .55s var(--ease); filter: saturate(.96); }
.hg-lead { flex-grow: 3.6; }
.hg-panel:hover { flex-grow: 2.2; filter: saturate(1.06); }
.hg-lead:hover { flex-grow: 3.4; }
/* Auto-cycling active panel (driven by JS) — same expand as hover */
.hero-gallery.auto .hg-panel { flex-grow: 1; filter: saturate(.96); }
.hero-gallery.auto .hg-panel.hg-auto { flex-grow: 3.4; filter: saturate(1.06); }
.hg-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(241,237,230,.05); transition: opacity .4s; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(22,19,14,.42) 0%, rgba(22,19,14,.28) 42%, rgba(22,19,14,.58) 100%),
    radial-gradient(ellipse 80% 70% at 50% 46%, rgba(22,19,14,.12), rgba(22,19,14,.55) 100%);
}

/* nav inside hero card */
.nav {
  position: fixed; top: 18px; left: calc(14px + clamp(20px, 3.5vw, 48px)); right: calc(14px + clamp(20px, 3.5vw, 48px)); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px 9px clamp(20px, 2.4vw, 28px);
  border-radius: 100px;
  background: rgba(20,17,12,.30);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 22px -14px rgba(0,0,0,.4);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
/* adaptive state once scrolled off the dark hero (over light sections) */
.nav.scrolled {
  background: rgba(248,245,239,.86) !important;
  border-color: rgba(22,19,14,.12);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,.34);
}
.nav.scrolled .brand { color: var(--ink); }
.nav.scrolled .nav-menu a { color: var(--text-2); }
.nav.scrolled .nav-menu a:hover { color: var(--ink); background: rgba(22,19,14,.06); }
.nav.scrolled .nav-menu a.active { color: var(--ink); background: rgba(22,19,14,.09); }
.nav.scrolled .lang-toggle { border-color: rgba(22,19,14,.22); }
.nav.scrolled .lang-toggle button { color: rgba(22,19,14,.5); }
.nav.scrolled .lang-toggle button.active { background: var(--ink); color: #fff; }
.nav.scrolled .btn-light { background: var(--ink); color: var(--on-dark); }
.nav.scrolled .burger span { background: var(--ink); }
.brand { font-size: 17px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; display: inline-flex; align-items: center; }
/* Logo wordmark (masked SVG → recolors via currentColor) */
.brand-logo {
  display: block; height: 22px; width: 175px;
  background-color: currentColor;
  -webkit-mask: url("images/logo-mark.svg") no-repeat center / contain;
  mask: url("images/logo-mark.svg") no-repeat center / contain;
}
.footer .brand-logo { height: 30px; width: 238px; }
.nav .brand { color: #fff; }
.nav.scrolled .brand { color: var(--ink); }
.nav-menu { display: flex; gap: 2px; }
.nav-menu a {
  font-size: 14px; font-weight: 500; color: var(--on-dark);
  padding: 8px 12px; border-radius: 100px; transition: all .25s; white-space: nowrap;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-menu a.active { color: #fff; background: rgba(255,255,255,.14); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap; letter-spacing: .01em; }
.nav-phone:hover { color: #fff; opacity: .8; }
.nav.scrolled .nav-phone { color: var(--ink); }
.lang-toggle {
  display: inline-flex; border: 1px solid rgba(255,255,255,.28); border-radius: 100px; overflow: hidden;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.lang-toggle button { padding: 7px 12px; color: rgba(255,255,255,.55); transition: all .25s; }
.lang-toggle button.active { background: #fff; color: var(--ink); }
.nav .btn { padding: 13px 26px; font-size: 15px; font-weight: 700; box-shadow: 0 8px 22px -10px rgba(0,0,0,.5); }
.nav .btn.btn-light { animation: navCtaGlow 3s var(--ease) infinite; }
@keyframes navCtaGlow { 0%,100% { box-shadow: 0 8px 22px -10px rgba(0,0,0,.5); } 50% { box-shadow: 0 8px 30px -8px rgba(248,245,239,.55); } }

/* ---------- Persistent floating consultation CTA ---------- */
.float-cta {
  position: fixed; right: clamp(16px, 2.5vw, 32px); bottom: clamp(16px, 2.5vw, 32px); z-index: 90;
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--on-dark); text-decoration: none;
  padding: 16px 24px; border-radius: 100px; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,.55); white-space: nowrap;
  transform: translateY(0); opacity: 1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  animation: floatBob 4s ease-in-out infinite;
}
.float-cta:hover { background: #000; transform: translateY(-3px); box-shadow: 0 24px 54px -14px rgba(0,0,0,.65); }
/* always legible on any background: dark fill pops on light, cream ring + shadow pops on dark */
.float-cta { border: 1px solid rgba(241,237,230,.32); }
.float-cta .fc-ico { position: relative; width: 22px; height: 22px; flex: none; display: grid; place-items: center; }
.float-cta .fc-ico svg { width: 22px; height: 22px; display: block; }
/* pulsing ring around the icon */
.float-cta .fc-ico::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid var(--on-dark); opacity: 0; animation: fcPulse 2.2s var(--ease) infinite;
}
@keyframes fcPulse { 0% { transform: scale(.7); opacity: .7; } 70%,100% { transform: scale(1.5); opacity: 0; } }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.float-cta.hide { transform: translateY(140%); opacity: 0; pointer-events: none; }
.float-cta .fc-label-sm { display: none; }
@media (max-width: 600px) {
  .float-cta { right: 12px; left: 12px; bottom: 12px; justify-content: center; padding: 16px 20px; font-size: 16px; }
  .hg-panel:nth-child(3) { display: none; }
  .hg-gallery { gap: 2px; }
}
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 6; }
.burger span { width: 22px; height: 2px; background: #fff; }

/* hero content */
.hero-body {
  position: relative; z-index: 2; margin-top: auto;
  padding: 0 clamp(20px, 3.5vw, 48px) clamp(28px, 4vw, 52px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero-copy { max-width: 640px; }
/* Centered hero variant */
.hero-body.hero-center { flex-direction: column; align-items: center; justify-content: center; text-align: center; margin-top: 0; flex: 1; padding-top: clamp(80px, 12vh, 130px); }
.hero-center .hero-copy { max-width: 1000px; }
.hero-center h1 { color: #fff; }
.hero-center .hero-tagline { display: inline-flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 30px); max-width: none; margin: 22px 0 0; font-size: clamp(18px, 1.9vw, 26px); color: var(--on-dark); font-weight: 400; }
.hero-center .col-orn { display: inline-flex; opacity: .85; }
.hero-center .col-orn img { width: clamp(34px, 3vw, 46px); height: auto; }
.hero-center .hero-cta { justify-content: center; margin-top: clamp(28px, 3.4vw, 40px); }
.hero-center .hero-aside { position: absolute; right: clamp(20px, 3.5vw, 48px); bottom: clamp(24px, 3.4vw, 44px); }
.hero-copy .tag { margin-bottom: 22px; }
.hero-copy h1 { color: #fff; }
.hero-copy .sub { margin: 20px 0 28px; max-width: 40ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-aside {
  flex: none; display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  font-size: 13px; color: var(--on-dark-2); text-align: right;
}
.hero-aside .es {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 8px 16px;
  font-weight: 600; color: #fff; font-size: 13px;
}
.hero-aside .es::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }

/* ---------- Stats band (dark "ledger") ---------- */
.stats-shell { padding: 14px; }
.stats-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-dark); border-radius: var(--r);
  padding: clamp(34px, 4vw, 56px) clamp(24px, 3.5vw, 52px);
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 3.5vw, 48px);
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(58% 130% at 10% 18%, rgba(241,237,230,.10), transparent 56%);
  animation: heroGlowDrift 18s ease-in-out infinite;
}
html[data-motion="calm"] .stats-band::before { animation: none; }
/* cursor spotlight — soft illumination that follows the pointer */
.stats-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(241,237,230,.16), transparent 72%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.stats-band.cursor-on::after { opacity: 1; }
@media (min-width: 880px) {
  .stats-band { grid-template-columns: minmax(220px, .95fr) 2fr; align-items: center; column-gap: clamp(40px, 5vw, 80px); }
}
.stats-intro { position: relative; z-index: 1; }
.stats-intro .eyebrow-line { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-3); margin-bottom: 16px; }
.stats-intro .eyebrow-line::before { content: ""; width: 26px; height: 1px; background: var(--on-dark-3); }
.stats-intro .t { font-size: clamp(21px, 2.1vw, 28px); font-weight: 600; color: #fff; letter-spacing: -.02em; line-height: 1.18; }
.stats-intro .s { font-size: 14px; color: var(--on-dark-3); margin-top: 8px; }

.stats-row { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 44px); }
.stat { position: relative; padding-top: 20px; min-width: 0; border-left: none; transition: transform .4s var(--ease); }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--line-dark); }
.stat::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--on-dark); transform: scaleX(0); transform-origin: 0 50%; transition: transform 1s var(--ease); }
.stat.in::after { transform: scaleX(1); }
.stat:nth-child(2)::after { transition-delay: .14s; }
.stat:nth-child(3)::after { transition-delay: .28s; }
.stat:hover { transform: translateY(-4px); }
.stat:hover::after { background: #fff; }
.stat .num { font-size: clamp(40px, 4.2vw, 62px); font-weight: 600; letter-spacing: -.035em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 1px; }
.stat .num .u { color: var(--on-dark-2); font-weight: 500; letter-spacing: -.02em; }
.stat .lbl { font-size: 12px; color: var(--on-dark-3); margin-top: 14px; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Press / logo strip ---------- */
.press { padding-block: clamp(40px, 5vw, 64px); }
.press-row { display: flex; align-items: center; justify-content: space-between; gap: 28px 48px; flex-wrap: wrap; }
.press-label { font-size: 13px; color: var(--text-3); flex: none; }
.press-logos { display: flex; align-items: center; gap: clamp(28px, 4.5vw, 64px); flex-wrap: wrap; }
.press-logo { font-size: 17px; font-weight: 700; letter-spacing: -.01em; color: var(--text-3); white-space: nowrap; transition: color .25s; }
.press-logo:hover { color: var(--accent); }

/* ---------- About statement ---------- */
.about { background: var(--surface); border-radius: var(--r); margin-inline: 14px; }
.about-grid { display: grid; grid-template-columns: 200px 1fr; gap: 32px; }
.about-state {
  font-size: clamp(22px, 2.4vw, 34px); font-weight: 500; letter-spacing: -.025em; line-height: 1.22;
  max-width: 40em; text-wrap: balance;
}
.about-state .dim { color: var(--text-3); }
.about-photos { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; margin-top: clamp(36px, 5vw, 64px); }
.about-photos image-slot { width: 100%; height: clamp(180px, 24vw, 320px); }
.about-foot { display: grid; grid-template-columns: 200px 1fr; gap: 32px; margin-top: clamp(32px, 4vw, 52px); }
.about-foot p { margin: 0; font-size: 15px; color: var(--text-2); max-width: 60ch; }

/* ---------- Practice areas (accordion) ---------- */
.pa-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.pa-side { position: sticky; top: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.pa-side h2 { max-width: 9em; }
.pa-side p { font-size: 14px; color: var(--text-2); margin: 0; max-width: 38ch; }
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 22px;
  width: 100%; text-align: left; padding: 26px 0;
}
.acc-circle {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 20px; font-weight: 400; color: var(--text);
  transition: all .3s var(--ease); position: relative;
  background: transparent;
}
.acc-circle::before, .acc-circle::after {
  content: ""; position: absolute; background: currentColor; transition: transform .3s var(--ease);
}
.acc-circle::before { width: 14px; height: 1.5px; }
.acc-circle::after { width: 1.5px; height: 14px; }
.acc-item.open .acc-circle::after { transform: scaleY(0); }
.acc-item.open .acc-circle { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.acc-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 500; letter-spacing: -.025em; transition: color .25s; }
.acc-head:hover .acc-title { color: var(--text-2); }
.acc-head:hover .acc-circle { border-color: var(--ink); color: var(--ink); }
.acc-hint { font-size: 14px; color: var(--text-3); max-width: 26ch; text-align: left; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; padding: 4px 0 32px 74px; }
.acc-content image-slot { width: 100%; height: clamp(180px, 20vw, 260px); }
.acc-content p { margin: 0; font-size: 15px; color: var(--text-2); max-width: 52ch; }
.acc-content .acc-cta { margin-top: 18px; }

/* ---------- Standards (numbered rows) ---------- */
.standards { background: var(--surface); border-radius: var(--r); margin-inline: 14px; }
.std-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(36px, 5vw, 56px); flex-wrap: wrap; }
.std-rows { border-top: 1px solid var(--line); }
.std-row {
  display: grid; grid-template-columns: 80px 1fr 320px; align-items: center; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.std-row .n { font-size: 13px; color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
.std-row h3 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; letter-spacing: -.02em; }
.std-row p { margin: 0; font-size: 14px; color: var(--text-2); }

/* ---------- Process (dark columns) ---------- */
.process-shell { padding: 14px; }
.process { position: relative; overflow: hidden; background: var(--navy); color: var(--on-dark); border-radius: var(--r); padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 56px); }
/* drifting ambient glow + cursor spotlight (matches stats band) */
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(58% 130% at 12% 14%, rgba(241,237,230,.10), transparent 56%);
  animation: heroGlowDrift 18s ease-in-out infinite;
}
html[data-motion="calm"] .process::before { animation: none; }
.process::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 0%), rgba(241,237,230,.15), transparent 72%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.process.cursor-on::after { opacity: 1; }
.proc-head, .proc-cols, .flow, .hflow, .bproc { position: relative; z-index: 1; }
.proc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px, 5vw, 64px); flex-wrap: wrap; }
.proc-head h2 { color: #fff; max-width: 17em; }
.proc-cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.proc-col { border-left: 1px solid var(--line-dark); padding: 4px clamp(18px, 2.5vw, 32px) 8px; display: flex; flex-direction: column; gap: 20px; min-height: 300px; }
.proc-num {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent-soft);
  display: grid; place-items: center; font-size: 13px; font-weight: 600; color: var(--on-dark);
}
.proc-col h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; color: #fff; max-width: 10em; }
.proc-col p { margin: 0; font-size: 14px; color: var(--on-dark-2); max-width: 36ch; }
.proc-col image-slot { width: 100%; height: 170px; margin-top: auto; }

/* ---------- Process — alternating photo flow ---------- */
.flow { position: relative; display: flex; flex-direction: column; gap: clamp(36px, 5vw, 72px); }
.flow::before { content: ""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 1px; background: var(--line-dark); transform: translateX(-.5px); }
.flow-step { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.flow-step:nth-child(even) .flow-media { order: 2; }
.flow-media { position: relative; }
.flow-media image-slot { width: 100%; height: clamp(230px, 27vw, 360px); border-radius: var(--r-sm); }
.flow-node { position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--on-dark); border: 4px solid var(--navy); transform: translate(-50%,-50%); z-index: 2; }
.flow-copy { position: relative; padding: 0 clamp(0px, 1vw, 14px); }
.flow-index { display: block; font-size: clamp(60px, 8vw, 124px); font-weight: 600; line-height: .82; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1.3px var(--on-dark-3); margin-bottom: clamp(14px, 1.6vw, 22px); }
.flow-step:nth-child(even) .flow-copy { text-align: right; justify-self: end; }
.flow-step:nth-child(even) .flow-copy h3, .flow-step:nth-child(even) .flow-copy p { margin-left: auto; }
.flow-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-3); display: block; margin-bottom: 12px; }
.flow-copy h3 { font-size: clamp(26px, 2.9vw, 42px); font-weight: 500; letter-spacing: -.025em; color: var(--on-dark); margin-bottom: 14px; max-width: 13em; }
.flow-copy p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--on-dark-2); max-width: 42ch; }

/* ---------- Process — HORIZONTAL timeline w/ icon representations ---------- */
.hflow { position: relative; margin-top: clamp(20px, 3vw, 36px); }
.hflow-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 64px); }
/* connector line spanning the three icon centers (1/6 … 5/6) */
.hflow::before { content: ""; position: absolute; top: 41px; left: 16.66%; right: 16.66%; height: 2px;
  background: var(--line-dark); transform: scaleX(0); transform-origin: left center;
  transition: transform 1.1s var(--ease) .15s; z-index: 0; }
.hflow.in::before { transform: scaleX(1); }
.hstep { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; z-index: 1; }
.hicon-wrap { position: relative; }
.hicon { width: 84px; height: 84px; border-radius: 50%; border: 1px solid var(--line-dark);
  background: var(--navy-2); display: grid; place-items: center; color: var(--on-dark);
  transition: transform .5s var(--ease), background .4s var(--ease), border-color .4s var(--ease); }
.hicon svg { width: 40px; height: 40px; }
.hstep:hover .hicon { transform: translateY(-4px); background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.hstep-badge { position: absolute; top: -6px; right: -6px; min-width: 24px; height: 24px; padding: 0 6px;
  border-radius: 100px; background: var(--on-dark); color: var(--ink); font-size: 12px; font-weight: 700;
  display: grid; place-items: center; border: 3px solid var(--navy); }
.hstep-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-3); white-space: nowrap; }
.hstep h3 { font-size: clamp(20px, 1.9vw, 26px); font-weight: 500; letter-spacing: -.02em; color: var(--on-dark); max-width: 12em; }
.hstep p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--on-dark-2); max-width: 34ch; }
/* icon draw-in: stroke dashes animate when step reveals */
.hicon svg [data-draw] { stroke-dasharray: 240; stroke-dashoffset: 240; }
.hstep.in .hicon svg [data-draw] { animation: drawStroke 1.1s var(--ease) forwards; }
.hstep.in .hicon svg [data-draw].dl1 { animation-delay: .25s; }
.hstep.in .hicon svg [data-draw].dl2 { animation-delay: .45s; }
.hstep.in .hicon { animation: iconPop .55s var(--ease) both; }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes iconPop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.06); } 100% { transform: scale(1); opacity: 1; } }
/* subtle pulse ring on each icon */
.hicon-wrap::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--on-dark); opacity: 0; transform: scale(1); }
.hstep.in .hicon-wrap::after { animation: pulseRing 2.6s var(--ease) infinite; }
.hstep.in:nth-child(2) .hicon-wrap::after { animation-delay: .5s; }
.hstep.in:nth-child(3) .hicon-wrap::after { animation-delay: 1s; }
@keyframes pulseRing { 0% { opacity: .35; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.5); } }

/* ---------- Process — BENTO tiles w/ animated illustrations (minimal) ---------- */
.bproc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(24px, 3vw, 48px); }
.bptile { position: relative; border-radius: var(--r-sm); background: transparent; border: 1px solid var(--line-dark);
  padding: clamp(24px, 2.4vw, 36px); display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 32px);
  transition: border-color .45s var(--ease), transform .45s var(--ease); }
.bptile:hover { border-color: var(--on-dark-3); transform: translateY(-4px); }
.bp-illus { height: clamp(88px, 9vw, 116px); display: flex; align-items: center; justify-content: flex-start; }
.bp-illus svg { width: auto; height: 100%; overflow: visible; color: var(--on-dark-2); }
.bp-illus svg path, .bp-illus svg circle { stroke-width: 1.1px; vector-effect: non-scaling-stroke; }
.bp-body { display: flex; flex-direction: column; gap: 10px; }
.bp-top { display: flex; align-items: center; gap: 9px; }
.bp-badge { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--on-dark); font-variant-numeric: tabular-nums; }
.bp-top .sep { width: 14px; height: 1px; background: var(--on-dark-3); }
.bp-eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-3); white-space: nowrap; }
.bptile h3 { font-size: clamp(19px, 1.8vw, 24px); font-weight: 500; letter-spacing: -.02em; color: var(--on-dark); }
.bptile p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--on-dark-2); max-width: 34ch; }

/* illustration draw-in when tile reveals */
.bp-illus [data-draw] { stroke-dasharray: 240; stroke-dashoffset: 240; }
.bptile.in .bp-illus [data-draw] { animation: drawStroke 1.3s var(--ease) forwards; }
.bptile.in .bp-illus [data-draw].dl1 { animation-delay: .3s; }
.bptile.in .bp-illus [data-draw].dl2 { animation-delay: .55s; }
/* subtle looping motion (kept gentle) */
.bptile.in .il-wave { animation: waveOut 3s var(--ease) infinite; transform-box: fill-box; transform-origin: 0% 100%; opacity: 0; }
.bptile.in .il-wave.w2 { animation-delay: .6s; }
.bptile.in .il-wave.w3 { animation-delay: 1.2s; }
@keyframes waveOut { 0% { opacity: 0; transform: scale(.6); } 35% { opacity: .8; } 100% { opacity: 0; transform: scale(1.15); } }
.bptile.in .il-lens { animation: scan 4s var(--ease) infinite; }
@keyframes scan { 0%,100% { transform: translate(0,0); } 50% { transform: translate(7px,4px); } }
.bptile.in .il-beam { animation: tip 4.4s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes tip { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

/* ---------- Testimonials (mixed cards) ---------- */
.testi-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(32px, 4vw, 48px); flex-wrap: wrap; }
.testi-grid { display: grid; grid-template-columns: 1.15fr .85fr 1.15fr; gap: 16px; align-items: stretch; }
.t-card { border-radius: var(--r); padding: clamp(24px, 2.6vw, 36px); display: flex; flex-direction: column; gap: 20px; }
.t-card .who { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.t-card .who .nm { font-size: 17px; font-weight: 600; }
.t-card .who .rl { font-size: 13px; color: inherit; opacity: .6; margin-top: 3px; }
.t-card .who image-slot { width: 120px; height: 84px; flex: none; }
.t-card q { quotes: none; font-size: 15px; line-height: 1.6; margin-top: auto; }
.t-dark { background: var(--navy); color: var(--on-dark); }
.t-dark .who .nm { color: var(--on-dark); }
.t-tint { background: var(--tint); color: var(--text); border: 1px solid var(--line); }
.t-tint .who .nm { color: var(--text); }
.testimonial-disclosure {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text-2);
}
.testimonial-disclosure p { max-width: 92ch; font-size: 12px; line-height: 1.65; }
.testimonial-disclosure strong { color: var(--text); }
.t-tint q { color: var(--text); }
.t-tint .who .rl { color: var(--text-2); opacity: 1; }
.t-photo { position: relative; padding: 0; overflow: hidden; min-height: 380px; }
.t-photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }
.t-photo .veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,16,.75), transparent 45%); pointer-events: none; }
.t-photo .play {
  position: absolute; top: 20px; left: 20px; display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px; font-weight: 600;
}
.t-photo .play span { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center; }
.t-photo .cap { position: absolute; left: 22px; bottom: 20px; color: #fff; }
.t-photo .cap .nm { font-size: 26px; font-weight: 600; letter-spacing: -.02em; }
.t-photo .cap .rl { font-size: 13px; opacity: .75; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { background: var(--surface); border-radius: var(--r); margin-inline: 14px; }
.faq-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-side { position: sticky; top: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.faq-side p { font-size: 14px; color: var(--text-2); margin: 0; max-width: 36ch; }
.fa { border-top: 1px solid var(--line); }
.fa-item { border-bottom: 1px solid var(--line); }
.fa-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 22px 0; font-size: clamp(16px, 1.5vw, 19px); font-weight: 600;
}
.fa-q .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s, color .3s; }
.fa-item.open .fa-q .chev { transform: rotate(180deg); background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.fa-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.fa-item.open .fa-a { grid-template-rows: 1fr; }
.fa-a > div { overflow: hidden; }
.fa-a p { margin: 0; padding: 0 44px 22px 0; font-size: 15px; color: var(--text-2); max-width: 64ch; }

/* ---------- Final CTA ---------- */
.final-shell { padding: 14px; }
.final {
  position: relative; background: var(--navy); color: var(--on-dark); border-radius: var(--r);
  padding: clamp(56px, 8vw, 110px) clamp(24px, 4vw, 56px);
  text-align: center; overflow: hidden;
}
.final-photo { position: absolute; inset: 0; opacity: .3; }
.final-photo image-slot { width: 100%; height: 100%; border-radius: 0; outline: none; }
.final-photo::after { content:""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(22,28,38,.3), var(--navy) 78%); }
.final-inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.final h2 { color: #fff; }
.final .sub { max-width: 52ch; }
.final-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final-note { font-size: 13px; color: var(--on-dark-3); }
.final-note a { color: #fff; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { padding: clamp(48px, 6vw, 72px) 14px 14px; }
.footer-card { background: var(--ink); color: var(--on-dark-2); border-radius: var(--r); padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px) 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer .brand { color: #fff; }
.footer-about { font-size: 14px; line-height: 1.6; color: var(--on-dark-3); max-width: 280px; margin: 18px 0 22px; }
.footer h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-3); margin: 0 0 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--on-dark-2); margin: 0 0 11px; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-disclosures {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.footer-disclosures p { margin: 0; max-width: 110ch; font-size: 12px; line-height: 1.65; color: var(--on-dark-2); }
.footer-disclosures strong { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--on-dark-3); }
.footer-bottom > a { color: var(--on-dark-3); text-decoration: none; }
.footer-bottom > a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; transition: all .3s; }
.footer-social a:hover { border-color: #fff; color: #fff; }

/* ---------- image-slot theming ---------- */
image-slot {
  background: linear-gradient(150deg, #e3ddd0, #d2cabb);
  color: rgba(22,19,14,.5) !important;
  border-radius: var(--r-sm);
}
image-slot:not([data-filled]) { outline: 1.5px dashed rgba(22,19,14,.24); outline-offset: -10px; }
.on-dark image-slot, .hero-photo image-slot, .final-photo image-slot, .t-photo image-slot, .t-dark image-slot, .t-tint image-slot, .proc-col image-slot {
  background: linear-gradient(150deg, #272219, #16130e);
  color: rgba(241,237,230,.55) !important;
}
.hero-photo image-slot:not([data-filled]), .final-photo image-slot:not([data-filled]) { outline: none; }
/* hero gallery: reveal the generated panel art behind empty slots */
.hg-panel image-slot:not([data-filled]) { background: transparent !important; }

/* ---------- Interior page hero ---------- */
.hero-card.compact { min-height: min(54vh, 480px); padding-top: clamp(116px, 15vh, 152px); }
.hero-card.compact .hero-copy { max-width: 720px; }
.hero-card.compact h1 { font-size: clamp(34px, 4.6vw, 64px); }
/* soft background photo, same recipe as the contact CTA */
.page-hero-photo { position: absolute; inset: 0; z-index: 0; opacity: .3; }
.page-hero-photo image-slot { width: 100%; height: 100%; border-radius: 0; }
.page-hero-photo image-slot:not([data-filled]) { outline: none; }
.page-hero-photo .hero-bg-img { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; }
.page-hero-photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(22,28,38,.3), var(--navy) 78%); }
.hero-card.compact .hero-body { position: relative; z-index: 2; }

/* ---------- Results rows ---------- */
.res-rows { border-top: 1px solid var(--line); }
.res-row { display: grid; grid-template-columns: minmax(200px, 280px) 1fr; gap: 16px 40px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.res-amt { font-size: clamp(30px, 3.2vw, 46px); font-weight: 600; letter-spacing: -.03em; color: var(--accent); font-variant-numeric: tabular-nums; }
.res-body h3 { font-size: clamp(19px, 1.9vw, 24px); font-weight: 600; letter-spacing: -.015em; }
.res-body p { margin: 8px 0 0; font-size: 14px; color: var(--text-2); max-width: 70ch; }
.res-note { font-size: 12.5px; color: var(--text-3); margin-top: 20px; max-width: 80ch; }

/* ---------- Results strip (home, under hero) ---------- */
.rstrip-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 3.5vw, 44px); }
.rstrip-head .lead { font-size: 15px; color: var(--text-2); max-width: 44ch; margin: 14px 0 0; }
.rstrip-link { font-size: 14px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: border-color .3s; }
.rstrip-link:hover { border-color: var(--ink); }
.rstrip-link .arr { transition: transform .3s var(--ease); }
.rstrip-link:hover .arr { transform: translate(2px,-2px); }
.rstrip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3.4vw, 48px) clamp(24px, 4vw, 52px); }
.rcell { border: none; background: transparent; border-radius: 0; border-top: 1px solid var(--line); padding: 16px 0 0; transition: border-color .4s var(--ease); }
.rcell:hover { border-top-color: var(--ink); }
.rcell .amt { font-size: clamp(30px, 3.6vw, 50px); font-weight: 500; letter-spacing: -.035em; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1; transition: opacity .3s; }
.rcell .lbl { font-size: 13px; color: var(--text-3); margin-top: 10px; letter-spacing: -.005em; }
.rstrip-note { font-size: 11.5px; color: var(--text-3); margin-top: clamp(28px,3.5vw,44px); max-width: 80ch; }

/* ---------- Light testimonial card ---------- */
.t-light { background: var(--white); border: 1px solid var(--line); }
.t-light q, .t-card.t-light { color: var(--text); }

/* ---------- Articles (editorial list) ---------- */
.art-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(28px, 3.5vw, 44px); flex-wrap: wrap; }
.art-list { border-top: 1px solid var(--line); }
.art-row { display: grid; grid-template-columns: 150px 1fr auto 52px; gap: clamp(20px, 3vw, 48px); align-items: center; padding: clamp(24px, 3vw, 36px) 0; border-bottom: 1px solid var(--line); }
article.art-row { grid-template-columns: 150px 1fr auto; }
.art-row image-slot { width: clamp(120px, 12vw, 172px); height: clamp(84px, 8vw, 116px); border-radius: 14px; flex: none; }
.art-meta { display: flex; flex-direction: column; gap: 5px; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.art-meta .cat { color: var(--text-2); }
.art-body h3 { font-size: clamp(19px, 1.9vw, 26px); font-weight: 500; letter-spacing: -.02em; line-height: 1.2; max-width: 26em; }
.art-body p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); max-width: 62ch; }
.art-arr { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.art-arr svg { width: 18px; height: 18px; }
a.art-row:hover .art-arr { background: var(--ink); color: var(--on-dark); border-color: var(--ink); transform: rotate(45deg); }
/* Clickable article rows + read affordance */
.art-row[data-href] { transition: background .3s var(--ease); }
.art-row[data-href]:hover { background: rgba(22,19,14,.02); }
.art-body h3 a { color: inherit; text-decoration: none; background-image: linear-gradient(var(--ink), var(--ink)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .4s var(--ease); }
.art-row[data-href]:hover .art-body h3 a { background-size: 100% 1px; }
.art-readmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; letter-spacing: .01em; color: var(--ink); }
.art-readmore::after { content: "→"; transition: transform .35s var(--ease); }
.art-row[data-href]:hover .art-readmore::after { transform: translateX(5px); }

/* ---------- Article reader (prose) ---------- */
.art-back { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--on-dark-2); text-decoration: none; margin-bottom: 22px; transition: color .25s; }
.art-back:hover { color: var(--on-dark); }
.art-back .arr svg { width: 15px; height: 15px; }
.art-hero-meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 20px; }
.art-hero-meta .dot { opacity: .5; }
.art-hero-meta .tag { margin: 0; }

.prose { max-width: 720px; margin: 0 auto; }
.prose-lede { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; font-weight: 500; letter-spacing: -.015em; color: var(--text); margin: 0 0 8px; }
.prose h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; color: var(--ink); margin: 44px 0 0; }
.prose p { font-size: 17px; line-height: 1.72; color: var(--text-2); margin: 16px 0 0; }
.prose-list { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose-list li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.6; color: var(--text-2); }
.prose-list li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.prose-cta { margin: 40px 0 0; padding: 30px 32px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.prose-cta p { margin: 0; font-size: 18px; line-height: 1.5; font-weight: 500; color: var(--ink); max-width: 46ch; }
.prose-foot { max-width: 720px; margin: 44px auto 0; padding-top: 22px; border-top: 1px solid var(--line); }

.art-more { max-width: 720px; margin: 56px auto 0; }
.art-more-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.art-more-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; border-radius: var(--r); border: 1px solid var(--line); background: var(--white); text-decoration: none; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.art-more-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.art-more-card .cat { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.art-more-card h3 { margin: 0; font-size: 18px; font-weight: 500; letter-spacing: -.015em; line-height: 1.3; color: var(--ink); flex: 1; }
.mc-arr { color: var(--ink); }
.mc-arr svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.art-more-card:hover .mc-arr svg { transform: rotate(45deg); }
@media (max-width: 640px) {
  .prose-lede { font-size: 19px; }
  .prose p, .prose-list li { font-size: 16px; }
  .prose h2 { font-size: 22px; margin-top: 34px; }
  .prose-cta { padding: 24px; }
  .art-more-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .art-row, article.art-row { grid-template-columns: 1fr; gap: 12px; align-items: start; }
  .art-arr { display: none; }
  .art-meta { flex-direction: row; gap: 16px; }
  .art-row image-slot { width: 100%; height: 160px; order: -1; }
}

/* ---------- Testimonials — featured pull-quote layout ---------- */
.testi-grid.testi-grid { grid-template-columns: 1.25fr .9fr; }
.testi-stack { display: grid; gap: 16px; grid-template-rows: 1fr 1fr; }
.t-feature { padding: clamp(30px, 3.4vw, 50px); gap: 22px; }
.t-feature .q-glyph {
  font-family: var(--font-head, var(--font));
  font-size: clamp(56px, 5vw, 80px); line-height: 1; height: .42em;
  color: var(--on-dark-3); user-select: none;
}
.t-feature q {
  font-family: var(--font-head, var(--font));
  font-size: clamp(19px, 1.8vw, 26px); line-height: 1.45; font-weight: 500;
  letter-spacing: -.015em; margin-top: 0; max-width: 26em; text-wrap: pretty;
}
.t-feature .who { margin-top: auto; align-items: flex-end; }
.testi-stack .t-card q { margin-top: auto; }
@media (max-width: 900px) {
  .testi-grid.testi-grid { grid-template-columns: 1fr; }
  .testi-stack { grid-template-rows: none; }
}
.t-soon { background: transparent; border: 1px dashed var(--line); align-items: center; justify-content: center; text-align: center; color: var(--text-2); }
.t-soon .q-mark { font-size: 40px; color: var(--accent); line-height: 1; }
.t-soon p { margin: 0; font-size: 15px; max-width: 24ch; }

/* ---------- News / Advocacy list ---------- */
.news { background: var(--surface); border-radius: var(--r); margin-inline: 14px; }
.news-rows { border-top: 1px solid var(--line); }
/* Mobile marquee: hidden on desktop */
.news-marquee { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .nm-track { animation: nm-scroll 28s linear infinite; }
}
@keyframes nm-scroll { to { transform: translateX(-50%); } }
.news-row { display: grid; grid-template-columns: 132px 150px 1fr auto; gap: 16px 28px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding-left .3s var(--ease); }
.news-row:hover { padding-left: 8px; }
.news-date { font-size: 13px; color: var(--text-3); font-variant-numeric: tabular-nums; white-space: nowrap; }
.news-outlet { font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: var(--accent); }
.news-title { font-size: clamp(16px, 1.7vw, 20px); font-weight: 500; letter-spacing: -.015em; color: var(--text); max-width: 56ch; }
.news-link { font-size: 13px; font-weight: 600; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: color .25s; }
.news-link:hover { color: var(--accent); }
.news-link .arr { transition: transform .3s var(--ease); }
.news-row:hover .news-link .arr { transform: translate(2px,-2px); }

/* ---------- Credential badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.badge-slot { width: clamp(96px, 12vw, 132px); height: clamp(96px, 12vw, 132px); border-radius: 50%; }
.badges-note { font-size: 12px; color: var(--text-3); margin-top: 18px; max-width: 70ch; }

/* ---------- Disclaimer footnote ---------- */
.fine { font-size: 14.5px; color: var(--text-2); line-height: 1.55; margin-top: 14px; max-width: 78ch; }
.on-dark .fine { color: var(--on-dark-3); }
sup.ast { color: var(--accent); font-weight: 600; }

/* ---------- Bio split (About) ---------- */
.bio-grid { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.bio-grid image-slot { width: 100%; height: clamp(340px, 36vw, 520px); }
.bio-copy { display: flex; flex-direction: column; gap: 18px; }
.bio-copy h2 { margin-bottom: 4px; }
.bio-copy p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text-2); max-width: 62ch; }
.bio-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px); margin-top: 22px; border-top: 1px solid var(--line); }
.bio-fact { padding: 16px 0; border-bottom: 1px solid var(--line); }
.bio-fact .k { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.bio-fact .v { font-size: 15px; font-weight: 500; margin-top: 5px; }

@media (max-width: 800px) {
  .bio-grid { grid-template-columns: 1fr; }
  .res-row { grid-template-columns: 1fr; gap: 8px; }
  .news-row { grid-template-columns: 1fr; gap: 4px; }
  .news-link { margin-top: 6px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 130; background: var(--navy); color: var(--on-dark);
  padding: 90px var(--gutter) 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 26px; font-weight: 600; letter-spacing: -.02em; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: #fff; }
.mobile-menu .btn { margin-top: 22px; border-bottom: none; font-size: 16px; }
.mobile-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 28px; padding: 10px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }
/* directional variants */
.reveal[data-anim="left"]  { transform: translateX(-36px); }
.reveal[data-anim="right"] { transform: translateX(36px); }
.reveal[data-anim="scale"] { transform: scale(.94); }
.reveal[data-anim="clip"]  { transform: none; clip-path: inset(0 0 100% 0); }
.reveal[data-anim].in { transform: none; clip-path: inset(0 0 0 0); }

/* ---------- Hero entrance (plays on load) ---------- */
@keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes heroPhoto { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: none; } }
.hero-photo image-slot { animation: heroPhoto 1.4s var(--ease) both; }
.hero-copy > * { opacity: 0; animation: heroRise .9s var(--ease) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .15s; }
.hero-copy > *:nth-child(2) { animation-delay: .28s; }
.hero-copy > *:nth-child(3) { animation-delay: .41s; }
.hero-copy > *:nth-child(4) { animation-delay: .54s; }
.hero-aside { opacity: 0; animation: heroRise .9s var(--ease) .6s forwards; }

/* ---------- Timeline spine + node draw-in ---------- */
.flow.reveal { opacity: 1; transform: none; }
.flow::before { transform: scaleY(0); transform-origin: top; transition: transform 1.2s var(--ease); }
.flow.in::before { transform: scaleY(1); }
.flow-node { transform: translate(-50%,-50%) scale(0); transition: transform .55s var(--ease); }
.flow-step.in .flow-node { transform: translate(-50%,-50%) scale(1); transition-delay: .25s; }
.flow-index { transition: color .6s var(--ease); }

/* ---------- Image zoom on hover ---------- */
.flow-media, .about-photos image-slot, .bio-grid image-slot, .t-photo, .bt-img, .hero1-media { overflow: hidden; }
.flow-media image-slot, .t-photo image-slot, .bt-img image-slot { transition: transform 1s var(--ease); }
.flow-media:hover image-slot, .t-photo:hover image-slot, .bt-img:hover image-slot { transform: scale(1.05); }
.about-photos image-slot { transition: transform 1s var(--ease); }
.about-photos image-slot:hover { transform: scale(1.05); }

/* ---------- Card lifts ---------- */
.t-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.t-card:hover { transform: translateY(-5px); }
.acc-circle, .fa-q .chev { will-change: transform; }
.fa-q .chev svg { width: 15px; height: 15px; display: block; }

/* ---------- Brand mark subtle ---------- */
.brand { transition: opacity .25s var(--ease); }
.brand:hover { opacity: .7; }

@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  /* User explicitly wants full motion — only soften native smooth-scroll. */
  html { scroll-behavior: auto; }
}

/* ---------- Always-on motion (intentional; runs regardless of reduce) ---------- */
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.7); opacity: .4; } }
.tag::before { animation: dotPulse 2.2s var(--ease) infinite; }
.hero-aside .es::before { animation: dotPulse 2.2s var(--ease) infinite; }
@keyframes rulePulse { 0%,100% { border-top-color: var(--line); } 50% { border-top-color: var(--ink); } }
.rcell { animation: rulePulse 3.2s ease-in-out infinite; }
.rcell:nth-child(2) { animation-delay: .4s; }
.rcell:nth-child(3) { animation-delay: .8s; }
.rcell:nth-child(4) { animation-delay: 1.2s; }
.rcell:nth-child(5) { animation-delay: .2s; }
.rcell:nth-child(6) { animation-delay: .6s; }
.rcell:nth-child(7) { animation-delay: 1s; }
.rcell:nth-child(8) { animation-delay: 1.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .nav-phone { display: none; }
}
@media (max-width: 1000px) {
  .nav-menu { display: none; }
  .burger { display: flex; }
  .nav .btn { display: none; }
  .pa-grid, .faq-grid { grid-template-columns: 1fr; }
  .pa-side, .faq-side { position: static; }
  .proc-cols { grid-template-columns: 1fr; gap: 0; }
  .proc-col { border-left: none; border-top: 1px solid var(--line-dark); padding: 24px 4px; min-height: 0; }
  .proc-col image-slot { margin-top: 6px; }
  .flow::before { display: none; }
  .flow-node { display: none; }
  .flow-step { grid-template-columns: 1fr; gap: 20px; }
  .flow-step:nth-child(even) .flow-media { order: 0; }
  .flow-step:nth-child(even) .flow-copy { text-align: left; justify-self: start; }
  .flow-step:nth-child(even) .flow-copy h3, .flow-step:nth-child(even) .flow-copy p { margin-left: 0; }
  .flow-index { font-size: clamp(54px, 14vw, 84px); }
  .hflow-track { grid-template-columns: 1fr; gap: 36px; }
  .hflow::before { display: none; }
  /* hero gallery: fewer panels when cramped */
  .hg-panel:nth-child(4), .hg-panel:nth-child(5) { display: none; }
  .hg-lead { flex-grow: 2; }
  .bproc { grid-template-columns: 1fr; }
  .bptile:not(:last-of-type) .bp-illus::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .t-photo { min-height: 320px; }
  .std-row { grid-template-columns: 48px 1fr; }
  .std-row p { grid-column: 2; }
  .about-grid, .about-foot { grid-template-columns: 1fr; gap: 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .rstrip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-shell, .stats-shell, .process-shell, .final-shell { padding-inline: 10px; }
  .about, .standards, .faq { margin-inline: 10px; }
  /* News → single-line marquee on mobile */
  .news .std-head, .news-rows, .news .fine { display: none; }
  .news-marquee { display: block; padding: 6px 0 2px; }
  .nm-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
  .nm-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
  .nm-track { display: flex; width: max-content; gap: 40px; will-change: transform; }
  .nm-item { font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: var(--accent); white-space: nowrap; }
  .hero-body { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero-aside { align-items: flex-start; text-align: left; }
  /* Mobile: darken hero imagery for text legibility */
  .hero-photo::after {
    background:
      linear-gradient(78deg, rgba(22,19,14,.97) 0%, rgba(22,19,14,.86) 40%, rgba(22,19,14,.62) 100%),
      linear-gradient(to top, rgba(22,19,14,.95) 0%, rgba(22,19,14,.35) 46%, rgba(22,19,14,.55) 100%);
  }
  .stats-band { gap: 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .stat:last-child { grid-column: 1 / -1; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .about-photos image-slot:first-child { grid-column: 1 / -1; }
  .acc-head { grid-template-columns: 44px 1fr; }
  .acc-circle { width: 44px; height: 44px; }
  .acc-hint { display: none; }
  .acc-content { grid-template-columns: 1fr; padding-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   MOTION PASS — added movement across the whole site
   Parallax · scroll progress · hero life · heading wipes ·
   accordion/FAQ open reveals · interaction shine · underlines
   Decorative loops respect data-motion="calm".
   ============================================================ */

/* ---- Scroll progress bar (injected by JS) ---- */
.scroll-prog {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: var(--ink); transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform; opacity: .9; pointer-events: none;
}

/* ---- Hero gallery: staggered entrance + slow pan ---- */
.hero-gallery { transform-origin: center center; will-change: transform; }
.hg-panel {
  opacity: 0;
  animation: hgIn 1.05s var(--ease) both, hgPan 19s ease-in-out infinite;
}
.hg-panel:nth-child(1) { animation-delay: .08s, .9s; }
.hg-panel:nth-child(2) { animation-delay: .20s, 1.7s; }
.hg-panel:nth-child(3) { animation-delay: .32s, 2.5s; }
.hg-panel:nth-child(4) { animation-delay: .44s, 3.3s; }
.hg-panel:nth-child(5) { animation-delay: .56s, 4.1s; }
@keyframes hgIn { from { opacity: 0; transform: translateY(30px) scale(1.03); } to { opacity: 1; transform: none; } }
@keyframes hgPan { 0%, 100% { background-position: 50% 50%; } 50% { background-position: 50% 43%; } }
html[data-motion="calm"] .hg-panel { animation: hgIn 1.05s var(--ease) both; }
html[data-motion="electric"] .hg-panel { animation-duration: .9s, 12s; }

/* ---- Interior page hero: drifting ambient glow ---- */
.hero-card.compact::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(48% 60% at 28% 32%, rgba(241,237,230,.12), transparent 62%),
    radial-gradient(40% 52% at 78% 72%, rgba(241,237,230,.07), transparent 60%);
  animation: heroGlowDrift 16s ease-in-out infinite;
}
@keyframes heroGlowDrift {
  0%, 100% { transform: translate(-4%, -3%) scale(1); }
  50%      { transform: translate(6%, 5%) scale(1.08); }
}
html[data-motion="calm"] .hero-card.compact::before { animation: none; }
html[data-motion="electric"] .hero-card.compact::before { animation-duration: 9s; }

/* ---- Heading wipe: section H2s reveal with a vertical clip ---- */
.reveal[data-anim="blur"] { transform: translateY(20px); filter: blur(10px); }
.reveal[data-anim="blur"].in { transform: none; filter: blur(0); }

/* ---- Standards rows: staggered cascade ---- */
.std-row.reveal:nth-child(2) { transition-delay: .07s; }
.std-row.reveal:nth-child(3) { transition-delay: .14s; }
.std-row.reveal:nth-child(4) { transition-delay: .21s; }
.std-row.reveal:nth-child(5) { transition-delay: .28s; }
.std-row { transition: padding-left .35s var(--ease); }
.std-row:hover { padding-left: 8px; }

/* ---- Accordion: content fades + slides in on open ---- */
.acc-content > div, .acc-content image-slot {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s;
}
.acc-content image-slot { transition-delay: .22s; }
.acc-item.open .acc-content > div,
.acc-item.open .acc-content image-slot { opacity: 1; transform: none; }

/* ---- FAQ: answer fades in on open ---- */
.fa-a p { opacity: 0; transform: translateY(8px); transition: opacity .45s var(--ease) .1s, transform .45s var(--ease) .1s; }
.fa-item.open .fa-a p { opacity: 1; transform: none; }

/* ---- Button shine sweep on hover ---- */
.btn-light, .btn-dark, .btn-accent { position: relative; overflow: hidden; }
.btn-light::after, .btn-dark::after, .btn-accent::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-light:hover::after, .btn-dark:hover::after, .btn-accent:hover::after { animation: btnShine .75s var(--ease); }
@keyframes btnShine { from { left: -130%; } to { left: 150%; } }

/* ---- Animated underlines: footer + press links ---- */
.footer-col a { position: relative; display: block; width: fit-content; white-space: nowrap; }
.footer-col a::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .32s var(--ease);
}
.footer-col a:hover::after { transform: scaleX(1); }
.press-logo { position: relative; display: inline-flex; align-items: center; }
.press-logo img {
  height: 28px; width: auto; display: block;
  opacity: .92;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.press-logo:hover img { opacity: 1; transform: translateY(-2px); }

/* ---- Float CTA: keep parallax/transform off the bobbing element ---- */
html[data-motion="electric"] .std-row { transition-duration: .25s; }

/* ---- Final CTA as a lead form (two-column) ---- */
.final--form { text-align: left; padding: clamp(36px, 4.5vw, 68px) clamp(24px, 4vw, 56px); }
.final-form-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: stretch; max-width: 1120px; margin-inline: auto;
}
.final-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.final-meta { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 8px; width: 100%; }
.final-points { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; width: 100%; }
.final-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--on-dark); }
.final-points .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--on-dark); margin-top: 1px; }
.final-points .ck svg { width: 13px; height: 13px; }
.final-copy .h-lg { color: #fff; max-width: 13em; }
.final-copy .sub { margin: 0; max-width: 42ch; }
.final-alt { margin: 0; font-size: 15px; color: var(--on-dark-2); }
.final-alt a { color: #fff; font-weight: 600; border-bottom: 1px solid var(--line-dark); padding-bottom: 1px; transition: border-color .25s; }
.final-alt a:hover { border-color: #fff; }
.final--form .final-note { margin: 0; }
.final-photo-card { width: 100%; max-width: 380px; height: 210px; border-radius: 12px; overflow: hidden; }
.final-photo-card image-slot { width: 100%; height: 100%; }
.final-address { margin: 0; font-size: 14px; color: var(--on-dark-2); }
.final-divider { width: 100%; max-width: 380px; height: 1px; background: var(--line-dark); margin: 4px 0; }

.lead-form {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--r-sm); padding: clamp(22px, 2.6vw, 34px);
  display: grid; gap: 15px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.lead-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.lead-field label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-2); }
.lead-field input, .lead-field select, .lead-field textarea {
  font-family: inherit; font-size: 15px; color: var(--on-dark); width: 100%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); border-radius: 10px;
  padding: 12px 14px; transition: border-color .25s var(--ease), background .25s var(--ease); appearance: none;
}
.lead-field textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.lead-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2bcb0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px;
}
.lead-field input:focus, .lead-field select:focus, .lead-field textarea:focus { outline: none; border-color: var(--on-dark-2); background: rgba(255,255,255,.09); }
.lead-field input::placeholder, .lead-field textarea::placeholder { color: var(--on-dark-3); }
.lead-field select option { color: #16130e; background: #f1ede6; }
/* file upload field */
.lead-file { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 13px 14px;
  border: 1px dashed rgba(241,237,230,.28); border-radius: 10px; background: rgba(255,255,255,.03);
  color: var(--on-dark-2); transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.lead-file:hover { border-color: var(--on-dark-2); background: rgba(255,255,255,.06); color: #fff; }
.lead-file .lf-ico { width: 20px; height: 20px; flex: none; display: grid; place-items: center; }
.lead-file .lf-ico svg { width: 20px; height: 20px; }
.lead-file .lf-text { font-size: 14px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lead-file.has-file { border-style: solid; border-color: var(--on-dark-2); color: #fff; }
.lead-form .btn { width: 100%; margin-top: 4px; }
.lead-sms-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 12px; line-height: 1.55; color: var(--on-dark-2); }
.lead-sms-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); }
.lead-sms-consent a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.lead-qrow { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lead-qrow label { flex: 1; font-size: 15px; color: var(--on-dark); line-height: 1.35; }
.lead-qrow select { flex: none; width: 96px; padding: 11px 12px; border-radius: 10px; border: 1px solid rgba(241,237,230,.18); background: rgba(255,255,255,.03); color: var(--on-dark); font: inherit; font-size: 14px; }
.lead-qrow--year select { width: min(180px, 46%); }
.lead-qrow select option { color: #16130e; background: #f1ede6; }
.lead-attorney { margin: 12px 0 0; font-size: 17px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lead-attorney a { color: #fff; border-bottom: 1px solid var(--on-dark-2); padding-bottom: 1px; transition: border-color .25s; }
.lead-attorney a:hover { border-color: #fff; }
.lead-fine { margin: 2px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--on-dark-2); }
.lead-disclaimer { margin: 0; font-size: 10px; line-height: 1.55; color: var(--on-dark-2); }
.lead-error { margin: 2px 0 0; color: #ffd0c8; font-size: 13px; line-height: 1.45; }
.lead-form .btn[disabled] { cursor: wait; opacity: .7; }

/* success state */
.lead-form.sent { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 280px; }
.lead-thanks { display: flex; flex-direction: column; align-items: center; gap: 14px; animation: hgIn .6s var(--ease) both; }
.lead-thanks .chk { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--on-dark-2); display: grid; place-items: center; color: #fff; }
.lead-thanks .chk svg { width: 26px; height: 26px; }
.lead-thanks h3 { font-size: 22px; font-weight: 600; color: #fff; }
.lead-thanks p { margin: 0; font-size: 14.5px; color: var(--on-dark-2); max-width: 30ch; }

@media (max-width: 900px) {
  .final-form-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .final-copy { align-items: flex-start; }
  .final-meta { margin-top: 4px; }
}
@media (max-width: 460px) {
  .lead-row { grid-template-columns: 1fr; }
}
