:root {
  --paper: #f4efe6;
  --paper-deep: #e8ddcb;
  --ink: #1f2328;
  --muted: #5e615c;
  --accent: #d05c36;
  --accent-deep: #8b3418;
  --panel: rgba(255, 251, 245, 0.74);
  --border: rgba(31, 35, 40, 0.12);
  --shadow: 0 18px 54px rgba(62, 37, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(208, 92, 54, 0.18), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(122, 149, 119, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, var(--paper) 54%, #efe6d9 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(31, 35, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 35, 40, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

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

.hero,
.panel,
.card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 28px 52px;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.95), rgba(247, 240, 230, 0.8)),
    var(--panel);
}

.hero::after {
  position: absolute;
  right: -48px;
  top: -48px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(208, 92, 54, 0.24), rgba(208, 92, 54, 0));
  content: "";
}

.eyebrow,
.section-label,
.timeline-step {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff8f2;
  box-shadow: 0 12px 24px rgba(208, 92, 54, 0.26);
}

.button-secondary {
  border-color: rgba(31, 35, 40, 0.14);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

main {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.panel {
  padding: 26px;
  border-radius: 24px;
  background: var(--panel);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

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

.card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.78);
}

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

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

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(31, 35, 40, 0.09);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(208, 92, 54, 0.12);
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline-item p {
  margin: 8px 0 0;
}

.footer {
  padding: 20px 4px 0;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .intro-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 22px 40px;
  }
}

@media (max-width: 540px) {
  body {
    background-size: auto, auto, auto;
  }

  .page-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 12px;
  }

  .panel,
  .card,
  .hero {
    border-radius: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}
