/* ---------- Tokens ---------- */
:root {
  --bg: #F6F4EC;
  --bg-alt: #EFEADD;
  --ink: #16290A;
  --ink-soft: #45543A;
  --sage: #4B7A34;
  --sage-deep: #2E4D1E;
  --sage-pale: #D9E6C8;
  --citrus: #C99A2E;
  --line: #D8D2BF;
  --card-bg: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 14px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: 760px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.15; }
h3 { font-size: 1.15rem; margin-bottom: 0.4em; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.ink-soft { color: var(--ink-soft); font-style: italic; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 0.9em;
}

a { color: var(--sage-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--sage-deep);
  color: #fff;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--sage-pale); }

.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; border: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 244, 236, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sage-deep);
}
.wordmark.small { font-size: 1.1rem; margin-bottom: 0.6em; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-sub { font-size: 1.08rem; max-width: 46ch; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 14px; }
.hero-note { font-size: 0.85rem; color: var(--ink-soft); max-width: 40ch; }
.hero-visual img {
  border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(22, 41, 10, 0.35);
}

/* ---------- Progress / Glass band ---------- */
.progress-band {
  background: var(--sage-pale);
  padding: 64px 0;
  margin-top: 40px;
}
.progress-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.progress-sub { max-width: 48ch; }
.progress-stats {
  display: flex;
  gap: 36px;
  margin-top: 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sage-deep);
  font-weight: 600;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.glass-wrap { text-align: center; }
.glass-caption {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--sage-deep);
  margin-top: 8px;
}
#liquidRect { transition: y 1s ease, height 1s ease; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--bg-alt); }

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.ingredient-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.ingredient-card p { margin-bottom: 0; font-size: 0.95rem; }
.fine-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 32px;
  color: var(--ink-soft);
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.steps p { margin-bottom: 0; }

/* ---------- Reserve section ---------- */
.reserve-section { background: var(--sage-deep); }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.reserve-copy .eyebrow { color: var(--sage-pale); }
.reserve-copy h2 { color: #fff; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.price-new { font-family: var(--font-display); font-size: 2.4rem; color: #fff; font-weight: 600; }
.price-old { color: var(--sage-pale); text-decoration: line-through; font-size: 1rem; }
.reserve-list { color: var(--sage-pale); padding-left: 20px; }
.reserve-list li { margin-bottom: 8px; }

.reserve-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reserve-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 12px;
}
.reserve-form input,
.reserve-form select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}
.reserve-form input:focus,
.reserve-form select:focus {
  outline: none;
  border-color: var(--sage);
}
.reserve-form .btn { margin-top: 20px; }
.form-note { font-size: 0.78rem; margin-top: 12px; margin-bottom: 0; }

/* ---------- FAQ ---------- */
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.02rem;
  color: var(--ink);
}
details p { margin-top: 12px; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  padding: 48px 0;
}
.footer-inner .wordmark.small { color: var(--sage-pale); }
.disclaimer {
  font-size: 0.78rem;
  color: #A9B79C;
  max-width: 70ch;
}
.footer-meta {
  font-size: 0.82rem;
  color: #A9B79C;
  margin-bottom: 0;
}
.footer-meta a { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid, .progress-inner, .reserve-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .progress-stats { gap: 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #liquidRect { transition: none; }
  .btn { transition: none; }
}
