:root {
  --ink-950: #0b1210;
  --forest-900: #101a17;
  --forest-850: #16221f;
  --forest-700: #2a3a35;
  --ivory-100: #f3ebdd;
  --ivory-200: #e2dacd;
  --stone-300: #b8bbb2;
  --teal-600: #2d625c;
  --teal-500: #39766e;
  --copper-500: #c38352;
  --focus-300: #9ed8ce;
  --error-400: #d9877b;
  --serif: "Newsreader", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Manrope", Inter, "Helvetica Neue", Arial, sans-serif;
  --content: 1440px;
  --text: 720px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(5rem, 10vw, 9rem);
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/Newsreader-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

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

html {
  background: var(--ink-950);
  color: var(--ivory-100);
  scroll-behavior: auto;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(57,118,110,.08), transparent 26rem),
    var(--ink-950);
  color: var(--stone-300);
  font-family: var(--sans);
  font-size: clamp(1rem, .25vw + .95rem, 1.125rem);
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--focus-300);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--ivory-100);
  color: var(--ink-950);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 84px;
  border-bottom: 1px solid rgba(184,187,178,.14);
  background: rgba(11,18,16,.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100%, var(--content));
  min-height: 84px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto minmax(13rem, 1fr);
  align-items: center;
  gap: 2rem;
}

.wordmark {
  width: max-content;
  color: var(--ivory-100);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -.035em;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.desktop-nav a {
  position: relative;
  color: var(--ivory-200);
  font-size: .92rem;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: var(--copper-500);
  transition: right .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-action { justify-self: end; }

.button {
  min-height: 52px;
  padding: .78rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: #f7f2e8;
  background: var(--teal-600);
  font-size: .98rem;
  font-weight: 550;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.button::after { content: "→"; font-size: 1.15em; transition: transform .22s ease; }
.button:hover { transform: translateY(-2px); background: var(--teal-500); }
.button:hover::after { transform: translateX(3px); }
.button-secondary {
  color: var(--ivory-100);
  background: transparent;
  border-color: rgba(243,235,221,.55);
}
.button-secondary:hover { background: rgba(243,235,221,.06); border-color: var(--ivory-100); }
.button-quiet { min-height: 44px; padding: .55rem 1rem; background: transparent; border-color: var(--forest-700); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--forest-700);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory-100);
}
.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 1.5rem;
  background: rgba(11,18,16,.98);
}
.mobile-panel[data-open="true"] { display: grid; grid-template-rows: auto 1fr auto; }
.mobile-panel-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-close { font-size: 1.65rem; }
.mobile-close::before, .mobile-close::after { display: none; }
.mobile-nav { align-self: center; display: grid; gap: 1rem; }
.mobile-nav a { color: var(--ivory-100); font-family: var(--serif); font-size: clamp(2rem, 10vw, 3.8rem); line-height: 1.05; text-decoration: none; }

.shell { width: min(100%, var(--content)); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.surface { background: var(--forest-900); }
.surface-raised { background: var(--forest-850); }
.rule-top { border-top: 1px solid rgba(184,187,178,.15); }

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--stone-300);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  margin-right: .8rem;
  display: inline-block;
  vertical-align: middle;
  background: var(--copper-500);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ivory-100); font-family: var(--serif); font-weight: 470; letter-spacing: -.035em; }
h1 { max-width: 13ch; margin-bottom: 1.6rem; font-size: clamp(3.25rem, 6.2vw, 7rem); line-height: .94; }
h2 { max-width: 15ch; margin-bottom: 1.5rem; font-size: clamp(2.5rem, 4.2vw, 4.75rem); line-height: 1; }
h3 { margin-bottom: .8rem; font-size: clamp(1.55rem, 2.1vw, 2.25rem); line-height: 1.08; }
.page-title { max-width: 14ch; }
.lede { max-width: var(--text); color: var(--ivory-200); font-size: clamp(1.125rem, 1.45vw, 1.375rem); line-height: 1.5; }
.muted { color: var(--stone-300); }
.fine { font-size: .88rem; }
.copper { color: var(--copper-500); }

