/* =========================================================
   TAC | The Acquisition Company — Shared Stylesheet
   ========================================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep:   #002112;
  --green-mid:    #002a17;
  --green-light:  #002b17;
  --silver:       #d2d4d9;
  --gold:         #C9A84C;
  --white:        #ffffff;
  --black:        #001510;
  --white-dim:    rgba(255,255,255,0.65);
  --gold-dim:     rgba(201,168,76,0.15);
  --border-dim:   rgba(210,212,217,0.08);
  --border-gold:  rgba(201,168,76,0.12);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--green-deep);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }


/* ── NAVIGATION ──────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s, border-color 0.3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(0,33,18,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-gold);
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  margin-left: -16px;
}

.nav-logo-icon {
  width: 240px;
  height: 78px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.nav-logo-icon img {
  position: absolute;
  height: 240px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.nav-logo-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--silver);
  line-height: 1.4;
  border-left: 1px solid rgba(210,212,217,0.3);
  padding-left: 12px;
  margin-left: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--green-deep) !important;
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  color: var(--green-deep) !important;
  opacity: 0.88;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silver);
  transition: transform 0.25s, opacity 0.25s;
}

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

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,33,18,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 32px 40px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover { color: var(--white); }

.nav-mobile-menu .nav-cta {
  font-size: 14px !important;
  padding: 16px 40px;
  margin-top: 16px;
}


/* ── BUTTONS ─────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

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

.btn-ghost {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(210,212,217,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

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

.btn-dark {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--green-deep);
  padding: 18px 44px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

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


/* ── SECTION BASE ────────────────────────────────────── */

.section {
  padding: 120px 48px;
}

.section--mid { background: var(--green-mid); }
.section--deep { background: var(--green-deep); }

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

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 48px;
}


/* ── HERO ────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 48px 100px;
  background: linear-gradient(160deg, #002b17 0%, #002112 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 40px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--silver);
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat-row {
  display: flex;
  gap: 64px;
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(210,212,217,0.1);
  flex-wrap: wrap;
}

.hero-stat h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat p {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.02em;
  max-width: 180px;
  line-height: 1.6;
}

/* Interior hero (smaller) */
.hero--interior {
  min-height: 50vh;
  padding: 140px 48px 80px;
}

.hero--interior .hero-headline {
  font-size: clamp(36px, 4.5vw, 64px);
}


/* ── PULL QUOTE ──────────────────────────────────────── */

.pull-quote-section {
  background: var(--green-deep);
  padding: 100px 48px;
  text-align: center;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.3;
}

.pull-quote-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}


/* ── AUDIT OFFER ─────────────────────────────────────── */

.audit-offer {
  background: var(--green-mid);
  padding: 80px 48px;
  text-align: center;
}

.audit-offer .section-label {
  margin-bottom: 16px;
}

.audit-offer .section-title {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
}

.audit-offer .section-body {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}

.audit-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(210,212,217,0.5);
  margin-top: 20px;
  letter-spacing: 0.03em;
}


/* ── PROOF SECTION (200+ audits) ─────────────────────── */

.proof-section {
  background: var(--green-deep);
  padding: 120px 48px;
}

.proof-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 64px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  margin-bottom: 64px;
}

.stat-card {
  background: var(--green-deep);
  padding: 48px 36px;
}

.stat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

.proof-outro {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  max-width: 700px;
  line-height: 1.85;
  margin-bottom: 40px;
}


/* ── COMPARISON TABLE ────────────────────────────────── */

.comparison-section {
  background: var(--green-mid);
  padding: 120px 48px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border-dim);
}

.comparison-col-header {
  padding: 28px 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.col-legacy {
  background: rgba(255,255,255,0.03);
  color: var(--silver);
}

.col-tac {
  background: var(--gold-dim);
  color: var(--gold);
  border-left: 2px solid var(--gold);
}

.comparison-row { display: contents; }

.comparison-cell {
  padding: 24px 40px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  border-top: 1px solid rgba(210,212,217,0.07);
}

.cell-legacy {
  background: rgba(255,255,255,0.02);
  color: rgba(210,212,217,0.65);
}

.cell-tac {
  background: rgba(201,168,76,0.05);
  color: var(--white);
  border-left: 2px solid rgba(201,168,76,0.25);
}

.cell-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}


