/* ============ TOKENS ============ */
:root {
  --green-900: #1a3324;
  --green-800: #234d33;
  --green-700: #2d5a3d;
  --green-600: #3a7a4f;
  --green-500: #5a9b6e;
  --green-300: #b4d4bb;
  --green-100: #e6efe4;
  --cream: #f5f1e8;
  --cream-2: #efe9d9;
  --bone: #fbf9f3;
  --gold: #c9a961;
  --gold-soft: #e2c787;
  --ink: #1a2e1f;
  --muted: #5a6b5c;
  --shadow-sm: 0 4px 14px rgba(26, 51, 36, .08);
  --shadow-md: 0 18px 40px rgba(26, 51, 36, .14);
  --shadow-lg: 0 32px 70px rgba(26, 51, 36, .22);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--green-900);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  padding: 6px 14px;
  border: 1px solid var(--green-300);
  border-radius: 100px;
  background: var(--green-100);
  margin-bottom: 18px;
}
.eyebrow--light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  color: var(--cream);
}

em { font-style: italic; color: var(--green-600); font-family: 'Cormorant Garamond', serif; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-700);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(45, 90, 61, 0.28);
}
.btn--primary:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(45, 90, 61, 0.36);
}
.btn--ghost {
  background: transparent;
  color: var(--green-700);
  font-weight: 600;
}
.btn--ghost:hover { color: var(--green-900); transform: translateX(4px); }
.btn--small {
  padding: 10px 18px;
  font-size: 0.85rem;
  background: var(--green-700);
  color: var(--cream);
}
.btn--small:hover { background: var(--green-900); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 243, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-color: rgba(45, 90, 61, 0.1);
  background: rgba(251, 249, 243, 0.95);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green-700);
}
.brand__mark { width: 30px; height: 30px; }
.brand__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
.brand__name span { color: var(--green-600); font-style: italic; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--green-600);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--green-700); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--green-900); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 100px;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 60%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__leaf {
  position: absolute;
  color: var(--green-300);
  opacity: 0.35;
  width: 600px; height: 600px;
}
.hero__leaf--1 { top: -120px; right: -160px; transform: rotate(35deg); color: var(--green-500); opacity: 0.18; }
.hero__leaf--2 { bottom: -200px; left: -180px; transform: rotate(-20deg); color: var(--green-300); opacity: 0.28; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.hero__title {
  margin: 4px 0 24px;
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__badges {
  display: flex; gap: 28px; list-style: none;
  border-top: 1px solid rgba(45, 90, 61, 0.15);
  padding-top: 24px;
  flex-wrap: wrap;
}
.hero__badges li {
  display: flex; flex-direction: column;
  font-size: 0.85rem;
}
.hero__badges strong {
  color: var(--green-800); font-weight: 700;
  font-size: 1rem;
}
.hero__badges span { color: var(--muted); }

/* BOTTLE */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 540px;
}

.bottle {
  position: relative;
  width: 220px; height: 420px;
  filter: drop-shadow(0 30px 50px rgba(26, 51, 36, 0.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.bottle__cap {
  width: 90px; height: 40px;
  background: linear-gradient(180deg, #1a3324 0%, #2d5a3d 100%);
  border-radius: 8px 8px 4px 4px;
  margin: 0 auto;
  position: relative;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.2);
}
.bottle__cap::before {
  content: ''; position: absolute; left: 8px; right: 8px; top: 6px;
  height: 3px; background: rgba(255,255,255,.1); border-radius: 2px;
}
.bottle__neck {
  width: 70px; height: 18px;
  background: linear-gradient(180deg, #2d5a3d, #234d33);
  margin: 0 auto;
}
.bottle__body {
  width: 220px; height: 360px;
  background: linear-gradient(180deg, #3a7a4f 0%, #234d33 70%, #1a3324 100%);
  border-radius: 24px 24px 32px 32px;
  position: relative;
  overflow: hidden;
}
.bottle__body::before {
  content: ''; position: absolute;
  top: 20px; left: 12px;
  width: 30px; height: 70%;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,0));
  border-radius: 30px;
  filter: blur(6px);
}
.bottle__body::after {
  content: ''; position: absolute;
  top: 30px; right: 18px;
  width: 8px; height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,0));
  border-radius: 8px;
}
.bottle__label {
  position: absolute;
  left: 18px; right: 18px;
  top: 95px;
  background: var(--cream);
  border-radius: 12px;
  padding: 22px 16px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.bottle__leaf {
  width: 28px; height: 28px;
  color: var(--green-700);
  margin: 0 auto 8px;
}
.bottle__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.bottle__variant {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--green-600);
  font-size: 1rem;
  margin: 4px 0 12px;
}
.bottle__size {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 1px solid var(--green-300);
  padding-top: 8px;
}

.leaf-deco {
  position: absolute;
  color: var(--green-500);
  width: 90px; height: 180px;
  opacity: 0.65;
  filter: drop-shadow(0 6px 14px rgba(26, 51, 36, 0.18));
}
.leaf-deco--a {
  top: 40px; left: 0;
  transform: rotate(-30deg);
  color: var(--green-600);
}
.leaf-deco--b {
  bottom: 30px; right: 10px;
  transform: rotate(140deg);
  width: 70px; height: 140px;
  opacity: 0.5;
}

/* ============ SECTIONS ============ */
.section {
  padding: 110px 0;
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section__head--left {
  text-align: left;
  margin: 0 0 60px;
}
.section__head h2 { margin-bottom: 16px; }
.section__head p { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 30px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============ BENEFITS ============ */
.benefits { background: var(--bone); }
.card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  border: 1px solid rgba(45, 90, 61, 0.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 16px;
  transition: background .3s, color .3s;
}
.card .icon svg { width: 28px; height: 28px; }
.card:hover .icon { background: var(--green-700); color: var(--cream); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ============ INGREDIENTS ============ */
.ingredients {
  background: linear-gradient(180deg, var(--bone) 0%, var(--green-100) 100%);
}
.ingredients__grid { gap: 36px; }
.ingredient { text-align: center; }
.ingredient__art {
  width: 130px; height: 130px;
  margin: 0 auto 18px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
  position: relative;
}
.ingredient__art::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.4;
}
.ingredient__art svg { width: 70px; height: 70px; }
.ingredient:hover .ingredient__art { transform: rotate(-6deg) scale(1.05); }
.ingredient h4 { margin-bottom: 8px; }
.ingredient p { color: var(--muted); font-size: 0.92rem; max-width: 240px; margin: 0 auto; }

/* ============ PRODUCTS ============ */
.products { background: var(--bone); }
.product {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 90, 61, 0.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 14px 40px rgba(201, 169, 97, 0.18);
}
.ribbon {
  position: absolute;
  top: 20px; right: -34px;
  background: var(--gold);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.product__bottle {
  height: 240px;
  background: linear-gradient(180deg, var(--green-100) 0%, var(--cream) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product__bottle::before {
  content: ''; position: absolute;
  width: 280px; height: 280px;
  background: var(--accent);
  opacity: 0.12;
  border-radius: 50%;
  top: 60%; left: 50%;
  transform: translate(-50%, -50%);
}
.mini-bottle {
  width: 110px; height: 200px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 55%, black));
  border-radius: 14px 14px 22px 22px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: transform .4s var(--ease);
}
.mini-bottle::before {
  content: ''; position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 22px;
  background: linear-gradient(180deg, #1a3324, #234d33);
  border-radius: 6px 6px 2px 2px;
}
.mini-bottle::after {
  content: ''; position: absolute; left: 8px; top: 12px;
  width: 18px; height: 70%;
  background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,0));
  border-radius: 30px;
  filter: blur(4px);
}
.product:hover .mini-bottle { transform: translateY(-8px) rotate(-3deg); }
.mini-bottle span {
  position: relative;
  background: var(--cream);
  color: var(--green-900);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 10px;
  border-radius: 4px;
  line-height: 1.2;
  z-index: 1;
  width: 78%;
}
.product__body { padding: 26px 24px 28px; }
.product__sub {
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}
.product__desc { color: var(--muted); font-size: 0.92rem; margin: 12px 0 22px; }
.product__foot {
  display: flex; align-items: center; justify-content: space-between;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green-900);
}

/* ============ FEATURED PRODUCT (single) ============ */
.feature-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 60px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 90, 61, 0.08);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.feature-product::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(58, 122, 79, 0.12), transparent 70%);
  top: -80px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.feature-product__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 460px;
}
.feature-product__img {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(26, 51, 36, 0.25);
  transition: transform .5s var(--ease);
}
.feature-product__img:hover { transform: scale(1.02) rotate(-1deg); }