.hero {
  min-height: calc(100svh - 84px);
  border-bottom: 1px solid rgba(184,187,178,.15);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}
.hero-copy {
  padding: clamp(5rem, 10vw, 9rem) var(--pad) clamp(4.5rem, 8vw, 7rem) max(var(--pad), calc((100vw - var(--content)) / 2 + var(--pad)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 68% 45%, rgba(57,118,110,.14), transparent 42%), var(--ink-950);
}
.hero .lede { max-width: 38rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-note { margin: 1.7rem 0 0; color: var(--stone-300); font-size: .88rem; }
.hero-note::before { content: ""; display: block; width: 2.5rem; height: 2px; margin-bottom: 1rem; background: var(--copper-500); }
.hero-image { position: relative; min-height: 640px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,18,16,.22), transparent 30%), linear-gradient(0deg, rgba(11,18,16,.18), transparent 35%); pointer-events: none; }
.image-label { position: absolute; top: 8%; right: 8%; z-index: 2; color: rgba(243,235,221,.62); font-size: .72rem; letter-spacing: .25em; line-height: 2.2; text-transform: uppercase; }

.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.benefit-grid { margin-top: clamp(3rem, 6vw, 5.5rem); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(184,187,178,.15); }
.benefit { min-height: 10rem; padding: 2rem 2rem 1rem 0; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.benefit + .benefit { padding-left: 2rem; border-left: 1px solid rgba(184,187,178,.15); }
.benefit-mark { color: var(--copper-500); font-size: 1.5rem; line-height: 1; }
.benefit strong { color: var(--ivory-200); font-size: .78rem; letter-spacing: .16em; line-height: 1.55; text-transform: uppercase; }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
.section-head p { max-width: 38rem; margin-bottom: .4rem; justify-self: end; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cards-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1050px; }
.card {
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--forest-700);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(22,34,31,.96), rgba(16,26,23,.78));
}
.card.featured { border-color: rgba(195,131,82,.58); background: linear-gradient(145deg, rgba(45,98,92,.24), rgba(16,26,23,.9)); }
.includes-label { margin: 1.35rem 0 .45rem; color: var(--sand); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-tag { width: max-content; margin-bottom: 2rem; padding: .32rem .7rem; border: 1px solid var(--forest-700); border-radius: 999px; color: var(--stone-300); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.price { margin: .4rem 0 1.3rem; color: var(--ivory-100); font-size: 1.1rem; font-weight: 600; }
.card ul { margin: 0 0 2rem; padding-left: 1.1rem; }
.card li { margin-bottom: .65rem; }
.card .text-link { margin-top: auto; }
.text-link { width: max-content; color: var(--ivory-100); font-weight: 600; text-decoration-color: var(--copper-500); text-underline-offset: .4rem; }
.text-link:hover { color: white; }

.path-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1rem; }
.path-card { min-height: 22rem; position: relative; overflow: hidden; }
.path-card .path-number { margin-bottom: auto; color: var(--copper-500); font-family: var(--serif); font-size: 2rem; }
.path-card p { max-width: 30rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.editorial-image { min-height: 34rem; border-radius: 24px; overflow: hidden; background: var(--forest-850); }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }

.steps { counter-reset: step; display: grid; }
.step { counter-increment: step; padding: 1.6rem 0; border-top: 1px solid rgba(184,187,178,.15); display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; }
.step::before { content: counter(step, decimal-leading-zero); color: var(--copper-500); font-size: .82rem; letter-spacing: .12em; }
.step h3 { font-family: var(--sans); font-size: 1.05rem; letter-spacing: 0; }
.step p { max-width: 48rem; margin: 0; }

.proof-box { padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(195,131,82,.45); border-radius: 24px; background: rgba(22,34,31,.62); }
.proof-box .split { align-items: start; }

.faq { max-width: 980px; margin-inline: auto; }
.faq details { border-top: 1px solid rgba(184,187,178,.18); }
.faq details:last-child { border-bottom: 1px solid rgba(184,187,178,.18); }
.faq summary { padding: 1.5rem 3rem 1.5rem 0; position: relative; color: var(--ivory-100); font-weight: 600; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 1.2rem; color: var(--copper-500); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 50rem; padding: 0 3rem 1.5rem 0; }

.page-hero { padding-block: clamp(6rem, 12vw, 11rem); border-bottom: 1px solid rgba(184,187,178,.15); }
.page-hero .lede { max-width: 48rem; }
.breadcrumb { margin-bottom: 3rem; color: var(--stone-300); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumb a { text-decoration-color: var(--copper-500); text-underline-offset: .3rem; }

.callout { padding: clamp(2rem, 5vw, 4rem); border-left: 2px solid var(--copper-500); background: var(--forest-850); }
.callout p:last-child { margin-bottom: 0; }

.form-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.form { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--forest-700); border-radius: 24px; background: var(--forest-850); }
.field { margin-bottom: 1.25rem; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
label { margin-bottom: .45rem; display: block; color: var(--ivory-200); font-size: .9rem; font-weight: 600; }
.optional { color: var(--stone-300); font-weight: 400; }
input, textarea, select {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  border: 1px solid var(--forest-700);
  border-radius: 10px;
  background: var(--ink-950);
  color: var(--ivory-100);
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #89908a; }
.field-error { min-height: 1.25rem; margin: .35rem 0 0; color: var(--error-400); font-size: .82rem; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.checkbox input { width: 20px; min-height: 20px; margin-top: .25rem; }
.checkbox label { font-weight: 400; }
.form-status { margin-top: 1rem; padding: 1rem; border-radius: 10px; background: rgba(57,118,110,.22); color: var(--ivory-100); }
.preview-note { margin-bottom: 1.5rem; padding: .8rem 1rem; border: 1px solid rgba(195,131,82,.4); border-radius: 10px; color: var(--ivory-200); font-size: .86rem; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 3rem; font-family: var(--sans); font-size: 1.45rem; letter-spacing: 0; }

.final-cta { text-align: center; }
.final-cta h2 { max-width: 13ch; margin-inline: auto; }
.final-cta .lede { margin: 0 auto 2rem; }

.site-footer { padding-block: 4rem 2rem; border-top: 1px solid rgba(184,187,178,.15); background: #080e0c; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; }
.footer-brand p { max-width: 28rem; margin-top: 1.5rem; }
.footer-links { display: grid; align-content: start; gap: .65rem; }
.footer-links strong { margin-bottom: .7rem; color: var(--ivory-100); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { width: max-content; color: var(--stone-300); text-decoration: none; }
.footer-links a:hover { color: var(--ivory-100); }
.footer-bottom { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(184,187,178,.12); display: flex; justify-content: space-between; gap: 1rem; color: #8e958e; font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(8px); transition: opacity .28s ease-out, transform .28s ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"], .reveal[data-delay="2"] { transition-delay: 0ms; }

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-action { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 680px; padding-left: var(--pad); }
  .hero-image { min-height: 580px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card:last-child { grid-column: 1 / -1; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .path-grid .path-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header, .nav-shell { min-height: 72px; }
  .hero { min-height: 0; }
  .hero-copy { min-height: auto; padding-block: 5.5rem 4rem; }
  .hero-image { min-height: 420px; order: 2; }
  .image-label { display: none; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .intro-grid, .section-head, .split, .form-shell, .footer-grid { grid-template-columns: 1fr; }
  .section-head p { justify-self: start; }
  .benefit-grid, .cards, .path-grid { grid-template-columns: 1fr; }
  .cards-two { grid-template-columns: 1fr; }
  .cards .card:last-child, .path-grid .path-card:first-child { grid-column: auto; }
  .benefit { min-height: auto; padding: 1.5rem 0; }
  .benefit + .benefit { padding-left: 0; border-left: 0; border-top: 1px solid rgba(184,187,178,.15); }
  .path-card { min-height: 19rem; }
  .editorial-image { min-height: 25rem; order: -1; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
}

@media (max-width: 380px) {
  :root { --pad: 1rem; }
  .wordmark { font-size: 1.7rem; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.35rem; }
  .button { padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Private pre-call business review */
.review-page { background: radial-gradient(circle at 80% 8%, rgba(195,131,82,.11), transparent 24rem), radial-gradient(circle at 15% 38%, rgba(57,118,110,.11), transparent 30rem), var(--ink-950); }
.review-header { border-bottom: 1px solid rgba(184,187,178,.14); background: rgba(11,18,16,.86); backdrop-filter: blur(18px); }
.review-header-inner { width: min(100%, 1180px); min-height: 82px; margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review-header-inner > span { color: var(--stone-300); font-size: .76rem; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.review-intro { padding: clamp(4.5rem, 9vw, 8rem) var(--pad) clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid rgba(184,187,178,.14); }
.review-intro-inner { width: min(100%, 920px); margin: 0 auto; }
.review-intro h1 { max-width: 13ch; font-size: clamp(3rem, 7vw, 6.4rem); }
.review-assurance { width: fit-content; max-width: 46rem; margin-top: 2rem; padding: 1rem 1.2rem; border: 1px solid rgba(195,131,82,.42); border-radius: 12px; background: rgba(22,34,31,.66); color: var(--ivory-200); font-size: .94rem; }
.review-assurance strong { color: var(--ivory-100); }
.review-section { padding: clamp(3.5rem, 8vw, 7rem) var(--pad); background: rgba(16,26,23,.72); }
.review-layout { width: min(100%, 1180px); margin: 0 auto; display: grid; grid-template-columns: minmax(15rem,.72fr) minmax(0,1.28fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.review-aside { position: sticky; top: 2rem; }
.review-steps { margin: 0; padding: 0; list-style: none; counter-reset: review-step; }
.review-steps li { counter-increment: review-step; padding: 1.4rem 0; border-top: 1px solid rgba(184,187,178,.15); display: grid; grid-template-columns: 2.4rem 1fr; gap: .2rem 1rem; }
.review-steps li::before { content: counter(review-step, decimal-leading-zero); grid-row: 1 / 3; color: var(--copper-500); font-size: .78rem; letter-spacing: .1em; }
.review-steps strong { color: var(--ivory-100); font-size: .98rem; }
.review-steps span { color: var(--stone-300); font-size: .88rem; line-height: 1.55; }
.review-form { box-shadow: 0 32px 80px rgba(0,0,0,.18); }
.form-progress { height: 3px; margin: calc(clamp(1.5rem,4vw,3rem) * -1) calc(clamp(1.5rem,4vw,3rem) * -1) 2rem; overflow: hidden; border-radius: 24px 24px 0 0; background: var(--forest-700); }
.form-progress span { width: 62%; height: 100%; display: block; background: linear-gradient(90deg,var(--teal-500),var(--copper-500)); }
.form-kicker { margin: 0 0 1.5rem; color: var(--copper-500); font-size: .76rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.question-help { margin: .25rem 0 .7rem; color: var(--stone-300); font-size: .86rem; line-height: 1.5; }
.form-divider { height: 1px; margin: 2.4rem 0; background: rgba(184,187,178,.15); }
.field-meta { display: flex; justify-content: space-between; }
.review-submit { width: 100%; margin-top: .4rem; }
.submit-note { margin: .8rem 0 0; color: var(--stone-300); font-size: .8rem; text-align: center; }
.review-footer { padding: 3rem var(--pad); border-top: 1px solid rgba(184,187,178,.14); }
.review-footer > div { width: min(100%,1180px); margin: 0 auto; }
.review-footer p { margin: .7rem 0 0; }

@media (max-width: 760px) {
  .review-header-inner > span { font-size: .65rem; letter-spacing: .1em; text-align: right; }
  .review-layout { grid-template-columns: 1fr; }
  .review-aside { position: static; }
  .review-intro h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
}
