:root {
  color-scheme: light;
  --bg: #faf8f4;
  --bg-warm: #f2ebe2;
  --surface: #ffffff;
  --text: #2c2820;
  --muted: #6d6558;
  --omia: #8b7355;
  --omia-light: #b89a72;
  --eat: #6b9a6b;
  --eat-soft: #dce8dc;
  --nourish: #d4926a;
  --nourish-soft: #f5e6d8;
  --border: rgba(44, 40, 32, 0.1);
  --shadow: 0 20px 54px rgba(139, 115, 85, 0.12);
  --radius: 20px;
  --font-display: "Charter", Georgia, 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.74;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 10% 90%, var(--eat-soft), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 10%, var(--nourish-soft), transparent 50%),
    var(--bg);
}

.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: 32px;
  align-items: center;
  margin-bottom: 32px;
  padding: 36px 34px 40px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.plate-mark {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid var(--omia-light);
  box-shadow: inset 0 0 0 8px var(--surface);
}

.plate-mark__inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--eat-soft), var(--nourish-soft));
  border: 1px dashed rgba(139, 115, 85, 0.3);
}

.hero__copy {
  min-width: 0;
}

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

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--omia);
}

.brand-title .intuitive {
  display: block;
  margin-top: 4px;
  font-size: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nourish);
}

.brand-title .eating {
  font-style: italic;
  font-weight: 500;
  color: var(--eat);
}

h1 {
  margin: 16px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

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

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

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

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

.highlights li:nth-child(1) {
  border-top: 3px solid var(--omia);
}

.highlights li:nth-child(2) {
  border-top: 3px solid var(--eat);
}

.highlights li:nth-child(3) {
  border-top: 3px solid var(--nourish);
}

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

.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: calc(var(--radius) - 4px);
  background: var(--surface);
  border: 1px solid var(--border);
}

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

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

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

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

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

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

.footer {
  margin-top: 34px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--omia) 0%, var(--eat) 100%);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 0.86rem;
}

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

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

  .plate-mark {
    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 56px;
  }

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