.bottle--lg {
  width: 240px;
  height: 460px;
}
.bottle--lg .bottle__cap { width: 100px; height: 44px; }
.bottle--lg .bottle__neck { width: 76px; height: 20px; }
.bottle--lg .bottle__body {
  width: 240px;
  height: 396px;
}
.bottle--lg .bottle__label {
  top: 110px;
  padding: 26px 18px 26px;
}
.bottle--lg .bottle__brand { font-size: 1.7rem; }
.bottle--lg .bottle__variant { font-size: 1.1rem; }

.feature-product__info { position: relative; z-index: 1; }
.ribbon--inline {
  position: static;
  display: inline-block;
  transform: none;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
  font-size: 0.7rem;
  box-shadow: none;
}
.feature-product__info h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 6px;
  color: var(--green-900);
}
.feature-product__sub {
  color: var(--green-600);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.feature-product__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.feature-product__price .price {
  font-size: 2.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--green-900);
}
.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.1rem;
}
.discount {
  background: var(--gold);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}
.feature-product__desc {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 22px;
  line-height: 1.65;
}
.checklist {
  list-style: none;
  margin-bottom: 30px;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.96rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-700);
  background-image:
    linear-gradient(45deg, transparent 45%, var(--cream) 45%, var(--cream) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--cream) 45%, var(--cream) 55%, transparent 55%);
  background-size: 12px 2px, 6px 2px;
  background-position: 3px 9px, 3px 11px;
  background-repeat: no-repeat;
}
.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
  width: 100%;
  margin-bottom: 18px;
}
.feature-product__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .feature-product {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 24px;
  }
  .feature-product__visual { min-height: 380px; }
  .bottle--lg { transform: scale(0.85); }
  .feature-product__price .price { font-size: 2rem; }
}

