/* ---------- Tokens ---------- */
:root {
  --bg: #f6f2e9;
  --bg-elev: #fbf8f1;
  --ink: #16201a;
  --ink-soft: #4a574e;
  --ink-mute: #7c8a80;
  --line: #e6dfcf;

  --aloe: #5e9a5b;
  --aloe-deep: #2c5a36;
  --aloe-leaf: #3f7a44;
  --pom: #b3343a;
  --pom-deep: #7a1f25;
  --mango: #e89525;
  --mango-deep: #b76812;

  --radius: 18px;
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);

  --serif: "Inter Tight", Inter, system-ui, sans-serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography ---------- */
.wordmark {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aloe-deep);
  font-weight: 600;
  margin: 0 0 14px;
}
.display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}
.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
}
.muted { color: var(--ink-soft); }
.small { font-size: 13px; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 233, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav { display: flex; gap: 28px; align-items: center; font-size: 15px; }
.nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--aloe-deep); }
@media (max-width: 640px) {
  .nav { gap: 16px; font-size: 14px; }
  .nav a:not(.nav-cta):not(:last-of-type) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--aloe-deep); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--aloe-deep); }
.btn-lg { padding: 18px 28px; font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 88px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 30%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(94, 154, 91, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 640px; }
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-row li {
  display: flex;
  flex-direction: column;
}
.trust-row strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--aloe-deep);
}
.trust-row span { font-size: 13px; color: var(--ink-mute); }

.hero-bottle {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}
.hero-bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 92%;
  height: 88%;
  background: radial-gradient(ellipse at 50% 60%, rgba(94, 154, 91, 0.22) 0%, rgba(94, 154, 91, 0.08) 45%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}
.hero-bottle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 60%;
  height: 28px;
  background: radial-gradient(ellipse at 50% 50%, rgba(20, 32, 24, 0.22) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}
.hero-bottle img {
  height: clamp(380px, 56vw, 620px);
  width: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottle { min-height: 360px; order: -1; }
  .hero-bottle img { height: 360px; }
}

/* ---------- Flavors ---------- */
.flavors {
  background: var(--bg-elev);
  padding: clamp(60px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .flavor-grid { grid-template-columns: 1fr; } }

.flavor {
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.flavor-art {
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.flavor-art img {
  height: 300px;
  width: auto;
  position: relative;
  z-index: 1;
}
.flavor--original { background: #eef4ea; }
.flavor--pomegranate { background: #f5ecec; }
.flavor--mango { background: #f7f0e3; }

.flavor-meta h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.flavor--original h3 { color: var(--aloe-deep); }
.flavor--pomegranate h3 { color: var(--pom-deep); }
.flavor--mango h3 { color: var(--mango-deep); }
.flavor-meta p { color: var(--ink-soft); margin: 0 0 18px; font-size: 15px; }

.spec {
  display: flex;
  gap: 24px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.spec div { display: flex; flex-direction: column; }
.spec dt { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }
.spec dd { margin: 4px 0 0; font-weight: 600; font-size: 15px; }

/* ---------- Story ---------- */
.story { padding: clamp(60px, 8vw, 110px) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }

.story-copy p:not(.eyebrow) { color: var(--ink-soft); font-size: 18px; max-width: 60ch; }
.checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.checks li {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 14px;
  color: var(--ink-soft);
}
.checks li::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 0.5em;
  background: var(--aloe);
  border-radius: 50%;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.12);
}

.story-card {
  background: var(--ink);
  color: var(--bg);
  padding: 36px;
  border-radius: var(--radius);
}
.big-num {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.big-num span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mute);
  margin-top: 14px;
}
.big-num-label { color: var(--ink-mute); margin: 6px 0 22px; font-size: 14px; }
.story-card hr { border: none; border-top: 1px solid #2a3a30; margin: 0 0 22px; }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.kv > div { display: flex; flex-direction: column; gap: 4px; }
.kv span { color: var(--ink-mute); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.kv strong { font-weight: 600; font-size: 16px; }

/* ---------- Stock / steps ---------- */
.stock {
  background: var(--aloe-deep);
  color: var(--bg);
  padding: clamp(60px, 8vw, 110px) 0;
}
.stock .eyebrow { color: #b8d6b6; }
.stock .h2 { color: var(--bg); }
.stock .lede { color: #d4e3d1; }
.stock-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.steps li { padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.step-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: #b8d6b6;
  letter-spacing: 0.08em;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 12px 0 8px;
  color: var(--bg);
}
.steps p { color: #d4e3d1; margin: 0; }

/* ---------- Contact ---------- */
.contact { padding: clamp(80px, 10vw, 140px) 0; text-align: center; }
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact .h2 { margin-bottom: 14px; }
.contact p { color: var(--ink-soft); font-size: 18px; margin: 0 0 32px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}
.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer .wordmark { margin: 0 0 4px; }
.footer p { margin: 0; }
.footer-legal { display: flex; flex-direction: column; gap: 4px; text-align: right; }
@media (max-width: 720px) {
  .footer-legal { text-align: left; }
}
