/* ═══════════════════════════════════════════════════════════════
   HIPPENSTEEL LAW FIRM — Design System v2 (2026 refresh)
   Light editorial · Brand palette: Dull White / Dark Moss / Honey
   Fonts: Source Serif 4 (headlines) · Poppins (UI + body)
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Brand palette */
  --bone:        #EDE9DD;   /* Dull White — dominant background */
  --bone-deep:   #E5E0CF;   /* alt section background */
  --paper:       #F5F2E9;   /* raised surfaces / cards */
  --moss:        #062510;   /* Dark Moss Green — brand guide exact */
  --moss-deep:   #041A0B;   /* deepened moss for vignettes / footer */
  --moss-soft:   #082712;   /* raised surfaces on dark */
  --honey:       #AC8255;   /* warm accent */
  --honey-light: #C49B72;
  --honey-text:  #7E5A31;   /* honey darkened for small text on light bg */
  --cypress:     #477F57;   /* secondary green, used sparingly */

  /* Semantic (light context default) */
  --bg:           var(--bone);
  --bg-alt:       var(--bone-deep);
  --surface:      var(--paper);
  --green:        var(--honey);
  --green-light:  var(--honey-light);
  --green-dim:    rgba(172,130,85,.12);
  --green-border: rgba(172,130,85,.35);
  --green-hi:     rgba(172,130,85,.6);
  --text:         var(--moss);
  --text-mid:     rgba(6,37,16,.68);
  --text-dim:     rgba(6,37,16,.42);
  --border:       rgba(6,37,16,.14);
  --label:        var(--honey-text);

  /* Buttons (light context) */
  --btn-bg:       var(--moss);
  --btn-ink:      var(--bone);
  --btn-bg-hover: #0E3A1E;

  /* Type */
  --serif: 'Source Serif 4', 'Century Schoolbook', Georgia, serif;
  --sans:  'Poppins', system-ui, -apple-system, sans-serif;
  --mono:  'Poppins', system-ui, sans-serif; /* legacy var — mono retired */
}

/* Dark moss sections re-scope the semantic tokens.
   Inline styles + shared classes resolve automatically. */
.theme-dark,
.nav, .nav-mobile,
.hero, .manifesto, .cta-section, .footer {
  --bg:           var(--moss);
  --bg-alt:       var(--moss-soft);
  --surface:      var(--moss-soft);
  --green-dim:    rgba(172,130,85,.14);
  --green-border: rgba(172,130,85,.3);
  --green-hi:     rgba(172,130,85,.55);
  --text:         var(--bone);
  --text-mid:     rgba(237,233,221,.72);
  --text-dim:     rgba(237,233,221,.45);
  --border:       rgba(237,233,221,.14);
  --label:        var(--honey);
  --btn-bg:       var(--honey);
  --btn-ink:      var(--moss);
  --btn-bg-hover: var(--honey-light);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
::selection { background: var(--honey); color: var(--moss); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bone); }
::-webkit-scrollbar-thumb { background: var(--honey); }

