:root {
  --sand: #f5efe6;
  --pearl: #fffaf4;
  --ink: #1f1f1a;
  --muted: #635f58;
  --rose: #b84b63;
  --wine: #7d283c;
  --leaf: #6f7d58;
  --line: rgba(31, 31, 26, 0.12);
  --panel: rgba(255, 250, 244, 0.78);
  --shadow: 0 24px 60px rgba(62, 40, 28, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 75, 99, 0.16), transparent 30%),
    radial-gradient(circle at right 20%, rgba(111, 125, 88, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f2ea 0%, #f1e5d8 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero,
.grid-section,
.timeline-section,
.modules,
.footer-banner {
  margin-bottom: 24px;
}

.hero {
  display: grid;
  gap: 18px;
}

.hero-copy,
.hero-card,
.panel,
.module-card,
.footer-banner {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
  border-radius: 28px;
}

.hero-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(125, 40, 60, 0.92), rgba(184, 75, 99, 0.82));
  color: var(--pearl);
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 14px;
}

.lead,
.compact-copy,
.module-card p,
.hero-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-card p {
  color: rgba(255, 250, 244, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
}

.button.primary {
  background: var(--ink);
  color: var(--pearl);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.grid-section,
.module-grid {
  display: grid;
  gap: 18px;
}

.panel,
.module-card,
.footer-banner {
  padding: 24px;
  border-radius: 24px;
}

.panel.accent {
  background: linear-gradient(135deg, rgba(111, 125, 88, 0.92), rgba(161, 171, 131, 0.88));
}

.panel.accent .compact-copy,
.panel.accent .section-label {
  color: #f8f4ee;
}

.list,
.timeline {
  margin: 0;
  padding-left: 20px;
}

.list li,
.timeline li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.section-header {
  margin-bottom: 14px;
}

.timeline-section {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline li {
  list-style: decimal;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.footer-banner {
  background: linear-gradient(135deg, rgba(31, 31, 26, 0.94), rgba(90, 59, 45, 0.9));
  color: var(--pearl);
}

.footer-banner .section-label {
  color: rgba(255, 250, 244, 0.72);
}

.footer-banner h2 {
  margin-bottom: 0;
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
    align-items: stretch;
  }

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

  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-copy {
    padding: 40px;
  }

  .hero-card {
    padding: 32px;
  }
}
