/* RESERVE TAX GROUP — fresh design
   Navy brand foundation + emerald savings accent + brass detail.
   Instrument Serif display + Inter body + IBM Plex Mono numerics.
*/

:root {
  --navy: #0a2540;
  --navy-soft: #133557;
  --cream: #fbf9f4;
  --cream-warm: #f4ead5;
  --emerald: #1d7556;
  --emerald-soft: #2d9870;
  --brass: #b8965b;
  --charcoal: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e8e2d3;
  --border-soft: #f0ebde;

  --max-w: 1240px;
  --content-w: 760px;

  --radius-sm: 4px;
  --radius-md: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--emerald); color: var(--cream); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
.serif { font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif; font-weight: 400; }
.mono  { font-family: 'IBM Plex Mono', 'JetBrains Mono', 'Courier New', monospace; }

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p { line-height: 1.65; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* EYEBROW */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--emerald);
  margin-bottom: 18px;
}
.section-navy .eyebrow { color: var(--brass); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 16px 28px;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  border-radius: var(--radius-md);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}
.btn:hover { background: var(--navy-soft); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(10, 37, 64, 0.18); }
.btn:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); }

.btn-emerald {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--cream);
}
.btn-emerald:hover { background: var(--emerald-soft); border-color: var(--emerald-soft); }

.btn-on-navy {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn-on-navy:hover { background: #fff; border-color: #fff; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.wordmark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.wordmark .dot { color: var(--emerald); }
.wordmark:hover { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  position: relative;
}
.nav-links a:hover { color: var(--emerald); }
.nav-links .btn {
  padding: 12px 22px;
  font-size: 14px;
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--cream);
}
.nav-links .btn:hover {
  background: var(--emerald-soft);
  border-color: var(--emerald-soft);
  color: var(--cream);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--navy);
  font-size: 22px;
  padding: 4px 8px;
}

/* HERO */
.hero {
  padding: 110px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: 92px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--emerald); font-style: italic; }
.hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO STAT TILE - the right side visual */
.hero-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.hero-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--emerald);
}
.hero-tile-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero-tile-figure {
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hero-tile-figure .unit { font-size: 40px; color: var(--emerald); vertical-align: 5px; }
.hero-tile-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-tile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-tile-stat .v {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-tile-stat .l {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* SECTIONS */
section { padding: 120px 0; }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy p { color: rgba(251, 249, 244, 0.85); }
.section-cream-warm { background: var(--cream-warm); }

.section-head { max-width: 760px; margin-bottom: 72px; }
.section-head h2 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-head .lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 580px;
}
.section-navy .section-head .lead { color: rgba(251, 249, 244, 0.75); }

/* CALCULATOR SECTION */
.calculator-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, var(--cream-warm) 60%, var(--cream-warm) 100%);
}
.calc-wrap {
  background: var(--navy);
  color: var(--cream);
  border-radius: 12px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.calc-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(29, 117, 86, 0.18), transparent 50%);
  pointer-events: none;
}
.calc-header {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.calc-header .eyebrow { color: var(--brass); }
.calc-header h2 {
  font-size: 44px;
  color: var(--cream);
  line-height: 1.05;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}

/* CALC INPUTS */
.calc-inputs > * + * { margin-top: 28px; }
.calc-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(251, 249, 244, 0.6);
  margin-bottom: 14px;
  display: block;
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(251, 249, 244, 0.75);
  background: transparent;
  border: 1px solid rgba(251, 249, 244, 0.2);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.16s ease;
}
.pill:hover { border-color: rgba(251, 249, 244, 0.4); color: var(--cream); }
.pill.active {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slider-readout {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.slider-readout .num {
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.slider-readout .helper {
  font-size: 13px;
  color: rgba(251, 249, 244, 0.5);
}
input[type=range].calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(251, 249, 244, 0.15);
  border-radius: 999px;
  outline: none;
}
input[type=range].calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(251, 249, 244, 0.12);
}
input[type=range].calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 4px rgba(251, 249, 244, 0.12);
}

