/* ============================================
   Cozzette Accounting — Stylesheet v5
   Design language: Hero.html (Geist + Instrument Serif, warm paper tones)

   TABLE OF CONTENTS:
   1. Design Tokens
   2. Reset & Base
   3. Site Nav & Logo
   4. Hero Section (Form 1040 background)
   5. Quick Links
   6. Deadlines
   7. Services
   8. Why / Split
   9. Testimonials
   10. CTA
   11. Inner Pages
   12. Footer
   13. Utilities & Animations
   14. Responsive
   ============================================ */

/* === 1. Design Tokens === */
:root {
  --paper:       oklch(0.972 0.006 85);
  --paper-2:     oklch(0.962 0.006 85);
  --rule:        oklch(0.910 0.005 85);
  --rule-s:      oklch(0.820 0.005 85);
  --ink:         oklch(0.220 0.008 85);
  --ink-soft:    oklch(0.420 0.006 85);
  --ink-mute:    oklch(0.580 0.005 85);
  --bg-ink:      oklch(0.720 0.005 85);
  --bg-mute:     oklch(0.820 0.004 85);
  --red:         #b11018;
  --gold:        #fcbc45;

  --px:      clamp(48px, 7vw, 140px);
  --section: clamp(80px, 9vw, 120px);
  --nav-h:   73px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === 2. Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === 3. Site Nav & Logo === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--px);
  border-bottom: 1px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s var(--ease);
}

/* CAC brand mark */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cac {
  display: inline-flex;
  height: 31px;
  align-items: stretch;
}

.cac span {
  width: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--red);
  border: 1.25px solid var(--red);
  background: transparent;
  padding-top: 2px;
  letter-spacing: -0.01em;
}

.cac span + span { border-left: 0; }

.cac span.fill {
  background: var(--red);
  color: var(--paper);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16.8px;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-tag {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 12.5px;
  color: color-mix(in oklch, var(--red) 55%, var(--ink-mute));
  letter-spacing: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.nav-links a { color: inherit; transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

/* Nav CTA */
.nav-pill {
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-pill:hover { opacity: 0.85; transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,25,20,0.35);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.open { display: block; opacity: 1; }

.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--paper);
  z-index: 99;
  padding: calc(var(--nav-h) + 1.5rem) 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.08);
  border-left: 1px solid var(--rule);
}

.nav-drawer.open { right: 0; }

.nav-drawer a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--red); }
.nav-drawer a:last-child { border-bottom: none; }

.nav-cta-drawer {
  margin-top: 1.5rem !important;
  display: block !important;
  text-align: center;
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-radius: 999px !important;
  padding: 0.875rem !important;
  border: none !important;
}

/* === 4. Hero Section (Form 1040 background) === */
.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 80% at 80% 0%, oklch(0.98 0.006 85) 0%, var(--paper) 55%, var(--paper-2) 100%);
}

.bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ledger {
  position: absolute;
  left: 0; right: -4%; top: var(--nav-h); bottom: 0;
  opacity: 0.46;
  -webkit-mask-image: radial-gradient(200% 170% at 100% 100%, black 0%, black 30%, color-mix(in oklch, black 55%, transparent) 62%, transparent 90%);
  mask-image: radial-gradient(200% 170% at 100% 100%, black 0%, black 30%, color-mix(in oklch, black 55%, transparent) 62%, transparent 90%);
}

.ledger-inner {
  position: absolute;
  inset: 0;
  padding: 0;
  transform: rotate(-1.2deg) translate(-2%, 4%);
  transform-origin: 0 0;
  width: 112%;
}

/* Form 1040 */
.form-1040 {
  font-family: "Geist", sans-serif;
  color: var(--bg-ink);
  font-size: 11.5px;
  line-height: 1.3;
}

.form-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border-bottom: 2.5px solid var(--bg-ink);
  padding-bottom: 10px;
  margin-bottom: 14px;
  gap: 24px;
}