/* ── LEAKAGE CALCULATOR ──────────────────────────────── */

.calculator-section {
  background: var(--green-deep);
  padding: 120px 48px;
}

.calc-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 56px;
}

.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.calc-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}

.calc-field input[type="number"],
.calc-field input[type="range"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(210,212,217,0.2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 300;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}

.calc-field input[type="number"]::-webkit-inner-spin-button,
.calc-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.calc-field input[type="number"]:focus {
  border-bottom-color: var(--gold);
}

.calc-field input[type="range"] {
  -webkit-appearance: none;
  height: 1px;
  background: rgba(210,212,217,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 8px;
  font-size: 16px;
}

.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.calc-field input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.range-display {
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  padding: 8px 0 4px;
  border-bottom: 1px solid rgba(210,212,217,0.2);
  margin-bottom: 8px;
}

.calc-outputs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 32px;
}

.scenario {
  background: rgba(255,255,255,0.03);
  padding: 32px 28px;
}

.scenario--tac {
  background: rgba(201,168,76,0.07);
  border-top: 2px solid var(--gold);
}

.scenario-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.scenario--tac .scenario-label {
  color: var(--gold);
}

.scenario-row {
  margin-bottom: 14px;
}

.scenario-row-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(210,212,217,0.5);
  margin-bottom: 2px;
}

.scenario-row-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
}

.scenario--tac .scenario-row-value {
  color: var(--white);
}

.calc-result {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 32px 36px;
  margin-bottom: 16px;
}

.calc-result p {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 12px;
}

.calc-result p:last-child { margin-bottom: 0; }

.calc-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  display: inline;
}

.calc-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(210,212,217,0.4);
  line-height: 1.7;
  margin-bottom: 36px;
}


/* ── FRAMEWORK SECTION ───────────────────────────────── */

.framework-section {
  background: var(--green-mid);
  padding: 120px 48px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  margin-top: 64px;
}

.framework-step {
  background: var(--green-mid);
  padding: 40px 28px;
  position: relative;
}

.framework-step:last-child .step-arrow {
  display: none;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.step-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
}

.step-arrow {
  position: absolute;
  top: 44px;
  right: -13px;
  width: 25px;
  height: 1px;
  background: var(--gold);
  z-index: 2;
}

.step-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}


/* ── SCORECARD TEASER ────────────────────────────────── */

.scorecard-teaser {
  background: var(--green-deep);
  padding: 120px 48px;
}

.scorecard-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.scorecard-questions {
  margin-top: 40px;
}

.scorecard-q {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dim);
}

.scorecard-q:first-child {
  border-top: 1px solid var(--border-dim);
}

.q-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.6;
  min-width: 28px;
  padding-top: 2px;
}

.q-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 10px;
}

.q-dots {
  display: flex;
  gap: 8px;
}

.q-dot {
  width: 24px; height: 24px;
  border: 1px solid rgba(210,212,217,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(210,212,217,0.4);
  letter-spacing: 0;
  font-weight: 500;
}

.scorecard-result-preview {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 48px;
}

.result-band {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dim);
}

.result-band:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.result-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}

.result-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.result-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.65;
}


/* ── BLOG CARDS ──────────────────────────────────────── */

.blog-section {
  background: var(--green-mid);
  padding: 120px 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.blog-card {
  background: var(--green-deep);
  padding: 48px 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
  border-top: 2px solid transparent;
}

.blog-card:hover {
  background: rgba(0,43,23,0.9);
  border-top-color: var(--gold);
}

.blog-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.blog-date {
  font-size: 11px;
  font-weight: 300;
  color: rgba(210,212,217,0.4);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 16px;
  flex: 1;
}

.blog-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 32px;
}

.blog-read {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-read::after {
  content: '\2192';
  font-size: 14px;
}


/* ── ABOUT STRIP ─────────────────────────────────────── */

.about-strip {
  background: var(--green-deep);
  padding: 120px 48px;
}

.about-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 96px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green-light);
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #002b17, #001a0e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(210,212,217,0.3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.about-content .section-title { max-width: 100%; }

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.55;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
}