/* ── NAVBAR — full-width dark moss bar ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--moss);
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(172,130,85,.28);
  transition: box-shadow .4s;
}
.nav.scrolled { box-shadow: 0 10px 40px rgba(6,37,16,.28); }
.nav-brand { cursor: pointer; text-decoration: none; display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(237,233,221,.62);
  background: none; border: none; cursor: pointer;
  transition: color .2s; padding: 0;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 1px; background: var(--honey);
  transition: right .28s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-link:hover, .nav-link.active { color: var(--bone); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--moss); border: 1px solid rgba(172,130,85,.3);
  padding: 8px; min-width: 230px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s; z-index: 200;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block; width: 100%; padding: 11px 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: rgba(237,233,221,.85);
  background: none; border: none; text-align: left; cursor: pointer;
  transition: background .18s, color .18s, padding-left .18s;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: rgba(172,130,85,.14); color: var(--honey-light); padding-left: 18px; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--bone); transition: all .3s;
}
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--moss); flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--bone); background: none; border: none;
  cursor: pointer; letter-spacing: -.01em; text-decoration: none;
  transition: color .2s;
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--honey); }
.nav-mobile-cta {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--moss); background: var(--honey);
  border: none; cursor: pointer; padding: 14px 36px;
  text-decoration: none;
}

/* ── BUTTONS — rectangular, editorial ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; min-height: 48px;
  background: var(--btn-bg); color: var(--btn-ink);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--btn-bg);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background .25s, border-color .25s, color .25s;
}
.btn-primary:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 32px; min-height: 48px;
  background: transparent; color: var(--text);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--border); cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-ghost:hover { border-color: var(--honey); color: var(--label); }

/* ── UTILITY ── */
.tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--label); display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.tag::before {
  content: ''; width: 32px; height: 1px; background: var(--honey);
  flex-shrink: 0;
}
.chip {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--label); background: transparent;
  border: 1px solid var(--green-border);
  padding: 4px 12px;
  display: inline-block;
}
.green-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  opacity: .35; border: none; margin: 0;
}
.pulse-dot {
  width: 7px; height: 7px; background: var(--cypress);
  border-radius: 50%; display: inline-block;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%     { opacity: .35; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── PAGE FADE ── */
main { animation: page-fade .5s cubic-bezier(.16,1,.3,1) both; }
@keyframes page-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── HERO EMBLEM WATERMARK (interior pages) ── */
.page-hero::after,
.pa-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: url('emblem.svg') no-repeat center / contain;
  opacity: .07;
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  right: 60px; top: 55%;
  transform: translateY(-50%);
  opacity: .05;
}
.pa-hero::after {
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  opacity: .07;
}
@media (max-width: 768px) {
  .page-hero::after, .pa-hero::after {
    width: 200px; height: 200px;
    right: -30px; opacity: .05;
  }
}

/* ── HERO EMBLEM — engraved line-draw (homepage) ── */
.hero-emblem {
  position: absolute; right: 7%; top: 50%;
  height: min(62vh, 500px); width: auto;
  z-index: 0; pointer-events: none;
  transform: translateY(-50%);
  animation: emblem-float 10s ease-in-out 3.2s infinite alternate;
}
.hero-emblem polygon {
  fill: #AC8255; fill-opacity: 0;
  stroke: #AC8255; stroke-opacity: .5; stroke-width: 1;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: emblem-draw 2.2s cubic-bezier(.65,0,.35,1) forwards,
             emblem-fill 1.6s ease forwards;
}
.hero-emblem polygon:nth-child(1) { animation-delay: .3s, 1.7s; }
.hero-emblem polygon:nth-child(2) { animation-delay: .5s, 1.9s; }
.hero-emblem polygon:nth-child(3) { animation-delay: .7s, 2.1s; }
@keyframes emblem-draw { to { stroke-dashoffset: 0; } }
@keyframes emblem-fill { to { fill-opacity: .12; } }
@keyframes emblem-float {
  from { transform: translateY(calc(-50% - 7px)); }
  to   { transform: translateY(calc(-50% + 7px)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-emblem { animation: none; }
  .hero-emblem polygon { animation: none; stroke-dashoffset: 0; fill-opacity: .12; }
}
@media (max-width: 768px) {
  .hero-emblem { height: 210px; right: -26px; opacity: .55; }
}

/* ── HERO — dark moss, typographic ── */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: center;
  padding: 140px 60px 90px;
  overflow: hidden;
  background: var(--moss);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 550px at 78% 35%, rgba(172,130,85,.04), transparent 60%),
    radial-gradient(ellipse 130% 130% at 50% 42%, transparent 42%, rgba(2,14,6,.5) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; width: 100%; max-width: 1100px; }
.hero-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .3em; color: var(--honey);
  text-transform: uppercase; margin-bottom: 30px;
  display: flex; align-items: center; gap: 16px;
  animation: hero-in 1s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--honey); flex-shrink: 0;
}
.hero-h1-sans {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6.4vw, 84px);
  color: var(--bone); letter-spacing: -.015em; line-height: 1.04;
  animation: hero-in 1s cubic-bezier(.16,1,.3,1) .22s both;
}
.hero-h1-serif {
  display: block;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(46px, 7.4vw, 98px);
  font-style: italic;
  color: var(--honey); letter-spacing: -.015em; line-height: 1.06;
  animation: hero-in .9s cubic-bezier(.16,1,.3,1) .4s both;
}
.hero-sub {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: rgba(237,233,221,.75); max-width: 520px; line-height: 1.85;
  margin-top: 32px; margin-bottom: 36px;
  animation: hero-in .8s cubic-bezier(.16,1,.3,1) .58s both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: hero-in .8s cubic-bezier(.16,1,.3,1) .7s both;
}
.hero-stats {
  display: flex; gap: 0; margin-top: 64px;
  border-top: 1px solid rgba(237,233,221,.14);
  animation: hero-in .8s cubic-bezier(.16,1,.3,1) .84s both;
}
.hero-stats > div {
  padding: 26px 44px 0 0; margin-right: 44px;
  border-right: 1px solid rgba(237,233,221,.1);
}
.hero-stats > div:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-val {
  font-family: var(--serif); font-size: 34px; font-weight: 500;
  color: var(--bone); line-height: 1;
}
.stat-lbl {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; color: rgba(237,233,221,.5);
  margin-top: 8px; text-transform: uppercase;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ── SECTION ── */
.section { padding: 110px 60px; }
.section-alt { background: var(--bone-deep); }
.section-surface { background: var(--paper); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-narrow { max-width: 740px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }
.section-h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; color: var(--text); line-height: 1.12;
  letter-spacing: -.01em;
}
.section-h2 em { color: var(--label); font-style: italic; font-weight: 400; }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); }
.grid-3 > * + * { border-left: 1px solid var(--border); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-2-wide { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.grid-2-photo { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }

/* ── CARDS — hairline editorial, invert on hover ── */
.card {
  background: var(--paper);
  padding: 42px 36px 38px;
  position: relative; overflow: hidden;
  transition: background .35s cubic-bezier(.4,0,.2,1);
}
.card:hover { background: var(--moss); }
.card:hover .card-desc { color: rgba(237,233,221,.75); }
.card:hover .card-label { color: var(--honey); }
.card:hover .card-link { color: var(--honey-light); }
.card:hover .chip { color: var(--honey); border-color: rgba(172,130,85,.45); }
.card-glow { display: none; }
.card-label {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--text); letter-spacing: -.01em;
  transition: color .35s;
}
.card-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; }
.card-desc {
  font-family: var(--sans); font-size: 14.5px; font-weight: 300;
  color: var(--text-mid); line-height: 1.85; margin-bottom: 28px;
  transition: color .35s;
}
.card-link {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--label); transition: color .35s;
}