.form-head-l {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-id {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-id .big {
  font-family: "Monda", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--bg-ink);
  text-transform: none;
}

.form-title { font-style: italic; font-size: 14px; font-weight: 500; }

.form-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  color: var(--bg-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-head-r {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  border: 1.5px solid var(--bg-ink);
  padding: 4px 14px 6px;
  min-width: 130px;
}

.form-year-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bg-mute);
}

.form-year {
  font-family: "Monda", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--bg-ink);
  line-height: 1;
}

.form-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
}

.form-strip-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
  padding-right: 12px;
  border-right: 1px solid var(--rule);
}

.form-strip label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bg-ink);
}

.form-strip .box {
  width: 12px;
  height: 12px;
  border: 1.25px solid var(--bg-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--red);
  background: var(--paper);
}

.form-strip .box.checked::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}

.form-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.form-info > div {
  padding: 8px 12px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-info > div:first-child { border-left: 0; padding-left: 0; }

.form-info > div.span-all {
  grid-column: 1 / -1;
  border-left: 0;
  padding-left: 0;
  border-top: 1px solid var(--rule);
}

.form-info .lbl {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-mute);
  font-weight: 500;
}

.form-info .val {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--bg-ink);
}

.form-section {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: color-mix(in oklch, var(--bg-ink) 14%, transparent);
  padding: 6px 10px;
  margin-top: 14px;
  color: var(--bg-ink);
}

.form-lines { list-style: none; padding: 0; margin: 0; }

.form-lines li {
  display: grid;
  grid-template-columns: 34px 1fr 120px;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  color: var(--bg-ink);
}

.form-lines li .no {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 10.5px;
  text-align: center;
  border-right: 1px solid var(--rule);
  padding: 0 6px;
}

.form-lines li .desc {
  padding: 0 10px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  overflow: hidden;
}

.form-lines li .dots {
  flex: 1;
  border-bottom: 1px dotted color-mix(in oklch, var(--bg-mute) 80%, transparent);
  margin-bottom: 4px;
  min-width: 24px;
}

.form-lines li .amt {
  font-family: "JetBrains Mono", monospace;
  text-align: right;
  font-size: 12px;
  letter-spacing: -0.01em;
  border-left: 1px solid var(--rule);
  padding-left: 10px;
}

.form-lines li.bold {
  background: color-mix(in oklch, var(--bg-ink) 4%, transparent);
  font-weight: 600;
}

.form-lines li.bold .amt { font-weight: 600; }

.form-lines li.highlight {
  background: color-mix(in oklch, var(--gold) 35%, transparent);
}

.form-lines li.highlight .amt {
  color: color-mix(in oklch, var(--red) 60%, var(--bg-ink));
  font-weight: 600;
}

.margin-rule {
  position: absolute;
  left: 11%;
  top: 0; bottom: 0;
  width: 1px;
  background: color-mix(in oklch, var(--red) 40%, transparent);
  opacity: 0.25;
}

.chart {
  position: absolute;
  left: 0; right: 0;
  top: 58%;
  height: 240px;
  pointer-events: none;
  opacity: 0.7;
}