.about-body p + p { margin-top: 16px; }


/* ── CTA BANNER ──────────────────────────────────────── */

.cta-banner {
  background: var(--gold);
  padding: 96px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-banner-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,33,18,0.7);
  max-width: 560px;
}


/* ── ECONOMICS CALLOUT ───────────────────────────────── */

.economics-callout {
  background: rgba(201,168,76,0.07);
  border-left: 2px solid var(--gold);
  padding: 32px 40px;
  margin: 48px 0;
  max-width: 720px;
}

.economics-callout p {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
}

.economics-callout strong {
  color: var(--white);
  font-weight: 400;
}


/* ── FRAMEWORK PAGE ──────────────────────────────────── */

.framework-components {
  padding: 100px 48px;
  background: var(--green-deep);
}

.component-list {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.component-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border: 1px solid var(--border-dim);
  border-bottom: none;
}

.component-item:last-child {
  border-bottom: 1px solid var(--border-dim);
}

.component-number {
  display: flex;
  align-items: flex-start;
  padding: 40px 32px;
  border-right: 1px solid var(--border-dim);
}

.component-number span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}

.component-content {
  padding: 40px 48px;
}

.component-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.component-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 20px;
}

.component-outcome {
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.component-outcome::before {
  content: 'Key outcome: ';
  font-weight: 300;
  color: rgba(210,212,217,0.5);
}

/* Timeline */
.timeline-section {
  padding: 100px 48px;
  background: var(--green-mid);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  margin-top: 56px;
}

.timeline-week {
  background: var(--green-mid);
  padding: 40px 32px;
}

.week-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.week-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.week-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

/* Pricing */
.pricing-section {
  padding: 100px 48px;
  background: var(--green-deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.pricing-card {
  padding: 52px 48px;
  border: 1px solid var(--border-dim);
}

.pricing-card--founding {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
}

.pricing-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dim);
}

.pricing-row:first-of-type { border-top: 1px solid var(--border-dim); }

.pricing-row-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.04em;
}

.pricing-row-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

.pricing-card--founding .pricing-row-value {
  color: var(--gold);
}

.pricing-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  margin-top: 48px;
  max-width: 720px;
}

/* Ongoing management list */
.management-list {
  list-style: none;
  margin-top: 32px;
}

.management-list li {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
}

.management-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}


/* ── SCORECARD PAGE ──────────────────────────────────── */

.scorecard-page {
  padding: 140px 48px 100px;
  background: var(--green-deep);
}

.scorecard-intro {
  max-width: 620px;
  margin-bottom: 72px;
}

.scorecard-form {
  max-width: 720px;
}

.scorecard-question {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dim);
}

.scorecard-question:first-child {
  border-top: 1px solid var(--border-dim);
}

.sq-header {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.sq-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(201,168,76,0.5);
  min-width: 32px;
  padding-top: 2px;
}

.sq-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
}

.sq-options {
  display: flex;
  gap: 8px;
  margin-left: 56px;
}

.sq-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(210,212,217,0.15);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.sq-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--white);
}

.sq-btn.selected-yes,
.sq-btn.selected-partial,
.sq-btn.selected-no {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold);
}

.scorecard-progress {
  margin-bottom: 48px;
}

.progress-bar {
  height: 2px;
  background: rgba(210,212,217,0.1);
  margin-top: 12px;
  max-width: 720px;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s;
  width: 0%;
}

.progress-label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(210,212,217,0.5);
  letter-spacing: 0.04em;
}

.scorecard-result-section {
  display: none;
  margin-top: 64px;
  max-width: 720px;
}

.scorecard-result-section.visible {
  display: block;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.result-score-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.result-band-display {
  border: 1px solid rgba(201,168,76,0.25);
  padding: 40px 48px;
  background: rgba(201,168,76,0.06);
  margin-bottom: 48px;
}

.result-band-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.result-band-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
}

.scorecard-actions {
  margin-bottom: 64px;
}

.scorecard-actions h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.scorecard-actions p {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}

.action-items {
  margin-top: 64px;
  border-top: 1px solid var(--border-dim);
}

.action-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dim);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
}

.action-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
}

.action-content h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.action-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
}


