:root {
  --soil: #4a3426;
  --wheat: #d5b56d;
  --leaf: #476c3b;
  --mist: #f1eadf;
  --ink: #1f1c18;
  --panel: rgba(255, 250, 242, 0.94);
  --line: rgba(74, 52, 38, 0.14);
  --glow: rgba(213, 181, 109, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(213, 181, 109, 0.32), transparent 38%),
    radial-gradient(circle at bottom right, rgba(71, 108, 59, 0.18), transparent 34%),
    linear-gradient(160deg, #f7f0e6 0%, #efe5d6 48%, #e4d7c2 100%);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
}

.panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(74, 52, 38, 0.14);
  backdrop-filter: blur(10px);
}

.hero {
  padding: 40px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 236, 220, 0.88)),
    linear-gradient(120deg, rgba(71, 108, 59, 0.1), rgba(213, 181, 109, 0.14));
  border: 1px solid rgba(71, 108, 59, 0.12);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}

.eyebrow,
.story-label,
.card-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--leaf);
}

h1,
h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  color: var(--soil);
  margin: 0;
}

h1 {
  margin-top: 12px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.lede {
  max-width: 58rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat,
.card,
.story {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--soil);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(31, 28, 24, 0.76);
}

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

.card {
  padding: 22px;
}

.card-text {
  margin: 12px 0 0;
  line-height: 1.7;
}

.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 20px;
  padding: 24px;
}

.story p:last-child,
.footer p {
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 2px 0;
  color: rgba(31, 28, 24, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .panel {
    padding: 20px;
  }

  .hero {
    padding: 28px;
  }

  .hero-band,
  .grid,
  .story {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 14px;
  }

  .panel {
    border-radius: 20px;
  }
}