.card-sm {
  background: var(--paper); border: 1px solid var(--border);
  padding: 28px;
}
.card-sm-title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.card-sm-desc { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }

/* Signal rows — numbered hairline list */
.signal-card {
  display: flex; gap: 22px; align-items: baseline;
  padding: 17px 4px;
  border-bottom: 1px solid var(--border);
  background: transparent; border-radius: 0;
  transition: padding-left .25s;
}
.signal-card:first-child { border-top: 1px solid var(--border); }
.signal-card:hover { padding-left: 12px; }
.signal-num {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: var(--label); flex-shrink: 0;
}
.signal-text { font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.65; }

/* ── MANIFESTO — dark moss band ── */
.manifesto {
  padding: 130px 60px; position: relative; overflow: hidden;
  background: var(--moss);
}
.manifesto-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .06;
  pointer-events: none;
}
.manifesto-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.manifesto .tag { justify-content: center; }
.manifesto .tag::before { display: none; }
.manifesto-small {
  font-family: var(--sans); font-size: clamp(15px,1.8vw,17px); font-weight: 300;
  color: rgba(237,233,221,.7); line-height: 1.9; margin-bottom: 26px;
}
.manifesto-big {
  font-family: var(--serif); font-size: clamp(30px,5vw,62px);
  font-weight: 400; font-style: italic; color: var(--bone);
  line-height: 1.15; margin-bottom: 26px; letter-spacing: -.01em;
}
.manifesto-big em { color: var(--honey); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 20px;
}
.faq-q {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text); transition: color .2s; letter-spacing: -.005em;
}
.faq-btn:hover .faq-q, .faq-btn.open .faq-q { color: var(--label); }
.faq-icon {
  font-family: var(--serif); font-size: 24px; font-weight: 300; color: var(--honey-text);
  flex-shrink: 0; transition: transform .3s; line-height: 1;
}
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 26px; max-width: 640px; }
.faq-answer.open { display: block; }
.faq-answer p { font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.85; }