.chart svg { width: 100%; height: 100%; display: block; overflow: visible; }
.chart .area { fill: color-mix(in oklch, var(--red) 9%, transparent); }
.chart .line { fill: none; stroke: color-mix(in oklch, var(--red) 70%, var(--bg-ink)); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.chart .pt { fill: var(--paper); stroke: color-mix(in oklch, var(--red) 70%, var(--bg-ink)); stroke-width: 1.5; }
.chart .pt.last { fill: var(--red); stroke: var(--red); }
.chart .label { font-family: "JetBrains Mono", monospace; font-size: 10px; fill: var(--bg-mute); letter-spacing: 0.12em; text-transform: uppercase; }
.chart .value { font-family: "Instrument Serif", serif; font-style: italic; font-size: 18px; fill: color-mix(in oklch, var(--red) 80%, var(--bg-ink)); }
.chart .gridline { stroke: var(--rule); stroke-dasharray: 2 4; }

.annot {
  position: absolute;
  z-index: 2;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  color: color-mix(in oklch, var(--red) 65%, var(--bg-ink));
  font-size: 16px;
  pointer-events: none;
  opacity: 0.75;
}

.annot .arrow-svg { display: block; }

.annot.q3 {
  right: 6%; top: 26%;
  max-width: 220px;
  text-align: left;
}

.annot.q3 p { margin: 0 0 6px; }

.grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(40,30,15,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  z-index: 2;
}

.stamp {
  position: absolute;
  right: var(--px);
  bottom: 80px;
  top: auto;
  z-index: 2;
  border: 1.5px solid color-mix(in oklch, var(--red) 55%, var(--bg-mute));
  color: color-mix(in oklch, var(--red) 55%, var(--bg-mute));
  padding: 10px 16px;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  opacity: 0.55;
  line-height: 1.35;
  text-align: center;
}

.stamp b { display: block; font-size: 13px; letter-spacing: 0.3em; }

/* Hero stage / copy */
.stage {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 48px) clamp(16px, 2vw, 48px) 56px var(--px);
  max-width: 1400px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--rule-s);
  border-radius: 999px;
  background: color-mix(in oklch, var(--paper) 70%, transparent);
}

.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--red) 22%, transparent);
  flex-shrink: 0;
}

.stage h1 {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: clamp(57px, 7.4vw, 105px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 28px 0 0;
  max-width: none;
  color: var(--ink);
  text-wrap: balance;
}

.stage h1 em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

.stage h1 .ital {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  letter-spacing: -0.01em;
}

.lede {
  margin: 32px 0 0;
  max-width: 46ch;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-pill {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-pill:hover { transform: translateY(-1px); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover { opacity: 0.88; }

.btn-dark .arrow { transition: transform 0.2s ease; }
.btn-dark:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--rule-s);
}

.btn-ghost:hover { border-color: var(--ink); }

.btn-red {
  background: var(--red);
  color: var(--paper);
}

.btn-red:hover { opacity: 0.9; }

.trust {
  margin-top: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 760px;
}

.trust .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

.trust .logos {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.3;
}

.trust .logos .sep {
  color: var(--red);
  margin: 0 10px;
  font-style: normal;
  opacity: 0.7;
}

/* === 5. Quick Links === */
.quick-links {
  padding: clamp(60px, 7vw, 96px) var(--px);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.quick-links-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-mono::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.ql-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.ql-card {
  background: var(--paper);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.2s;
}

.ql-card:hover { background: oklch(0.985 0.004 85); }

.ql-card-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.75rem;
}

.ql-card h3,
.ql-card-heading {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.625rem;
}

.ql-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

.ql-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8840a;
  transition: gap 0.2s;
}

.ql-card-link svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

.ql-card:hover .ql-card-link { gap: 10px; }

/* === 6. Deadlines === */
.deadlines {
  padding: clamp(60px, 7vw, 96px) var(--px);
  background: var(--paper);
}

.deadlines-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.deadlines-intro h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.deadlines-intro p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.deadline-list {
  border-top: 1px solid var(--rule);
}

.deadline-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}

.deadline-row:hover { background: var(--paper-2); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }

.deadline-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.deadline-desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.deadline-desc strong {
  font-weight: 600;
  color: var(--ink);
}

.deadline-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.deadline-tag.key {
  background: color-mix(in oklch, var(--red) 12%, transparent);
  color: var(--red);
  border: 1px solid color-mix(in oklch, var(--red) 25%, transparent);
}

.deadline-tag.est {
  background: color-mix(in oklch, var(--gold) 20%, transparent);
  color: color-mix(in oklch, var(--gold) 60%, var(--ink));
  border: 1px solid color-mix(in oklch, var(--gold) 40%, transparent);
}

.deadline-tag.ext {
  background: color-mix(in oklch, var(--bg-ink) 8%, transparent);
  color: var(--ink-mute);
  border: 1px solid var(--rule-s);
}

