:root {
  --paper: #f7f4ee;
  --surface: #fffdf8;
  --ink: #151515;
  --soft-ink: #3d3b36;
  --muted: #746f64;
  --line: rgba(21, 21, 21, 0.16);
  --panel: #eee8dc;
  --accent: #203b34;
  --accent-soft: #d8e0d1;
  --max: 1180px;
  --serif: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
.site-footer,
main {
  margin: 0 auto;
  max-width: var(--max);
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 28px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav,
.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 10px 12px;
}

section {
  border-bottom: 1px solid var(--line);
  padding: 86px 28px;
}

.hero {
  align-items: end;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.45fr);
  min-height: 560px;
  padding-bottom: 64px;
  padding-top: 68px;
}

.hero.compact {
  min-height: auto;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: 4.85rem;
  line-height: 1;
  max-width: 900px;
}

h2 {
  font-size: 4.35rem;
  line-height: 0.98;
  max-width: 860px;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.12;
}

p {
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.lead {
  color: var(--soft-ink);
  font-size: 1.32rem;
  line-height: 1.5;
  margin-top: 24px;
  max-width: 700px;
}

.hero-aside {
  align-self: end;
  background: rgba(255, 253, 248, 0.58);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: 24px 0;
}

.aside-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aside-rule {
  background: var(--line);
  height: 1px;
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
button[type="submit"] {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--surface);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover,
button[type="submit"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

.section-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.path-grid,
.format-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-card,
.format-card,
.quiet-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: 28px;
}

.path-card.wide {
  grid-column: 1 / -1;
}

.price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.06;
}

.fine-print,
.form-status,
.legal-copy li {
  color: var(--muted);
  font-size: 0.9rem;
}

.outcome-list,
.legal-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.outcome-list li {
  color: var(--soft-ink);
  line-height: 1.65;
}

.form-section {
  background: var(--panel);
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-status.success {
  color: #27553d;
}

.form-status.error {
  color: #8f2e25;
}

.legal-copy {
  display: grid;
  gap: 26px;
  max-width: 820px;
}

.legal-copy h2 {
  font-size: 2.2rem;
}

.site-footer {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  padding: 42px 28px 56px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-slot[hidden],
.final-assets[hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .hero {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    min-height: 520px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 18px;
    padding-top: 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    gap: 14px;
  }

  .site-header.menu-open .site-nav {
    display: grid;
  }

  .hero,
  .section-grid,
  .path-grid,
  .format-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
    padding-top: 52px;
  }

  .hero-aside {
    align-self: auto;
    padding: 20px 0;
  }

  h1 {
    font-size: 2.9rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  h3 {
    font-size: 1.45rem;
  }

  .lead {
    font-size: 1.1rem;
    line-height: 1.56;
    margin-top: 20px;
  }

  section {
    padding: 58px 20px;
  }

  .site-header,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .site-nav {
    padding-top: 6px;
  }

  h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero {
    gap: 28px;
    padding-top: 38px;
  }

  .cta-row .button,
  .cta-row button {
    width: 100%;
  }

  .path-card,
  .format-card,
  .quiet-panel,
  .lead-form {
    padding: 22px;
  }

  .price {
    font-size: 1.75rem;
  }
}