/* CALC OUTPUTS */
.calc-outputs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.calc-result + .calc-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 249, 244, 0.12);
}
.calc-result-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(251, 249, 244, 0.6);
  margin-bottom: 12px;
}
.calc-result-value {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.calc-result.primary .calc-result-value {
  font-size: 56px;
  color: var(--emerald-soft);
}
.calc-result-sub {
  font-size: 14px;
  color: rgba(251, 249, 244, 0.6);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.calc-result-sub span {
  color: rgba(251, 249, 244, 0.85);
}
.calc-result-helper {
  font-size: 13px;
  color: rgba(251, 249, 244, 0.55);
  margin-top: 8px;
  line-height: 1.5;
}
.calc-cta-row {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 249, 244, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.calc-cta-row p {
  font-size: 13px;
  color: rgba(251, 249, 244, 0.55);
  max-width: 320px;
  margin: 0;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.process-step {
  position: relative;
}
.process-num {
  font-family: 'Instrument Serif', serif;
  font-size: 64px;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.process-step h3 {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.process-step p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 340px;
}

/* SERVICE AREAS - tabs */
.areas-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(251, 249, 244, 0.15);
}
.area-tab {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 16px 24px;
  background: transparent;
  border: none;
  color: rgba(251, 249, 244, 0.6);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.area-tab:hover { color: var(--cream); }
.area-tab.active {
  color: var(--cream);
  border-bottom-color: var(--brass);
}
.area-panel { display: none; }
.area-panel.active { display: block; animation: fadeIn 0.3s ease; }

.area-meta {
  font-size: 14px;
  color: rgba(251, 249, 244, 0.55);
  font-style: italic;
  margin-bottom: 32px;
}
.county-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}
.county-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(251, 249, 244, 0.1);
}
.county-name {
  font-size: 17px;
  color: var(--cream);
}
.county-deadline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.02em;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* WHO WE SERVE */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.serve-intro {
  font-size: 19px;
  color: var(--charcoal);
  line-height: 1.65;
}
.serve-list {
  list-style: none;
  border-top: 1px solid var(--border);
}
.serve-list li {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--navy);
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: padding-left 0.2s ease;
}
.serve-list li:hover { padding-left: 8px; }
.serve-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  flex-shrink: 0;
}

/* RESULTS - case studies */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.case {
  background: rgba(251, 249, 244, 0.04);
  border: 1px solid rgba(251, 249, 244, 0.1);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.case:hover { border-color: rgba(184, 150, 91, 0.5); transform: translateY(-2px); }
.case-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-bottom: 18px;
}
.case h3 {
  font-size: 30px;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 18px;
}
.case p {
  font-size: 15px;
  color: rgba(251, 249, 244, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}
.case-stats {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--brass);
  padding-top: 20px;
  border-top: 1px solid rgba(184, 150, 91, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.case-stat .l { color: rgba(251, 249, 244, 0.45); margin-right: 6px; font-size: 11px; }
.case-stat .v { color: var(--brass); }
.case-stat .v.win { color: var(--emerald-soft); }

.results-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brass);
  border-bottom: 1px solid transparent;
  transition: all 0.18s ease;
}
.results-link:hover { border-bottom-color: var(--brass); }

/* ABOUT SNAPSHOT */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-grid h2 { font-size: 44px; line-height: 1.05; margin-bottom: 28px; }
.about-grid p {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}
.creds {
  border-top: 1px solid var(--border);
}
.cred-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.cred-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.cred-value {
  font-family: 'Instrument Serif', serif;
  font-size: 19px;
  color: var(--navy);
  text-align: right;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--emerald);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.18s ease;
}
.about-link:hover { border-bottom-color: var(--emerald); }

/* FAQ */
.faq-section { padding: 120px 0; }
.faq-section .section-head { margin-bottom: 56px; }
.faq-section .section-head h2 { font-size: 48px; }
.faq-list { max-width: var(--content-w); }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  list-style: none;
  gap: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.25;
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--emerald);
  transition: transform 0.2s ease;
  margin-top: 4px;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  margin-top: 18px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