/* === 7. Services === */
.services-section {
  padding: var(--section) var(--px);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.services-header h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.0;
}

.services-header p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.svc-card {
  background: var(--paper);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.2s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.svc-card:hover { background: oklch(0.985 0.004 85); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  margin-bottom: 1.125rem;
  transition: border-color 0.2s, color 0.2s;
}

.svc-card:hover .svc-icon { border-color: var(--red); color: var(--red); }

.svc-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; }

.svc-card h3 {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.svc-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.2s, gap 0.2s;
}

.svc-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.svc-card:hover .svc-link { color: var(--gold); gap: 8px; }

/* Dark service CTA card */
.svc-card.dark {
  background: var(--ink);
}

.svc-card.dark::after { display: none; }
.svc-card.dark:hover { background: oklch(0.28 0.008 85); }
.svc-card.dark .svc-icon { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
.svc-card.dark:hover .svc-icon { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.6); }
.svc-card.dark h3 { color: var(--paper); }
.svc-card.dark p { color: rgba(255,255,255,0.45); }
.svc-card.dark .svc-link { color: rgba(255,255,255,0.4); }
.svc-card.dark:hover .svc-link { color: var(--gold); }

/* === 8. Why / Split === */
.why-section {
  padding: var(--section) var(--px);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-text h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.why-text h2 .ital {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  letter-spacing: -0.01em;
}

.why-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-points {
  border-top: 1px solid var(--rule);
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--rule);
}

.why-point-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 3px;
  min-width: 28px;
}