/* ── CTA SECTION — dark moss band ── */
.cta-section {
  padding: 110px 60px; text-align: center;
  background: var(--moss);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; left: 50%; top: -170px; transform: translateX(-50%);
  width: 340px; height: 340px;
  background: url('emblem.svg') no-repeat center / contain;
  opacity: .06; pointer-events: none;
}
.cta-h2 {
  font-family: var(--serif); font-size: clamp(38px,5.5vw,72px);
  font-weight: 400; font-style: italic; color: var(--bone);
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -.01em;
  position: relative;
}
.cta-h2 em { color: var(--honey); }
.cta-sub {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: rgba(237,233,221,.7); line-height: 1.8; margin-bottom: 36px;
  position: relative;
}

/* ── PAGE HERO (interior pages — light) ── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 180px 60px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bone);
}
.page-hero-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--label); margin-bottom: 18px; display: block;
}
.page-hero-h1 {
  font-family: var(--serif); font-size: clamp(40px,6.5vw,84px);
  font-weight: 500; color: var(--text); line-height: 1.04;
  max-width: 820px; letter-spacing: -.015em;
}
.page-hero-h1 em { color: var(--label); font-style: italic; font-weight: 400; }
.page-hero-sub {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: var(--text-mid); margin-top: 24px; max-width: 480px; line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; position: relative; z-index: 1; }
.breadcrumb-link {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--label);
}
.breadcrumb-link:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-dim); font-size: 11px; }
.breadcrumb-current {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim);
}

/* ── ABOUT ── */
.photo-wrap {
  overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 3/4;
  background: var(--paper); margin-bottom: 20px;
  position: relative;
}
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.photo-deco-br {
  position: absolute; bottom: -14px; right: -14px;
  width: 80px; height: 80px; border: 1px solid var(--honey);
  opacity: .6; pointer-events: none;
}
.photo-deco-tl {
  position: absolute; top: -14px; left: -14px;
  width: 48px; height: 48px; background: var(--green-dim);
  pointer-events: none;
}
.photo-card {
  padding: 22px; background: var(--paper);
  border: 1px solid var(--border);
}
.photo-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.photo-card-row:last-child { border-bottom: none; }
.photo-card-key {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  color: var(--label); letter-spacing: .16em; text-transform: uppercase;
}
.photo-card-val { font-family: var(--sans); font-size: 13px; color: var(--text); }

.blockquote {
  font-family: var(--serif); font-size: clamp(22px,3.2vw,36px);
  font-weight: 400; font-style: italic; color: var(--text); line-height: 1.35;
  border-left: 2px solid var(--honey); padding-left: 32px; margin-bottom: 24px;
}
.who-card {
  background: var(--paper); border: 1px solid var(--border);
  padding: 30px; cursor: pointer;
  transition: background .3s, border-color .3s;
  text-decoration: none; display: block;
}
.who-card:hover { background: var(--moss); border-color: var(--moss); }
.who-card:hover .who-title { color: var(--bone); }
.who-card:hover .who-desc { color: rgba(237,233,221,.7); }
.who-card:hover .who-geo { color: var(--honey); }
.who-title { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--text); margin-bottom: 4px; transition: color .3s; }
.who-geo {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  color: var(--label); letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 12px; transition: color .3s;
}
.who-desc { font-family: var(--sans); font-size: 13.5px; font-weight: 300; color: var(--text-mid); line-height: 1.75; transition: color .3s; }

