:root {
  --bg: #f4efe5;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf1;
  --text: #1f1b16;
  --muted: #675c4d;
  --line: rgba(90, 71, 40, 0.12);
  --primary: #b54e19;
  --primary-strong: #8d3304;
  --accent: #145f5a;
  --shadow: 0 30px 80px rgba(74, 49, 18, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(204, 114, 47, 0.20), transparent 35%),
    radial-gradient(circle at right center, rgba(20, 95, 90, 0.14), transparent 30%),
    linear-gradient(160deg, #efe3cf 0%, #f8f4eb 45%, #efe7da 100%);
}

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

.hero,
.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  padding: 40px;
}

.eyebrow,
.section-kicker,
.status-chip {
  display: inline-block;
  margin: 0 0 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
}

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

h1 {
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.96;
  max-width: 10ch;
  margin-bottom: 20px;
}

.lead {
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid var(--line);
}

.status-card {
  align-self: start;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.95), rgba(249, 240, 229, 0.88));
  border: 1px solid var(--line);
}

.status-chip {
  color: var(--primary-strong);
  background: rgba(181, 78, 25, 0.09);
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.status-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.status-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.status-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.status-list dt {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.status-list dd {
  margin: 0;
  font-size: 17px;
}

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

.panel {
  padding: 32px;
}

.panel-accent {
  background: linear-gradient(180deg, rgba(20, 95, 90, 0.10), rgba(255, 252, 247, 0.78));
}

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

.feature-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card p {
  line-height: 1.65;
  color: var(--muted);
}

.timeline {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .panel {
    padding: 24px;
  }

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

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 20px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: 38px;
  }

  .lead,
  .timeline {
    font-size: 16px;
  }
}
