:root {
  --bg: #e7dfd2;
  --paper: rgba(250, 246, 239, 0.92);
  --ink: #1e2a32;
  --muted: #5b666e;
  --accent: #b85c38;
  --accent-soft: #d99873;
  --line: rgba(30, 42, 50, 0.12);
  --shadow: 0 24px 60px rgba(30, 42, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 92, 56, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(30, 42, 50, 0.18), transparent 28%),
    linear-gradient(135deg, #ede5d8 0%, #d7cec0 48%, #c5beb0 100%);
  min-height: 100vh;
}

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

.hero,
.grid,
.panel {
  animation: rise 700ms ease forwards;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

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

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

.hero-card {
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.section-label,
.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.lede {
  max-width: 62ch;
  margin-top: 20px;
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.status-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.status-list li + li {
  margin-top: 8px;
}

.intro,
.metrics {
  display: grid;
  gap: 18px;
}

.panel {
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 24px;
}

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

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

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

.metric {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.metric-number {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  color: var(--ink);
}

.metric-label {
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .two-up,
  .timeline,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .panel {
    padding: 24px;
  }
}