/* ============ PAYMENT DETAILS PANEL ============ */
.pay-details {
  margin-top: 14px;
  padding: 18px;
  background: var(--green-100);
  border-radius: 14px;
  border: 1px dashed var(--green-300);
}
.pay-details__note {
  font-size: 0.88rem;
  color: var(--green-800);
  margin-bottom: 14px;
  line-height: 1.5;
}
.pay-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pay-card {
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(45, 90, 61, 0.1);
}
.pay-card--full { grid-column: 1 / -1; }
.pay-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px;
}
.pay-card p {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  gap: 10px;
}
.pay-card p span { color: var(--muted); }
.pay-card p strong {
  color: var(--green-900);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
}
@media (max-width: 720px) {
  .pay-details__grid { grid-template-columns: 1fr; }
}

/* ============ REVIEWS ============ */
.reviews {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--bone) 100%);
}
.review {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-600);
  position: relative;
}
.review .stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.review p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 18px;
}
.review footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-700);
}

/* ============ CTA ============ */
.cta {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta::before {
  width: 380px; height: 380px;
  background: var(--green-600);
  top: -120px; left: -100px;
  opacity: 0.4;
}
.cta::after {
  width: 320px; height: 320px;
  background: var(--gold);
  bottom: -100px; right: -80px;
  opacity: 0.18;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta h2 { color: var(--cream); margin-bottom: 14px; }
.cta__text p { color: rgba(245, 241, 232, 0.78); max-width: 460px; }

.cta__form {
  display: flex; gap: 10px;
  background: rgba(255,255,255,.1);
  padding: 8px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
  flex-wrap: wrap;
}
.cta__form input {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 22px;
  color: var(--cream);
  font-size: 0.98rem;
  font-family: inherit;
}
.cta__form input::placeholder { color: rgba(245, 241, 232, 0.5); }
.cta__form .btn--primary {
  background: var(--gold);
  color: var(--green-900);
  box-shadow: 0 6px 18px rgba(201, 169, 97, 0.3);
}
.cta__form .btn--primary:hover {
  background: var(--gold-soft);
  color: var(--green-900);
}
.form__msg {
  width: 100%;
  position: absolute;
  bottom: -32px; left: 16px;
  font-size: 0.85rem;
  color: var(--gold-soft);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--green-900);
  color: rgba(245, 241, 232, 0.7);
  padding: 70px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer .brand__name { color: var(--cream); }
.footer .brand__name span { color: var(--green-500); }
.footer__brand p {
  margin-top: 14px;
  max-width: 280px;
  font-size: 0.92rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h5 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__cols a {
  display: block;
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color .2s;
}
.footer__cols a:hover { color: var(--cream); }

.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 30px 0; }
  .hero__visual { order: -1; min-height: 420px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; order: 3; }
  .nav__actions { order: 2; margin-right: 8px; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bone);
    padding: 24px;
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
    gap: 18px;
  }
  .section { padding: 80px 0; }
  .hero { padding: 40px 0 70px; }
  .hero__lead { font-size: 1.05rem; }
  .grid--4 { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .bottle { transform: scale(0.85); }
}

/* ============ CART BUTTON ============ */
.nav__actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--green-900);
  transition: background .2s, transform .2s;
}
.cart-btn:hover { background: var(--green-100); transform: translateY(-1px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-btn__count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--green-700);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bone);
  transform: scale(0);
  transition: transform .25s var(--ease);
}
.cart-btn__count.is-active { transform: scale(1); }
.cart-btn.is-bumping { animation: bump .35s var(--ease); }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ============ DRAWER ============ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 51, 36, 0.45);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; }
.drawer-overlay[hidden] { display: none; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--bone);
  z-index: 110;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(26, 51, 36, 0.2);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(45, 90, 61, 0.1);
}
.drawer__head h3 { font-size: 1.6rem; }
.drawer__close, .modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-900);
  transition: background .2s;
}
.drawer__close:hover, .modal__close:hover { background: var(--green-100); }
.drawer__close svg, .modal__close svg { width: 20px; height: 20px; }