/* ── ABOUT PAGE ──────────────────────────────────────── */

.about-page {
  padding: 140px 48px 100px;
  max-width: 880px;
}

.about-hero {
  padding: 120px 72px 100px;
  background: linear-gradient(160deg, #002b17 0%, #002112 60%);
}

.about-hero-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 90px;
}

.about-hero-text {
  flex: 1;
  max-width: 500px;
}

.about-hero .about-page-photo {
  flex-shrink: 0;
  float: none;
  width: 300px;
  margin: 0;
  position: relative;
}

.about-opening {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0;
}

.about-section {
  margin-bottom: 80px;
}

.about-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-section p {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 720px;
}

.about-page-photo {
  float: left;
  width: 320px;
  margin: 0 64px 48px 0;
  position: relative;
}

.about-page-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-page-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.pull-quote-inline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.55;
  margin: 48px 0;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
  max-width: 640px;
}

.about-contact {
  margin-top: 16px;
}

.about-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.about-contact a:hover { opacity: 0.8; }


/* ── BLOG INDEX ──────────────────────────────────────── */

.blog-index-hero {
  padding: 140px 48px 80px;
  background: var(--green-deep);
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 48px 120px;
  background: var(--green-mid);
}

.blog-index-grid .blog-card:first-child {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.blog-index-grid .blog-card:first-child .blog-tag {
  grid-column: 1 / -1;
}


/* ── BLOG POST ───────────────────────────────────────── */

.post-hero {
  padding: 140px 48px 80px;
  background: var(--green-deep);
  max-width: 900px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.post-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-date {
  font-size: 12px;
  font-weight: 300;
  color: rgba(210,212,217,0.45);
  letter-spacing: 0.04em;
}

.post-separator {
  width: 16px;
  height: 1px;
  background: rgba(210,212,217,0.2);
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.post-content {
  padding: 80px 48px;
  background: var(--green-deep);
}

.post-body {
  max-width: 720px;
}

.post-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 24px;
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin: 48px 0 20px;
  line-height: 1.2;
}

.post-body h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 36px 0 14px;
}

.post-body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.5;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
  margin: 40px 0;
}

.post-cta {
  padding: 80px 48px;
  background: var(--green-mid);
  border-top: 1px solid var(--border-dim);
}

.post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.post-cta p {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}


/* ── BREADCRUMB ──────────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(210,212,217,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.breadcrumb a {
  color: rgba(210,212,217,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--silver); }

.breadcrumb span { color: rgba(210,212,217,0.25); }


/* ── SOLUTIONS PAGE ──────────────────────────────────── */

.solutions-how {
  padding: 100px 48px;
  background: var(--green-mid);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  margin-top: 56px;
}

.how-item {
  background: var(--green-mid);
  padding: 40px 40px;
}

.how-item-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.how-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.how-item-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
}


/* ── FOOTER ──────────────────────────────────────────── */