.why-point-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.why-point p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Stats visual panel */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.stat-block {
  background: var(--paper-2);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-block.accent {
  background: var(--red);
}

.stat-num {
  font-family: "Geist", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-block.accent .stat-num { color: var(--paper); }

.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.45;
}

.stat-block.accent .stat-label { color: rgba(255,255,255,0.6); }

/* === 9. Testimonials === */
.testimonials-section {
  padding: var(--section) var(--px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 0.75rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.testi-card {
  background: var(--paper);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testi-star {
  width: 14px; height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-quote {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
}

.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--red) 12%, transparent);
  border: 1px solid color-mix(in oklch, var(--red) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.testi-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 1px;
}

/* === 10. CTA === */
.cta-section {
  padding: clamp(80px, 10vw, 120px) var(--px);
  background: var(--ink);
  text-align: center;
}

.cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--paper);
  line-height: 1.0;
  margin-bottom: 1rem;
}

.cta-inner h2 .ital {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.cta-inner p {
  color: rgba(255,255,255,0.45);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-paper {
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", sans-serif;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-paper:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-paper .arrow { transition: transform 0.2s; }
.btn-paper:hover .arrow { transform: translateX(3px); }

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: "Geist", sans-serif;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-light:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); }

/* === 11. Inner Pages === */
.page-header {
  padding: calc(var(--nav-h) + clamp(48px, 7vw, 80px)) var(--px) clamp(48px, 7vw, 72px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-inner h1 {
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 1rem;
  margin-bottom: 1.125rem;
  max-width: 20ch;
}

.page-header-inner h1 .ital {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}

.page-header-inner p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 50ch;
}

/* Services page */
.svc-detail-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section) var(--px);
}

.svc-detail {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.svc-detail:first-child { border-top: 1px solid var(--rule); }

.svc-detail-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 5px;
  text-transform: uppercase;
}

.svc-detail-body h3 {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.svc-detail-body p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.875rem; font-size: 1rem; }

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.svc-feature::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* About page */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.about-split-text {
  padding: clamp(48px, 8vw, 96px) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}

.about-split-text h1 {
  font-family: "Geist", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.about-split-text h1 .ital {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}

.about-split-text p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.about-split-visual {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.about-num {
  font-family: "Geist", sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.about-num-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* "18+ years" — "years" in Instrument Serif italic for editorial contrast */
.about-num-unit {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(255,255,255,0.7);
  vertical-align: 0.08em;
  margin-left: 0.12em;
}

.about-ea-card {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(177,16,24,0.3);
  border-radius: 8px;
  background: rgba(177,16,24,0.08);
  max-width: 280px;
  text-align: center;
}

.about-ea-card-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-ea-card p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

.about-body {
  padding: var(--section) var(--px);
  max-width: 1200px;
  margin: 0 auto;
}

.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.about-2col h2 {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 0.75rem;
  margin-bottom: 1.125rem;
}

.about-2col p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ea-fact-list {
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}

.ea-fact {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.ea-fact:last-child { border-bottom: none; }
.ea-fact:nth-child(even) { background: var(--paper-2); }

.ea-fact-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.ea-fact p { font-size: 0.875rem; line-height: 1.6; color: var(--ink-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}

.value-card {
  background: var(--paper);
  padding: 1.75rem;
  transition: background 0.2s;
}

.value-card:hover { background: var(--paper-2); }

.value-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-family: "Geist", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.value-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section) var(--px);
  gap: 5rem;
}

.contact-sidebar-title {
  font-family: "Geist", sans-serif;
  font-size: 1.44rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.contact-detail { margin-bottom: 2rem; }

.contact-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-value {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-value a { color: var(--ink-soft); transition: color 0.2s; }
.contact-value a:hover { color: var(--ink); }

.contact-hours { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--rule); }

.contact-hours-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.hours-row:last-child { border-bottom: none; }

.contact-form-wrap {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-title {
  font-family: "Geist", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.contact-form-sub { font-size: 0.875rem; color: var(--ink-mute); margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--rule-s);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--ink); }

.form-field textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 1.5rem; }
.form-submit .btn-pill { width: 100%; justify-content: center; }
.form-note { margin-top: 0.75rem; font-size: 0.8rem; color: var(--ink-mute); text-align: center; }

.location-bar {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 1.5rem var(--px);
}

.location-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.location-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.location-address {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* === 12. Footer === */
.footer {
  background: var(--ink);
  padding: clamp(3.5rem, 6vw, 5rem) var(--px) 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 26ch;
  margin: 1rem 0 1.25rem;
}

.footer-cac { }
.footer-cac span { background: transparent; border-color: rgba(255,255,255,0.55); color: rgba(255,255,255,0.9); }
.footer-cac span.fill { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.55); }
.footer-brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16.25px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}

.footer-ea-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(252,188,69,0.25);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252,188,69,0.55);
}

.footer-col-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252,188,69,0.45);
  margin-bottom: 1.125rem;
}

.footer-col-links { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col-links a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.18); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.18); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* === 13. Utilities & Animations === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.stage .eyebrow  { animation: fadeUp 0.7s 0.05s var(--ease) both; }
.stage h1        { animation: fadeUp 0.8s 0.12s var(--ease) both; }
.stage .lede     { animation: fadeUp 0.7s 0.20s var(--ease) both; }
.stage .hero-actions { animation: fadeUp 0.7s 0.27s var(--ease) both; }
.stage .trust    { animation: fadeUp 0.7s 0.35s var(--ease) both; }

.page-header-inner .section-mono { animation: fadeUp 0.6s 0s var(--ease) both; }
.page-header-inner h1  { animation: fadeUp 0.7s 0.08s var(--ease) both; }
.page-header-inner p   { animation: fadeUp 0.6s 0.15s var(--ease) both; }

