@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #1c1d16;
  --paper: #faf9f3;
  --lime: #c9dd35;
  --lime-deep: #a9bb1f;
  --olive: #6b7226;
  --stone: #e8e6da;
  --stone-line: #d8d5c4;
  --white: #ffffff;
  --muted: #6b6b5f;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--stone-line);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand span { color: var(--olive); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 10px 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--lime) 0%, rgba(201,221,53,0) 70%);
  opacity: 0.35;
  z-index: 0;
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--stone);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime-deep);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--olive);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 15px 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.15s, opacity 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--ink);
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 26px;
}
.price-now { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; }
.price-old { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.price-badge {
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-media-frame {
  background: linear-gradient(160deg, var(--stone) 0%, var(--paper) 100%);
  border-radius: 4px;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-line);
}
.hero-media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.14));
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Section shared ---------- */
.section { padding: 72px 0; }
.section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 14px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 15.5px; line-height: 1.6; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
}
.feature-card {
  background: var(--paper);
  padding: 30px 24px;
}
.feature-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--lime-deep);
  margin-bottom: 14px;
}
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink); }

/* ---------- Ingredient band ---------- */
.ingredient-band {
  background: var(--ink);
  color: var(--paper);
}
.ingredient-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
}
.ingredient-item .pct {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  color: var(--lime);
}
.ingredient-item .name { font-weight: 700; margin-top: 6px; font-size: 15px; }
.ingredient-item .desc { color: #b9b9a8; font-size: 13.5px; margin-top: 8px; line-height: 1.55; }

/* ---------- Order section ---------- */
.order-section { background: var(--stone); }
.order-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
.order-summary {
  background: var(--paper);
  border: 1px solid var(--stone-line);
  padding: 30px;
  position: sticky;
  top: 90px;
}
.order-summary img { width: 100%; max-height: 260px; object-fit: contain; margin-bottom: 20px; }
.order-summary h3 { font-size: 20px; margin-bottom: 8px; }
.order-summary .tag { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.order-summary .price-row { margin-bottom: 6px; }
.order-summary .size { font-size: 13px; color: var(--muted); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--stone-line);
  padding: 34px;
}
.form-card h3 { font-size: 20px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 700; color: var(--ink); }
input, textarea, select {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--stone-line);
  background: var(--white);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--olive); }
textarea { resize: vertical; min-height: 80px; }
.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--stone-line);
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--radius);
}
.qty-val { font-weight: 700; font-size: 16px; min-width: 20px; text-align: center; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px dashed var(--stone-line);
  margin: 18px 0;
  font-weight: 700;
}
.order-total-row .amt { font-family: 'Fraunces', serif; font-size: 22px; }
.submit-btn {
  width: 100%;
  background: var(--lime-deep);
  color: var(--ink);
  border: none;
  padding: 16px;
  font-weight: 800;
  font-size: 15.5px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: opacity 0.15s;
}
.submit-btn:hover { opacity: 0.9; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-msg { margin-top: 14px; padding: 12px 14px; border-radius: var(--radius); font-size: 14px; display: none; }
.form-msg.success { display: block; background: #e7f0c6; color: var(--olive); border: 1px solid var(--lime-deep); }
.form-msg.error { display: block; background: #f5dede; color: #8a2b2b; border: 1px solid #d98b8b; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #b9b9a8;
  padding: 40px 0;
  text-align: center;
  font-size: 13.5px;
}
.footer a { text-decoration: underline; }
.footer-admin {
  color: #6f6f5f;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-inner { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .order-wrap { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
