:root {
  --bg: #e8eadf;
  --surface: #f8f7f1;
  --surface-strong: #ffffff;
  --text: #242921;
  --muted: #6d7368;
  --line: rgba(42, 49, 38, 0.12);
  --olive: #66744a;
  --olive-dark: #465330;
  --olive-soft: #e3e8d7;
  --wine: #7a2927;
  --wine-dark: #5f1d1c;
  --danger: #a63c35;
  --success: #47703f;
  --shadow: 0 24px 70px rgba(35, 43, 31, 0.13);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.96), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #f2f2ea 0%, var(--bg) 56%, #dde0d3 100%);
  overflow-x: hidden;
}
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 0 0 max(18px, env(safe-area-inset-bottom));
}
.landing { padding: 10px; }

.hero,
.story-card,
.product-shot,
.specs-panel,
.detail-gallery,
.safety-note,
.reviews-carousel,
.order-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}
.hero-media { position: relative; background: #79bd2f; }
.hero-media img { width: 100%; height: auto; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,26,14,.04) 0%, rgba(19,26,14,0) 48%, rgba(16,22,13,.34) 100%);
  pointer-events: none;
}
.hero-titleplate {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 15px 16px 16px;
  border-radius: 20px;
  color: #fff;
  background: rgba(28, 33, 25, .78);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.eyebrow,
.section-kicker {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow { color: rgba(255,255,255,.76); }
.hero h1 {
  margin: 0;
  font-size: clamp(29px, 8vw, 43px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero-content { padding: 22px 20px 21px; }
.hero-lead {
  margin: 0 0 19px;
  color: #50574c;
  font-size: 16px;
  line-height: 1.62;
}
.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin-bottom: 16px;
}
.price {
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.price-old { color: #9a9d94; text-decoration: line-through; text-decoration-thickness: 2px; }
.price-current { color: var(--text); }
.discount {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  font-size: 13px;
  font-weight: 800;
}
.button {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.button:active { transform: translateY(1px); }
.button:disabled { cursor: wait; opacity: .68; }
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--olive) 0%, var(--olive-dark) 100%);
  box-shadow: 0 13px 26px rgba(70,83,48,.24);
}
.sold-note {
  margin: 10px 0 0;
  color: #83887e;
  font-size: 12px;
  text-align: center;
}

.section { padding: 48px 4px 0; }
.section-heading { padding: 0 8px 17px; }
.section-kicker { color: var(--wine); }
.section-heading h2,
.order-card h2 {
  margin: 0;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.story-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}
.story-image { width: 100%; height: auto; }
.story-body { padding: 22px 20px 24px; }
.story-body > p {
  margin: 0;
  color: #535a50;
  font-size: 15.5px;
  line-height: 1.68;
}
.story-body > p + p { margin-top: 13px; }
.feature-list { margin-top: 23px; border-top: 1px solid var(--line); }
.feature-item {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.feature-number {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
}
.feature-item strong { font-size: 16px; }
.feature-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-shot {
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}
.product-shot img { width: 100%; height: auto; background: #fff; }
.product-shot-copy { padding: 18px 20px 21px; }
.product-shot-copy span { font-size: 18px; font-weight: 800; letter-spacing: -.025em; }
.product-shot-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.specs-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--line);
}
.spec { min-height: 100px; padding: 17px 16px; background: var(--surface); }
.spec span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }
.spec strong { display: block; margin-top: 7px; font-size: 16px; line-height: 1.25; }

.detail-gallery {
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}
.detail-gallery figure { margin: 0; }
.detail-gallery figure + figure { border-top: 1px solid var(--line); }
.detail-gallery img { width: 100%; height: auto; }
.detail-gallery figcaption {
  padding: 15px 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.safety-note {
  margin-top: 14px;
  padding: 19px 20px 20px;
  border-radius: var(--radius-lg);
  background: #f2ede4;
  box-shadow: none;
}
.safety-note strong { color: var(--wine); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.safety-note p { margin: 8px 0 0; color: #645e54; font-size: 13.5px; line-height: 1.6; }

.reviews-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .42s cubic-bezier(.22,.65,.32,1); }
.review-card { flex: 0 0 100%; min-width: 100%; padding: 23px 22px 27px; }
.review-top {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--olive);
  font-weight: 800;
}
.review-top h3 { margin: 0; font-size: 15px; }
.review-top div span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.review-rating { color: #9b7029; font-size: 12px; letter-spacing: .04em; }
.review-card p { margin: 0; color: #555c52; font-size: 15px; line-height: 1.65; }
.carousel-arrow {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,.92);
  cursor: pointer;
}
.carousel-prev { right: 58px; }
.carousel-next { right: 17px; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; padding-top: 13px; }
.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(70,83,48,.22);
  cursor: pointer;
}
.carousel-dots button.is-active { background: var(--olive-dark); }

.order-section { padding: 48px 4px 0; scroll-margin-top: 12px; }
.order-card {
  padding: 25px 20px 22px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}
.order-intro { margin: 12px 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.58; }
.order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 15px;
  border-radius: 16px;
  background: var(--olive-soft);
}
.order-summary span { font-size: 13px; line-height: 1.3; }
.order-summary strong { white-space: nowrap; font-size: 16px; }
.field-group { margin-bottom: 15px; }
.field-group label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.field-group input {
  width: 100%;
  height: 55px;
  padding: 0 16px;
  border: 1px solid rgba(42,49,38,.16);
  border-radius: 17px;
  outline: none;
  color: var(--text);
  background: #fbfbf8;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field-group input:focus { border-color: var(--olive); box-shadow: 0 0 0 4px rgba(102,116,74,.12); background: #fff; }
.field-group input::placeholder { color: #a0a49b; }
.field-group.has-error input { border-color: var(--danger); background: #fff9f8; box-shadow: 0 0 0 4px rgba(166,60,53,.08); }
.field-error,
.form-message {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.45;
}
.form-message { color: var(--success); text-align: center; }
.form-message.is-error { color: var(--danger); }
.privacy-note { margin: 12px 2px 0; color: #858a81; font-size: 11.5px; line-height: 1.5; text-align: center; }

.site-footer {
  padding: 34px 24px 22px;
  color: #5e645a;
  text-align: center;
}
.footer-title { margin-bottom: 11px; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.site-footer p { margin: 0 0 12px; font-size: 12.5px; line-height: 1.65; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px 14px; margin-bottom: 12px; }
.footer-links a { color: #4f574a; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.registry-note { color: #858a81; }

@media (min-width: 540px) {
  .page-shell { padding-top: 16px; }
  .landing { padding: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-track, .button { transition: none; }
}