footer {
  background: var(--black);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--silver);
  line-height: 1.5;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(210,212,217,0.4);
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-info a {
  color: rgba(210,212,217,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-info a:hover { color: var(--silver); }

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(210,212,217,0.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--silver); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(210,212,217,0.06);
  margin: 16px 0;
}


/* ── UTILITIES ───────────────────────────────────────── */

.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-white { color: var(--white); }
.mt-0 { margin-top: 0; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }


/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 1024px) {
  nav { padding: 14px 40px; }
  nav.scrolled { padding: 14px 40px; }
  .section, .hero, .audit-offer, .pull-quote-section,
  .proof-section, .comparison-section, .calculator-section,
  .framework-section, .scorecard-teaser, .blog-section,
  .about-strip, .cta-banner, .framework-components,
  .timeline-section, .pricing-section, .scorecard-page,
  .about-page, .blog-index-hero, .blog-index-grid,
  .post-hero, .post-content, .post-cta,
  .solutions-how { padding-left: 40px; padding-right: 40px; }
  footer { padding: 56px 40px; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .framework-grid { grid-template-columns: 1fr 1fr 1fr; }
  .framework-step:nth-child(3) .step-arrow,
  .framework-step:nth-child(5) .step-arrow { display: none; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 280px 1fr; gap: 56px; }
  .blog-index-grid .blog-card:first-child {
    grid-column: span 3;
    display: block;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  nav { padding: 10px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 120px 24px 80px; }
  .hero--interior { padding: 110px 24px 60px; }
  .hero-stat-row {
    flex-direction: column;
    gap: 32px;
    margin-top: 64px;
  }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Sections */
  .section, .audit-offer, .pull-quote-section, .proof-section,
  .comparison-section, .calculator-section, .framework-section,
  .scorecard-teaser, .blog-section, .about-strip, .cta-banner,
  .framework-components, .timeline-section, .pricing-section,
  .scorecard-page, .about-page, .blog-index-hero,
  .blog-index-grid, .post-hero, .post-content, .post-cta,
  .solutions-how { padding-left: 24px; padding-right: 24px; }
  footer { padding: 48px 24px; grid-template-columns: 1fr; gap: 40px; }
  .footer-links { align-items: flex-start; }

  /* Stat grid */
  .stat-grid { grid-template-columns: 1fr; }

  /* Comparison — stack mobile */
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comparison-col-header { display: none; }
  .comparison-row {
    display: block;
    border-bottom: 1px solid var(--border-dim);
  }
  .comparison-row::before {
    content: attr(data-category);
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(210,212,217,0.4);
    padding: 20px 24px 0;
    background: rgba(255,255,255,0.02);
  }
  .comparison-cell {
    padding: 16px 24px 24px;
    border-top: none;
  }
  .cell-tac {
    border-left: none;
    border-top: 2px solid rgba(201,168,76,0.3) !important;
  }

  /* Framework grid */
  .framework-grid {
    grid-template-columns: 1fr;
  }
  .step-arrow { display: none; }

  /* Calculator */
  .calc-inner { grid-template-columns: 1fr; gap: 48px; }
  .calc-scenarios { grid-template-columns: 1fr; }

  /* Scorecard teaser */
  .scorecard-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-index-grid { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .blog-index-grid .blog-card:first-child { grid-column: span 1; }

  /* About strip */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 320px; }
  .about-page-photo { float: none; width: 100%; max-width: 280px; margin: 0 0 40px 0; }

  /* CTA banner */
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 64px 24px; }

  /* Framework page */
  .component-item { grid-template-columns: 1fr; }
  .component-number { border-right: none; padding: 32px 24px 0; }
  .component-content { padding: 16px 24px 32px; }
  .timeline { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* How grid */
  .how-grid { grid-template-columns: 1fr; }

  /* Scorecard */
  .sq-options { flex-direction: column; margin-left: 0; }
  .sq-btn { text-align: center; }

  /* Blog index featured */
  .blog-index-grid .blog-card:first-child { grid-column: span 1; display: flex; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 64px; }
  .hero-headline { font-size: clamp(36px, 9vw, 56px); }
  .pricing-card { padding: 36px 28px; }
  .scorecard-result-preview { padding: 32px 24px; }
}


/* ── AUDIT FORM MODAL ────────────────────────────────── */

.audit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,10,6,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.audit-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.audit-modal {
  background: var(--green-mid);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 56px 52px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s;
}

.audit-modal-overlay.open .audit-modal {
  transform: translateY(0);
}

.audit-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(210,212,217,0.4);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}

.audit-modal-close:hover { color: var(--silver); }

.audit-modal-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.audit-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.audit-modal-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 36px;
}

.audit-modal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audit-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audit-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(210,212,217,0.6);
}

.audit-field input {
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid rgba(210,212,217,0.2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.audit-field input::placeholder {
  color: rgba(210,212,217,0.25);
}

.audit-field input:focus {
  border-bottom-color: var(--gold);
}

.audit-modal-submit {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.audit-modal-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(210,212,217,0.35);
  line-height: 1.6;
  margin-top: -8px;
}

.audit-error {
  font-size: 12px;
  color: #e07070;
  font-weight: 300;
  margin: -8px 0 0;
}

.audit-modal-success {
  text-align: center;
  padding: 24px 0 8px;
}

.audit-success-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}

.audit-modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.audit-modal-success p {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .audit-modal {
    padding: 40px 28px;
  }
  .audit-modal-title {
    font-size: 28px;
  }
}