/* === 14. Responsive === */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-split-text { border-right: none; border-bottom: 1px solid var(--rule); }
  .about-split-visual { min-height: 360px; }
  .about-2col { grid-template-columns: 1fr; gap: 3rem; }
  .deadlines-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .svc-detail { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-pill { display: none; }
  .nav-burger { display: flex; }
  .brand-tag { display: none; }
  .site-nav { padding: 0 clamp(20px, 4vw, 40px); }
  .stage { padding-left: clamp(20px, 4vw, 40px); padding-right: clamp(20px, 4vw, 40px); }
  /* Trust strip — prevent overflow */
  .trust-below { padding-left: 1.25rem; padding-right: 1.25rem; overflow: hidden; }
  .trust-below-inner { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .trust-cities { font-size: 13px; line-height: 1.7; overflow-wrap: anywhere; word-break: break-word; }
  .trust-since { font-size: 9px; }
  /* Nav logo: smaller CAC, larger text */
  .cac { height: 20px; }
  .cac span { width: 20px; font-size: 14px; }
  .brand-name { font-size: 14.4px; letter-spacing: 0.04em; }
  /* Drawer links 15% smaller */
  .nav-drawer a { font-size: 0.95rem; padding: 0.85rem 0; }
  /* Eyebrow all on one line */
  .eyebrow { font-size: 8.5px; letter-spacing: 0.05em; padding: 5px 9px; gap: 6px; white-space: nowrap; }
  /* About page: 18+ Years centered */
  .about-years { text-align: center; width: 100%; }
  .about-num { text-align: center; }
  .about-num-unit { font-size: 0.78em; }
  .about-num-label { text-align: center; }
  /* Hero lede smaller on mobile */
  .lede { font-size: 0.9rem; line-height: 1.6; }
  /* Trust strip cities centered */
  .trust-below-inner { align-items: center; text-align: center; }
  .trust-since { text-align: center; }
  .ql-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stamp {
    top: calc(var(--nav-h) + 258px);
    bottom: auto;
    right: 18px;
    font-size: 9px;
    padding: 7px 11px;
    letter-spacing: 0.18em;
    transform: rotate(-3deg);
    opacity: 0.47;
  }
  .ledger { opacity: 0.28; }
  .annot.q3 { display: none; }
  .deadline-row { grid-template-columns: 110px 1fr; }
  .deadline-tag { display: none; }
  .trust { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
}

/* === Additions: Trust-below strip, footer brand top, gold accents === */

/* Trust strip below hero */
.trust-below {
  background: var(--paper-2);
  border-bottom: 1px solid var(--gold);
  padding: 1.125rem var(--px);
}

.trust-below-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-since {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-cities {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.3;
}

.trust-cities .sep {
  color: var(--gold);
  margin: 0 8px;
  font-style: normal;
  opacity: 0.85;
}

/* Gold bottom line on hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

/* Footer brand top — clean class replaces inline style */
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Footer CAC — compact */
.footer-cac {
  height: 28px;
}

.footer-cac span {
  width: 28px;
  font-size: 18px;
}

/* Gold accent border on page-header left */
.page-header {
  border-left: 2px solid var(--gold);
  padding-left: calc(var(--px) - 2px);
}

/* Deadlines section: gold left border on hover row */
.deadline-row:hover {
  border-left: 1px solid var(--gold);
  padding-left: calc(1rem - 1px);
}

/* Gold left accent on testi cards on hover */
.testi-card {
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.testi-card:hover {
  border-left-color: var(--gold);
  background: oklch(0.985 0.004 85);
}

/* EA strip: gold badge */
.ea-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(252,188,69,0.35);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  display: inline-flex;
}

/* Gold dot before section labels on dark CTA */
.cta-section .section-mono::before { background: var(--gold); }

/* Footer brand name slightly larger + cleaner */
.footer-brand-name {
  font-size: 13.75px;
  line-height: 1.15;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.footer-brand-sub {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.25);
  margin-top: 2px;
}

/* Gold highlight bar on services page section tag */
.svc-detail:first-child { border-top: 1px solid var(--rule); }

/* trust strip now below hero section */


/* About page: photo in dark visual panel */
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.about-years,
.about-ea-card {
  position: relative;
  z-index: 1;
}

/* Image logo — replaces CSS-built CAC mark */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0.82;
  filter: brightness(0) invert(1);  /* makes PNG white on dark footer */
}

@media (max-width: 768px) {
  .nav-logo-img { height: 28px; }
}