/* ── PRACTICE AREA HERO — dark moss ── */
.pa-hero {
  position: relative; padding: 190px 60px 90px;
  overflow: hidden;
  background: var(--moss);
}
.pa-hero { --text: var(--bone); --text-mid: rgba(237,233,221,.72); --border: rgba(237,233,221,.14); --label: var(--honey); --btn-bg: var(--honey); --btn-ink: var(--moss); --btn-bg-hover: var(--honey-light); }
.pa-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 85% 25%, rgba(172,130,85,.04), transparent 60%),
    radial-gradient(ellipse 130% 130% at 50% 42%, transparent 42%, rgba(2,14,6,.5) 100%);
}
.pa-hero-grad-h, .pa-hero-grad-v { display: none; }
.pa-hero-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.pa-hero-h1 {
  font-family: var(--serif); font-size: clamp(38px,6vw,76px);
  font-weight: 500; color: var(--bone); line-height: 1.05;
  max-width: 720px; margin-bottom: 26px; letter-spacing: -.015em;
}
.pa-hero-h1 em { color: var(--honey); font-style: italic; font-weight: 400; }
.pa-hero-sub {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: rgba(237,233,221,.72);
  max-width: 520px; line-height: 1.85; margin-bottom: 36px;
}

/* ── PROCESS ── */
.process-step { display: flex; gap: 28px; margin-bottom: 0; padding: 30px 0; align-items: flex-start; border-bottom: 1px solid var(--border); }
.process-step:first-of-type { border-top: 1px solid var(--border); }
.process-num {
  width: auto; height: auto; border: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--serif); font-size: 26px; font-style: italic;
  color: var(--label); min-width: 44px;
}
.process-title { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.process-desc { font-family: var(--sans); font-size: 14.5px; font-weight: 300; color: var(--text-mid); line-height: 1.8; }
.process-cta {
  margin-top: 48px; padding: 34px; background: var(--paper);
  border: 1px solid var(--green-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
}
.process-cta-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.process-cta-sub { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--text-mid); }

/* ── CONTACT ── */
.contact-info-card {
  display: flex; gap: 18px; padding: 24px; background: var(--paper);
  border: 1px solid var(--border); align-items: center;
  margin-bottom: 14px;
}
.contact-icon {
  width: 46px; height: 46px; background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; color: var(--label); text-transform: uppercase; margin-bottom: 4px;
}
.contact-val { font-family: var(--sans); font-size: 15px; color: var(--text); margin-bottom: 2px; }
.contact-note { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--text-mid); }
.contact-panel {
  background: var(--paper); border: 1px solid var(--green-border);
  padding: 36px; position: sticky; top: 100px;
}
.contact-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-check-icon { color: var(--label); flex-shrink: 0; margin-top: 2px; font-family: var(--serif); font-size: 14px; }
.contact-check-text { font-family: var(--sans); font-size: 14.5px; font-weight: 300; color: var(--text-mid); line-height: 1.75; }
.contact-panel-footer { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); }
.contact-panel-footer-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  color: var(--text-dim); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 6px;
}
.contact-panel-footer-text { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--text-dim); line-height: 1.75; }

/* ── FOOTER — dark moss ── */
.footer {
  background: var(--moss-deep);
  border-top: 1px solid rgba(172,130,85,.28);
  padding: 72px 60px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 48px; margin-bottom: 52px; }