.drawer__body { flex: 1; overflow-y: auto; padding: 12px 28px; }

.drawer__empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
}
.drawer__empty svg {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  color: var(--green-300);
}
.drawer__empty p { margin-bottom: 18px; font-size: 1rem; }

.drawer__items { list-style: none; }
.drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  align-items: center;
}
.drawer-item:last-child { border-bottom: none; }
.drawer-item__art {
  width: 64px; height: 64px;
  border-radius: 12px;
  background: var(--accent, var(--green-600));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.drawer-item__art::before {
  content: ''; position: absolute; left: 6px; top: 8px;
  width: 8px; height: 70%;
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0));
  border-radius: 8px;
  filter: blur(2px);
}
.drawer-item__art span {
  position: relative;
  background: var(--cream);
  color: var(--green-900);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 3px;
  line-height: 1.1;
  text-align: center;
}
.drawer-item__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-900);
}
.drawer-item__price { font-size: 0.88rem; color: var(--muted); }
.drawer-item__qty {
  display: inline-flex; align-items: center;
  margin-top: 8px;
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 100px;
  overflow: hidden;
}
.drawer-item__qty button {
  width: 28px; height: 28px;
  font-size: 1rem; font-weight: 600;
  color: var(--green-700);
  transition: background .2s;
}
.drawer-item__qty button:hover { background: var(--green-100); }
.drawer-item__qty span {
  min-width: 28px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
}
.drawer-item__right {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.drawer-item__total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--green-900);
}
.drawer-item__remove {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: underline;
  transition: color .2s;
}
.drawer-item__remove:hover { color: #b14a3e; }

.drawer__foot {
  padding: 22px 28px 26px;
  border-top: 1px solid rgba(45, 90, 61, 0.1);
  background: white;
}
.drawer__row {
  display: flex; justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.drawer__row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--green-900);
}
.drawer__row--muted { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }
.drawer__checkout { width: 100%; padding: 16px; }

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0;
  background: rgba(26, 51, 36, 0.55);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__inner {
  position: relative;
  background: var(--bone);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.98);
  transition: transform .35s var(--ease);
}
.modal.is-open .modal__inner { transform: translateY(0) scale(1); }
.modal__inner--small { max-width: 480px; text-align: center; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(255,255,255,.7);
}

