:root {
  --cream: #fbf7f0;
  --cream-dark: #f3ede1;
  --cream-deep: #ede4d1;
  --ink: #1f1a17;
  --ink-soft: #4a4039;
  --ink-muted: #8a7e74;
  --burgundy: #7a2e2a;
  --burgundy-soft: #a94442;
  --gold: #c9a36b;
  --gold-soft: #e5d4b0;
  --gold-pale: #f5eadb;
  --sage: #6b8668;
  --sage-pale: #e8f0e3;
  --blush: #e8d5ce;
  --blush-pale: #f7eae5;
  --line: #e4dccb;
  --white: #fff;
  --shadow: 0 1px 3px rgba(31, 26, 23, 0.06), 0 10px 30px rgba(31, 26, 23, 0.05);
  --shadow-deep: 0 2px 6px rgba(31, 26, 23, 0.08), 0 24px 48px rgba(31, 26, 23, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding: 60px 24px 100px;
}

a {
  color: inherit;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
}

.page.narrow {
  max-width: 860px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 34px;
}

.top-link:hover {
  color: var(--burgundy);
}

.hero {
  text-align: center;
  padding: 24px 0 74px;
  margin-bottom: 72px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 1px;
  background: var(--gold);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 9px 22px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  margin-bottom: 32px;
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1,
h2,
h3,
.serif {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144;
}

h1 {
  font-weight: 300;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 24px;
}

h1 em {
  color: var(--burgundy);
  font-style: italic;
  font-weight: 300;
}

h2 {
  font-weight: 400;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-weight: 500;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0;
}

h4,
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--burgundy);
}

p {
  color: var(--ink-soft);
}

ul,
ol {
  color: var(--ink-soft);
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

strong {
  color: var(--ink);
}

.subtitle {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 21px;
  color: var(--ink-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  font-weight: 600;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
}

.docs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.doc {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-deep);
}

.doc-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px;
  font-style: italic;
  color: var(--gold);
  min-width: 52px;
  line-height: 1;
}

.doc-body {
  flex: 1;
}

.doc-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.doc-meta {
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-muted);
}

.doc-arrow {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  color: var(--gold);
}

.final {
  text-align: center;
  margin-top: 86px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto;
}

.signature {
  display: inline-block;
  margin-top: 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 90px;
}

.stats.three {
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  background: var(--white);
  border-radius: 4px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--burgundy);
}

.stat:nth-child(2) {
  border-top-color: var(--gold);
}

.stat:nth-child(3) {
  border-top-color: var(--sage);
}

.stat:nth-child(4) {
  border-top-color: var(--burgundy-soft);
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.stat-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
  color: var(--ink);
  line-height: 1;
}

.stat-value .unit {
  font-size: 16px;
  color: var(--ink-muted);
  margin-left: 4px;
}

.stat-caption {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 10px;
  font-style: italic;
}

section {
  margin-bottom: 92px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head .number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 0.85;
  display: inline-block;
  margin-right: 22px;
  vertical-align: middle;
}

.section-head h2 {
  display: inline-block;
  vertical-align: middle;
}

.section-head .lead {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-muted);
  margin-top: 14px;
  max-width: 760px;
}

.section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.panel,
.month,
.card,
.callout,
.timeline-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.panel {
  padding: 48px 52px;
  margin-bottom: 30px;
  border-left: 4px solid var(--gold);
}

.panel h4,
.callout h4 {
  margin-bottom: 12px;
}

.panel h2,
.panel h3 {
  margin-bottom: 18px;
}

.month {
  padding: 46px 50px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.month::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--sage));
}

.month-header {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.month-num,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--burgundy);
  background: var(--gold-pale);
  padding: 7px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.month-outcome {
  max-width: 360px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: var(--ink-muted);
}

.week {
  display: grid;
  grid-template-columns: 110px 1fr 120px;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.week:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.week-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  font-weight: 700;
}

.week-label strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-top: 6px;
}

.week-content h4 {
  margin-bottom: 10px;
}

.effort {
  text-align: right;
}

.effort-chip {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 6px 10px;
  border-radius: 100px;
  font-weight: 700;
  margin-bottom: 10px;
}

.effort-chip.medium {
  color: var(--burgundy);
  background: var(--blush-pale);
}

.effort-chip.heavy {
  color: var(--burgundy);
  background: var(--gold-pale);
}

.effort-hours {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  font-size: 24px;
}

.effort-hours small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-top: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 32px 30px;
  border-top: 3px solid var(--gold);
}

.card h3 {
  margin-bottom: 12px;
}

.card h4 {
  margin-bottom: 10px;
}

.card p + p {
  margin-top: 12px;
}

.card .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.callout {
  padding: 40px 44px;
  border-left: 4px solid var(--burgundy);
  margin: 40px 0;
}

.callout.gold {
  border-left-color: var(--gold);
}

.callout.sage {
  border-left-color: var(--sage);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 4px;
  overflow: hidden;
  margin: 26px 0;
}

.table th,
.table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--burgundy);
  background: var(--gold-pale);
}

.table tr:last-child td {
  border-bottom: none;
}

.flow {
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  padding: 34px 38px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  margin: 34px 0;
}

.flow span {
  display: block;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 6px 0;
}

.script {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 24px 26px;
  margin: 22px 0;
  border-radius: 4px;
}

.script strong {
  display: block;
  margin-bottom: 8px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timeline-card {
  padding: 34px 30px;
  border-top: 3px solid var(--burgundy);
}

.timeline-card:nth-child(2) {
  border-top-color: var(--gold);
}

.timeline-card:nth-child(3) {
  border-top-color: var(--sage);
}

.timeline-card .roman {
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.note {
  color: var(--ink-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  body {
    padding: 44px 18px 80px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .stats,
  .stats.three,
  .grid,
  .grid.two,
  .timeline {
    grid-template-columns: 1fr;
  }

  .month,
  .panel,
  .callout {
    padding: 34px 26px;
  }

  .month-header {
    flex-direction: column;
  }

  .week {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .effort {
    text-align: left;
  }

  .table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  body {
    padding: 36px 16px 70px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 21px;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }

  .doc {
    padding: 22px;
    gap: 16px;
  }

  .doc-num {
    font-size: 28px;
    min-width: 38px;
  }

  .doc-title {
    font-size: 18px;
  }

  .doc-arrow {
    display: none;
  }

  .section-head .number {
    display: block;
    margin-bottom: 16px;
  }

  .section-head h2 {
    display: block;
  }
}