/* FINAL CTA */
.cta-section { text-align: center; padding: 130px 0; }
.cta-section .eyebrow { display: inline-block; }
.cta-section h2 {
  font-size: 64px;
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 28px;
}
.cta-section h2 .em {
  color: var(--brass);
  font-style: italic;
}
.cta-section .lead {
  font-size: 18px;
  color: rgba(251, 249, 244, 0.7);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* FOOTER */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-tag {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.55;
}
.footer-head {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li, .footer-line {
  font-size: 14px;
  color: var(--charcoal);
  padding: 5px 0;
}
.footer-grid li a:hover, .footer-line a:hover { color: var(--emerald); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* SUBPAGE HEROES */
.page-hero {
  padding: 96px 0 64px;
}
.page-hero h1 {
  font-size: 72px;
  line-height: 1.02;
  max-width: 900px;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--emerald); font-style: italic; }
.page-hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 660px;
  line-height: 1.55;
}

/* CONTACT FORM */
.form-section { padding: 24px 0 130px; }
.form-grid { max-width: 720px; }
.form-row { margin-bottom: 28px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-row .req::after { content: ' *'; color: var(--emerald); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.16s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--emerald);
  border-width: 2px;
  padding: 13px 15px;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* RESULTS PAGE */
.results-aggregate {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.aggregate-stat .v {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.aggregate-stat .v .em { color: var(--emerald); font-style: italic; }
.aggregate-stat .l {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.results-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.result-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.result-card:hover {
  border-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(10, 37, 64, 0.06);
}
.result-card .case-tag { color: var(--emerald); }
.result-card h3 {
  font-size: 28px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.result-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.result-card .case-stats {
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.result-card .case-stat .l { color: var(--muted); }
.result-card .case-stat .v { color: var(--navy); }
.result-card .case-stat .v.win { color: var(--emerald); }

/* ABOUT PAGE */
.about-body {
  max-width: var(--content-w);
}
.about-body p {
  font-size: 19px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 26px;
}
.about-body p:first-of-type {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 36px;
}

/* CALCULATOR PAGE - full bleed version */
.calc-page-wrap {
  padding: 24px 0 130px;
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero h1 { font-size: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-tile-figure { font-size: 64px; }
  .calc-grid { grid-template-columns: 1fr; gap: 48px; }
  .calc-result.primary .calc-result-value { font-size: 44px; }
  .section-head h2, .cta-section h2 { font-size: 44px; }
  .process-grid, .results-grid, .results-page-grid, .serve-grid, .about-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .about-grid { gap: 56px; }
  .results-aggregate { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    align-items: flex-start;
    border-top: 1px solid var(--border-soft);
  }
  .nav-links.open a { color: var(--cream); font-size: 18px; }
  .nav-links.open .btn { background: var(--cream); color: var(--navy); width: 100%; justify-content: center; }
  .mobile-toggle { display: block; }

  .hero { padding: 60px 0 60px; }
  .hero h1 { font-size: 44px; }
  .hero .lead { font-size: 17px; }
  .hero-tile { padding: 28px; }
  .hero-tile-figure { font-size: 56px; }

  section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .section-head h2, .cta-section h2 { font-size: 36px; }

  .calc-wrap { padding: 32px 24px; }
  .calc-header h2 { font-size: 30px; }
  .calc-result.primary .calc-result-value { font-size: 36px; }
  .calc-result-value { font-size: 28px; }

  .areas-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .area-tab { white-space: nowrap; padding: 14px 18px; }

  .results-aggregate { grid-template-columns: 1fr 1fr; padding: 36px 0; }
  .aggregate-stat .v { font-size: 40px; }

  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .form-row.two-col .form-row { margin-bottom: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .page-hero h1 { font-size: 44px; }
  .about-body p:first-of-type { font-size: 21px; }
}

/* ============= NEW SECTIONS — REVISION 2 ============= */

/* HERO - tight (no stat tile) */
.hero-tight { padding: 110px 0 80px; }
.hero-narrative { max-width: 920px; }
.hero-narrative h1 {
  font-size: 96px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.hero-narrative .lead {
  font-size: 21px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-narrative .lead strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* POSITIONING STATEMENT */
.statement {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.statement p {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 920px;
}

/* HOW WE WIN — APPROACH */
.approach-section {
  padding: 130px 0;
  background: var(--cream);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.approach-block { padding: 0; }
.approach-num {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--emerald);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.approach-block h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--navy);
}
.approach-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* MARKETS GRID */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(251, 249, 244, 0.15);
}
.market-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(251, 249, 244, 0.08);
}
.market-row:nth-child(even) { border-left: 1px solid rgba(251, 249, 244, 0.08); }
.market-name {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.market-county {
  font-size: 13px;
  color: rgba(251, 249, 244, 0.55);
}
.market-deadline {
  font-size: 11px;
  color: var(--brass);
  text-align: right;
  letter-spacing: 0.04em;
}
.markets-foot {
  margin-top: 48px;
  font-size: 15px;
  color: rgba(251, 249, 244, 0.65);
  text-align: center;
}
.brass-link {
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.brass-link:hover { color: var(--cream); border-color: var(--cream); }

/* WHO WE SERVE - revised */
.serve-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 22px;
  max-width: 480px;
}

/* FOUNDER NOTE */
.founder-section {
  padding: 130px 0;
  background: var(--cream-warm);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 96px;
  align-items: start;
}
.founder-quote p {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 32px;
}
.founder-attrib {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.founder-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
}
.founder-role {
  font-size: 13px;
  color: var(--muted);
}
.founder-meta {
  border-top: 1px solid var(--border);
}
.founder-meta .cred-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.founder-meta .cred-row:last-of-type { border-bottom: none; }
.founder-meta .about-link {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .hero-narrative h1 { font-size: 64px; }
  .statement p { font-size: 24px; }
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .markets-grid { grid-template-columns: 1fr; }
  .market-row:nth-child(even) { border-left: none; }
  .founder-grid { grid-template-columns: 1fr; gap: 56px; }
  .founder-quote p { font-size: 26px; }
}

@media (max-width: 640px) {
  .hero-tight { padding: 60px 0 56px; }
  .hero-narrative h1 { font-size: 44px; }
  .hero-narrative .lead { font-size: 17px; }
  .statement { padding: 56px 0; }
  .statement p { font-size: 19px; line-height: 1.4; }
  .approach-section { padding: 80px 0; }
  .approach-block h3 { font-size: 22px; }
  .market-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 16px; }
  .market-deadline { text-align: left; }
  .founder-section { padding: 80px 0; }
  .founder-quote p { font-size: 20px; }
}
