:root {
  --bg-top: #f4e6cf;
  --bg-bottom: #e3cfaf;
  --panel: rgba(255, 250, 242, 0.78);
  --panel-strong: rgba(255, 247, 235, 0.92);
  --text: #352416;
  --muted: rgba(53, 36, 22, 0.78);
  --line: rgba(101, 71, 41, 0.18);
  --accent: #8d4b24;
  --accent-soft: rgba(141, 75, 36, 0.12);
  --shadow: rgba(96, 64, 34, 0.16);
  --max-width: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.45), transparent 34%),
    radial-gradient(circle at bottom right, rgba(185, 115, 54, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.page-shell {
  min-height: 100vh;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 40%),
    linear-gradient(315deg, rgba(126, 83, 49, 0.05), transparent 36%);
}

.page-overlay {
  min-height: 100vh;
  padding: 32px 16px 56px;
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto 28px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 60px var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  padding-top: 36px;
}

.eyebrow, .section-kicker, .card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--muted);
}

.hero-layout, .split-section {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  margin-top: 16px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-subhead {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  max-width: 26ch;
  margin-bottom: 10px;
}

.hero-support, .split-section p, .microcopy, .bullet-panel, .hero-card p, .disclaimer-section p, .panel-block p {
  color: var(--muted);
}

.hero-support, .split-section p, .engage-section p {
  max-width: 44rem;
  line-height: 1.65;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(141, 75, 36, 0.26);
  background: rgba(141, 75, 36, 0.09);
  color: #6f3819;
  font-size: 0.92rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 12px;
}

.cta-row-centered { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid rgba(76, 49, 28, 0.82);
  color: var(--text);
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.36);
}

.button-primary {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.button-secondary {
  background: rgba(255,255,255,0.24);
}

.hero-card, .panel-block, .bullet-panel, .flavor-card {
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(101, 71, 41, 0.14);
  border-radius: 22px;
}

.hero-card, .panel-block {
  padding: 22px;
}

.mini-list, .bullet-panel {
  margin: 0;
  padding-left: 1.2rem;
}

.mini-list li + li,
.bullet-panel li + li {
  margin-top: 10px;
}

.section-heading-wrap {
  max-width: 48rem;
  margin-bottom: 20px;
}

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

.flavor-card {
  padding: 22px;
}

.bullet-panel {
  padding: 22px 24px 22px 42px;
}

.compact-panel {
  padding-right: 24px;
}

.quieter-section {
  background: rgba(255, 249, 239, 0.66);
}

strong {
  color: var(--text);
}

.inline-price {
  white-space: nowrap;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.engage-section {
  text-align: center;
}

.engage-section p {
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-section {
  text-align: center;
}

.disclaimer-section p {
  max-width: 46rem;
  margin: 12px auto 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 1023px) {
  .hero-layout, .split-section, .flavor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout > :first-child,
  .split-section > :first-child {
    grid-column: 1 / -1;
  }

  .flavor-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .page-overlay { padding: 20px 16px 40px; }
  .section { padding: 22px 18px; border-radius: 22px; }
  .hero-layout, .split-section, .flavor-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .button { width: 100%; }
  .hero-subhead { max-width: none; }
  .bullet-panel { padding-left: 38px; }
}