/* ============ CHECKOUT ============ */
.checkout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
}
.checkout__form-wrap {
  padding: 44px 44px 40px;
}
.checkout__form-wrap h2 { margin: 6px 0 8px; }
.checkout__note { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; }

.checkout-form h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 24px 0 14px;
}
.checkout-form h4:first-child { margin-top: 0; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.field input {
  padding: 12px 16px;
  border: 1px solid rgba(45, 90, 61, 0.18);
  border-radius: 10px;
  background: white;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(58, 122, 79, 0.15);
}
.field input.is-error { border-color: #c8624f; box-shadow: 0 0 0 3px rgba(200, 98, 79, 0.15); }

.payment { display: flex; flex-direction: column; gap: 10px; }
.radio {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(45, 90, 61, 0.18);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 0.95rem;
}
.radio:has(input:checked) {
  border-color: var(--green-600);
  background: var(--green-100);
}
.radio input { accent-color: var(--green-700); }

.checkout-form__submit {
  width: 100%; margin-top: 26px; padding: 16px;
}
.checkout-form__msg {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #c8624f;
  min-height: 1.2em;
}

.checkout__summary {
  background: var(--green-100);
  padding: 44px 36px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.checkout__summary h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 22px;
}
.summary__items {
  list-style: none;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(45, 90, 61, 0.18);
  padding-bottom: 16px;
}
.summary__items li {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 0.92rem;
}
.summary__items li span:first-child { color: var(--ink); }
.summary__items li span:last-child { color: var(--muted); }
.summary__row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}
.summary__row--total {
  border-top: 1px solid rgba(45, 90, 61, 0.18);
  padding-top: 16px;
  margin-top: 10px;
  font-size: 1.1rem;
}
.summary__row--total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--green-900);
}

/* ============ SUCCESS ============ */
.success { padding: 50px 36px 40px; }
.success__icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  color: var(--green-600);
}
.success h2 { margin-bottom: 12px; }
.success p { color: var(--muted); margin-bottom: 26px; }
.success p strong { color: var(--green-800); }
.success .btn { width: 100%; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--green-900);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 300;
  opacity: 0;
  transition: transform .4s var(--ease), opacity .3s;
  pointer-events: none;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ============ RESPONSIVE OVERRIDES ============ */
@media (max-width: 720px) {
  .nav__actions { gap: 8px; }
  .checkout { grid-template-columns: 1fr; }
  .checkout__form-wrap { padding: 32px 24px 24px; }
  .checkout__summary {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 28px 24px;
  }
  .field-grid { grid-template-columns: 1fr; }
  .drawer__head, .drawer__body, .drawer__foot { padding-left: 22px; padding-right: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