.footer-brand-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(237,233,221,.6); line-height: 1.8; max-width: 230px; }
.footer-col-head {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; color: var(--honey); text-transform: uppercase; margin-bottom: 20px;
}
.footer-link {
  display: block; font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: rgba(237,233,221,.68); margin-bottom: 3px; text-decoration: none;
  transition: color .2s; background: none; border: none; cursor: pointer; text-align: left;
  padding: 4px 0; /* comfortable tap target on mobile */
}
.footer-link:hover { color: var(--honey-light); }
.footer-status { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-status-txt {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--bone);
}
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.footer-copy { font-family: var(--sans); font-size: 11px; font-weight: 300; letter-spacing: .04em; color: rgba(237,233,221,.42); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav { padding: 0 20px; height: 64px; }
  .hero { padding: 130px 24px 64px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stats > div { padding: 22px 24px 0 0; margin-right: 24px; }
  .section { padding: 72px 24px; }
  .manifesto { padding: 84px 24px; }
  .cta-section { padding: 84px 24px; }
  .page-hero { padding: 140px 24px 60px; }
  .pa-hero { padding: 150px 24px 64px; }
  .footer { padding: 60px 24px 36px; }
  .contact-panel { position: static; }
  .grid-3, .grid-2, .grid-2-wide, .grid-2-photo { grid-template-columns: 1fr !important; }
  .grid-3 > * + * { border-left: none; border-top: 1px solid var(--border); }
  .contact-main-grid { grid-template-columns: 1fr !important; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}


/* ═══ HOMEPAGE COMPONENTS (doors, Was It Legal band, steps, cost) ═══ */
    /* Plain-language entry doors */
    .doors{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border:1px solid var(--border)}
    .doors>*+*{border-left:1px solid var(--border)}
    .door{background:var(--paper);padding:46px 38px 40px;display:block;position:relative;transition:background .35s cubic-bezier(.4,0,.2,1)}
    .door:hover{background:var(--moss)}
    .door-q{font-family:var(--serif);font-size:22px;font-weight:500;font-style:italic;color:var(--label);line-height:1.3;margin-bottom:18px;min-height:58px;transition:color .35s}
    .door:hover .door-q{color:var(--honey)}
    .door-header{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:14px}
    .door-title{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--text-mid);transition:color .35s}
    .door:hover .door-title{color:rgba(237,233,221,.6)}
    .door-desc{font-family:var(--sans);font-size:14px;font-weight:300;color:var(--text-mid);line-height:1.85;margin-bottom:26px;transition:color .35s}
    .door:hover .door-desc{color:rgba(237,233,221,.75)}
    .door-link{font-family:var(--sans);font-size:11px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--label);transition:color .35s}
    .door:hover .door-link{color:var(--honey-light)}
    .door:hover .chip{color:var(--honey);border-color:rgba(172,130,85,.45)}
    @media(max-width:860px){.doors{grid-template-columns:1fr}.doors>*+*{border-left:none;border-top:1px solid var(--border)}.door-q{min-height:0}}

    /* "Was It Legal?" feature band */
    .wil{background:var(--moss);padding:110px 60px;position:relative;overflow:hidden;
      --text:var(--bone);--text-mid:rgba(237,233,221,.72);--border:rgba(237,233,221,.14);--label:var(--honey);
      --btn-bg:var(--honey);--btn-ink:var(--moss);--btn-bg-hover:var(--honey-light)}
    .wil::before{content:'';position:absolute;left:-70px;top:50%;transform:translateY(-50%);width:380px;height:380px;background:url('emblem.svg') no-repeat center/contain;opacity:.05;pointer-events:none}
    .wil-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.05fr 1fr;gap:80px;align-items:center;position:relative}
    .wil-name{font-family:var(--serif);font-size:clamp(42px,5.5vw,72px);font-weight:500;font-style:italic;color:var(--bone);line-height:1.05;letter-spacing:-.015em;margin-bottom:14px}
    .wil-name em{color:var(--honey);font-style:italic}
    .wil-subtitle{font-family:var(--sans);font-size:12px;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:var(--honey);margin-bottom:26px}
    .wil-desc{font-family:var(--sans);font-size:15px;font-weight:300;color:rgba(237,233,221,.75);line-height:1.9;margin-bottom:14px}
    .wil-points{margin:26px 0 34px;border-top:1px solid rgba(237,233,221,.12)}
    .wil-point{display:flex;gap:16px;align-items:baseline;padding:13px 0;border-bottom:1px solid rgba(237,233,221,.12)}
    .wil-point-num{font-family:var(--serif);font-size:14px;font-style:italic;color:var(--honey);flex-shrink:0}
    .wil-point-txt{font-family:var(--sans);font-size:14px;font-weight:300;color:rgba(237,233,221,.78);line-height:1.6}
    /* static quiz preview */
    .wil-mock{background:var(--bone);padding:34px 32px;position:relative;box-shadow:0 40px 90px rgba(0,0,0,.4)}
    .wil-mock-progress{height:2px;background:rgba(6,37,16,.12);margin-bottom:26px;position:relative}
    .wil-mock-progress::after{content:'';position:absolute;left:0;top:0;bottom:0;width:38%;background:var(--honey)}
    .wil-mock-step{font-family:var(--sans);font-size:10px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:#7E5A31;margin-bottom:12px}
    .wil-mock-q{font-family:var(--serif);font-size:22px;font-weight:500;color:var(--moss);line-height:1.3;margin-bottom:20px}
    .wil-mock-opt{display:flex;align-items:center;gap:12px;border:1px solid rgba(6,37,16,.16);padding:13px 16px;margin-bottom:9px;font-family:var(--sans);font-size:13.5px;font-weight:300;color:rgba(6,37,16,.75);background:var(--paper)}
    .wil-mock-opt.sel{border-color:var(--honey);background:rgba(172,130,85,.1);color:var(--moss)}
    .wil-mock-dot{width:14px;height:14px;border:1.5px solid rgba(6,37,16,.3);border-radius:50%;flex-shrink:0}
    .wil-mock-opt.sel .wil-mock-dot{border-color:var(--honey);background:radial-gradient(circle at center,var(--honey) 45%,transparent 50%)}
    .wil-mock-note{font-family:var(--sans);font-size:11px;font-weight:300;color:rgba(6,37,16,.5);margin-top:18px;line-height:1.6}
    @media(max-width:860px){.wil{padding:80px 24px}.wil-inner{grid-template-columns:1fr;gap:44px}}

    /* Steps: what happens when you call */
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:56px;counter-reset:step}
    .step-item{position:relative;padding-top:24px}
    .step-item::before{content:'';position:absolute;top:0;left:0;width:34px;height:1px;background:var(--honey)}
    .step-num{font-family:var(--serif);font-size:52px;font-weight:400;font-style:italic;color:var(--label);line-height:1;margin-bottom:16px;opacity:.85}
    .step-title{font-family:var(--serif);font-size:20px;font-weight:500;color:var(--text);margin-bottom:10px}
    .step-desc{font-family:var(--sans);font-size:14px;font-weight:300;color:var(--text-mid);line-height:1.85}
    @media(max-width:860px){.steps{grid-template-columns:1fr;gap:36px}}

    /* Cost clarity strip */
    .cost{border:1px solid var(--border);display:grid;grid-template-columns:repeat(3,1fr)}
    .cost>*+*{border-left:1px solid var(--border)}
    .cost-cell{padding:36px 32px;background:var(--paper)}
    .cost-big{font-family:var(--serif);font-size:30px;font-weight:500;color:var(--text);margin-bottom:8px}
    .cost-big em{color:var(--label);font-style:italic}
    .cost-txt{font-family:var(--sans);font-size:13.5px;font-weight:300;color:var(--text-mid);line-height:1.8}
    @media(max-width:860px){.cost{grid-template-columns:1fr}.cost>*+*{border-left:none;border-top:1px solid var(--border)}}

/* evaluator hero link (homepage + employment hero) */
.hero-quiet, .pa-hero .hero-quiet {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: rgba(237,233,221,.6); margin-top: 20px;
}
.hero-quiet a { color: var(--honey); border-bottom: 1px solid rgba(172,130,85,.4); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.hero-quiet a:hover { color: var(--honey-light); border-color: var(--honey-light); }

/* ── "WAS IT LEGAL?" NAV FEATURE ── */
.nav-link.nav-wil {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 16px; letter-spacing: 0; text-transform: none;
  color: var(--honey); text-align: left; line-height: 1;
}
.nav-link.nav-wil span {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 8px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(237,233,221,.5);
  margin-top: 4px;
}
.nav-link.nav-wil:hover { color: var(--honey-light); }
.nav-link.nav-wil:hover span { color: rgba(237,233,221,.7); }
.nav-link.nav-wil::after { bottom: -8px; }

.nav-mobile-link.nav-wil-mobile {
  color: var(--honey); text-align: center; font-style: italic;
}
.nav-mobile-link.nav-wil-mobile span {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(237,233,221,.55);
  margin-top: 5px;
}
