:root {
  color-scheme: light;
  --bg: #fff9f4;
  --bg-leaf: #f2f7f0;
  --surface: #ffffff;
  --text: #2a2218;
  --muted: #6d6256;
  --olive: #5a7a4a;
  --olive-dark: #3d5234;
  --terracotta: #c96b4a;
  --terracotta-soft: #f5ddd4;
  --cream: #faf3e8;
  --gold: #d4a84b;
  --border: rgba(42, 34, 24, 0.1);
  --shadow: 0 18px 50px rgba(201, 107, 74, 0.12);
  --radius: 20px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body:
    "SF Pro Text",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(90, 122, 74, 0.15), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, var(--terracotta-soft), transparent 50%),
    linear-gradient(180deg, var(--bg-leaf) 0%, var(--bg) 50%, var(--cream) 100%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
  padding: 36px 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--olive), var(--terracotta));
  border-radius: var(--radius) 0 0 var(--radius);
}

.hero {
  position: relative;
}

.hero__main {
  padding-left: 8px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--olive) 0%, var(--olive-dark) 100%);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  box-shadow: 0 12px 32px rgba(90, 122, 74, 0.3);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--olive-dark);
}

.brand-title span {
  font-style: normal;
  font-weight: 600;
  color: var(--terracotta);
}

h1 {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.lead {
  margin-top: 12px;
  max-width: 50ch;
  font-size: 0.98rem;
  color: var(--muted);
}

.updated {
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--olive);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px dashed var(--border);
}

.highlights li:nth-child(1) {
  background: var(--bg-leaf);
  border-style: solid;
  border-color: rgba(90, 122, 74, 0.25);
}

.highlights li:nth-child(2) {
  border-color: rgba(201, 107, 74, 0.35);
}

.highlights li:nth-child(3) {
  background: var(--cream);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--olive-dark);
}

.highlights span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.card--wide {
  grid-column: 1 / -1;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.card p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 10px;
}

a {
  color: var(--olive);
  font-weight: 650;
}

a:hover {
  color: var(--terracotta);
}

.footer {
  margin-top: 34px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--olive-dark);
  color: #d8e4d0;
  text-align: center;
  font-size: 0.86rem;
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__main {
    padding-left: 0;
  }

  .brand-icon {
    margin: 0 auto;
  }

  .lead {
    max-width: none;
  }

  .highlights,
  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 28px 0 52px;
  }

  .hero {
    padding: 28px 22px;
  }
}
