/* Creta Verde Pakistan - design system
   Palette from the bottle label: deep forest green, bone cream, label orange, off-black.
   Type: Archivo (display, echoes the condensed logotype) + Karla (body).
   Shape lock: 6px radius on cards and buttons. Accent lock: label orange. */

:root {
  --green-950: #0F1D15;
  --green-900: #16281E;
  --green-800: #1E3A2A;
  --green-700: #2C4A38;
  --green-sage: #8CA391;
  --bone: #F4EFE3;
  --bone-2: #ECE5D4;
  --stone: #D9D3C6;
  --orange: #E8821E;
  --orange-deep: #C96A10;
  --orange-text: #9C5507;
  --wa-green: #0F7A3A;
  --ink: #131711;
  --ink-soft: #3D453C;
  --white: #FCFAF4;
  --radius: 6px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 18px 50px rgba(19, 29, 21, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  font-family: 'Karla', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--orange); color: var(--white); }

h1, h2, h3, .display {
  font-family: 'Archivo', 'Arial Narrow', sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ----------
   Control language: sharp rectangles, uppercase tracked Archivo, like the
   rectilinear blocks on the Creta Verde label. Cards keep 6px; controls are square. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.16s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.97); }
.btn-solid { background: var(--orange); color: #17120A; }
.btn-solid:hover { background: #F49038; }
.btn-ghost { border-color: rgba(252, 250, 244, 0.5); color: var(--white); }
.btn-ghost:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.btn-ink { background: var(--green-900); color: var(--bone); }
.btn-ink:hover { background: var(--green-800); }
.btn-line { border-color: rgba(19, 23, 17, 0.35); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); }
.btn-wa { background: var(--wa-green); color: var(--white); }
.btn-wa:hover { background: #0C6830; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: var(--bone);
  box-shadow: 0 1px 0 rgba(19, 23, 17, 0.1);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 44px; height: auto; border-radius: 4px; }
.nav-brand-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.nav-brand-text em { font-style: normal; font-weight: 600; font-size: 11px; letter-spacing: 0.22em; color: var(--orange-text); }
.on-dark .nav:not(.scrolled) .nav-brand-text { color: var(--bone); }
.on-dark .nav:not(.scrolled) .nav-brand-text em { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links > a {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.on-dark .nav:not(.scrolled) .nav-links > a { color: var(--bone); }
.nav-links > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; padding: 12px 22px; }
.on-dark .nav:not(.scrolled) .nav-cta { background: var(--orange); color: #17120A; }
.nav-cart { display: inline-flex; align-items: center; gap: 6px; }
.cart-count[hidden] { display: none; }
.cart-count {
  min-width: 21px; height: 21px;
  border-radius: 21px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; z-index: 130; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.on-dark .nav:not(.scrolled):not(.open) .nav-toggle span { background: var(--bone); }
.nav.open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-brand-text { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bone);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 120;
  }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; }
  .nav-links > a { font-size: 24px; color: var(--ink) !important; }
  .nav.open .nav-toggle span { background: var(--ink); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  background: var(--green-900);
  color: var(--bone);
  overflow: clip;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 78% 30%, rgba(232, 130, 30, 0.16), transparent 62%),
    radial-gradient(900px 600px at 12% 85%, rgba(44, 74, 56, 0.55), transparent 60%);
  z-index: -1;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.9) contrast(1.05);
}
.hero-copy {
  padding: calc(var(--nav-h) + 40px) 24px 60px clamp(24px, 6vw, 96px);
  max-width: 720px;
}
.hero-kicker {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  max-width: 46ch;
  color: rgba(244, 239, 227, 0.85);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dist {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 227, 0.18);
  max-width: 440px;
}
.hero-dist img { height: 34px; width: auto; flex: none; }
.hero-dist span {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.78);
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 20px) clamp(16px, 4vw, 60px) 40px;
}
.hero-bottle {
  width: clamp(240px, 25vw, 340px);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 0; text-align: left; }
  .hero-visual { min-height: 420px; padding-top: 10px; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green-950);
  color: var(--bone);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 239, 227, 0.08);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Statement (scrub reveal) ---------- */
.statement {
  background: var(--green-950);
  color: var(--bone);
  padding: clamp(100px, 14vw, 200px) 0;
}
.statement-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.1vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 1000px;
  text-wrap: balance;
}
.statement-text .w { display: inline-block; }

/* ---------- Inline heading image ---------- */
.hword {
  display: inline-block;
  width: 1.7em;
  height: 0.82em;
  border-radius: 999px;
  overflow: hidden;
  vertical-align: -0.06em;
}
.hword img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero split words ---------- */
.hero h1 .hw { display: inline-block; }

/* ---------- Sections ---------- */
.section { padding: clamp(90px, 12vw, 170px) 0; }
.section-head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 80px); }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head p { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Story pin (GSAP) ---------- */
.story { background: var(--bone); }
.story-pin { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 80px); align-items: start; }
.story-text { position: sticky; top: calc(var(--nav-h) + 40px); }
.story-step { margin-bottom: clamp(60px, 10vh, 120px); opacity: 0.25; transition: opacity 0.4s var(--ease); }
.story-step.active { opacity: 1; }
.story-step h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); text-transform: uppercase; margin-bottom: 12px; }
.story-step p { color: var(--ink-soft); max-width: 52ch; }
.story-step .num {
  font-family: 'Archivo', sans-serif;
  color: var(--orange-text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 10px;
}
.story-imgs { display: grid; gap: clamp(20px, 3vw, 36px); }
.story-imgs figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.story-imgs img { width: 100%; height: clamp(320px, 52vh, 560px); object-fit: cover; transition: transform 1.2s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .story-imgs figure:hover img { transform: scale(1.04); }
  .bento-cell.img:hover > img { transform: scale(1.05); }
  .serve-card:hover img { transform: scale(1.06); }
  .product-card:hover .product-media img { transform: scale(1.045) rotate(-0.5deg); }
}
@media (max-width: 900px) {
  .story-pin { grid-template-columns: 1fr; }
  .story-text { position: static; }
  .story-step { opacity: 1; margin-bottom: 28px; }
}

/* ---------- Proof bento ---------- */
.proof { background: var(--bone-2); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}
.bento-cell {
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 23, 17, 0.06);
}
.bento-cell.wide { grid-column: span 2; }
.bento-cell.tall { grid-row: span 2; min-height: 500px; }
.bento-cell.img { color: var(--bone); border: 0; }
.bento-cell.img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.2s var(--ease);
}
.bento-cell.img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 29, 21, 0) 30%, rgba(15, 29, 21, 0.82) 100%);
  z-index: 1;
}
.bento-cell.img > * { position: relative; z-index: 2; }
.bento-cell.green { background: var(--green-900); color: var(--bone); border: 0; }
.bento-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bento-num small { font-size: 0.45em; font-weight: 700; letter-spacing: 0.04em; }
.bento-label { font-weight: 700; margin-top: 10px; }
.bento-cell p.sub { font-size: 0.95rem; color: var(--ink-soft); margin-top: 6px; }
.bento-cell.green p.sub, .bento-cell.img p.sub { color: rgba(244, 239, 227, 0.75); }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.tall { min-height: 320px; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell.wide { grid-column: auto; }
  .bento-cell.tall { grid-row: auto; }
  .bento-cell { min-height: 200px; }
}

/* ---------- Products ---------- */
.products { background: var(--bone); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(19, 23, 17, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
}
.product-media {
  background: var(--bone-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 380px;
}
.product-media img { max-height: 360px; width: auto; transition: transform 0.6s var(--ease); }
.product-body { padding: clamp(22px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-body h3 { font-size: 1.3rem; text-transform: uppercase; }
.product-meta { color: var(--ink-soft); font-size: 0.95rem; }
.product-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
}
.product-price .per { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.product-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.product-actions .btn-buy { width: 100%; padding: 16px 18px; }
.product-actions-row { display: flex; gap: 10px; }
.product-actions-row .btn { flex: 1; min-width: 0; padding: 14px 12px; font-size: 12px; letter-spacing: 0.1em; }
.stock-note { font-size: 0.85rem; color: var(--orange-text); font-weight: 700; }
.pre-tag {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #17120A;
  padding: 3px 8px;
  vertical-align: middle;
}
.pre-note { font-size: 0.88rem; color: var(--ink-soft); }
.pre-note .pre-tag { margin-right: 6px; }
.co-prenote {
  margin-top: 22px;
  padding: 13px 15px;
  background: #FDF3E6;
  border: 1px solid rgba(232, 130, 30, 0.4);
  font-size: 0.9rem;
  color: var(--ink);
}
.co-prenote[hidden] { display: none; }

/* ---------- Trust (dark) ---------- */
.trust { background: var(--green-900); color: var(--bone); }
.trust-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 90px); align-items: center; }
.trust-grid .section-head { margin-bottom: 28px; }
.trust-grid .section-head p { color: rgba(244, 239, 227, 0.8); }
.trust-media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4); }
.trust-media img { width: 100%; height: clamp(380px, 56vh, 620px); object-fit: cover; }
.trust-media.trust-media-product { box-shadow: none; overflow: visible; display: flex; justify-content: center; }
.trust-media.trust-media-product img {
  width: auto;
  max-width: 100%;
  height: clamp(380px, 54vh, 600px);
  object-fit: contain;
  filter: drop-shadow(0 36px 54px rgba(0, 0, 0, 0.45));
}
.check-list { display: grid; gap: 18px; list-style: none; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-list .tick svg { width: 13px; height: 13px; }
.check-list strong { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; }
.check-list span.d { color: rgba(244, 239, 227, 0.72); font-size: 0.96rem; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Serve (horizontal snap) ---------- */
.serve { background: var(--bone); }
.serve-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--stone) transparent;
}
.serve-card {
  flex: 0 0 clamp(270px, 30vw, 380px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  color: var(--bone);
}
.serve-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.serve-card-product img { object-fit: contain; background: var(--bone-2); padding: 8% 14% 16%; }
.serve-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 29, 21, 0) 40%, rgba(15, 29, 21, 0.85) 100%);
}
.serve-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.serve-card h3 { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 6px; }
.serve-card p { font-size: 0.94rem; color: rgba(244, 239, 227, 0.82); }

/* ---------- Vitrion band ---------- */
.vitrion-band {
  background: #060606;
  color: #F3F3F0;
  padding: clamp(70px, 9vw, 130px) 0;
}
.vitrion-inner {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.vitrion-inner .rule { width: 1px; height: 100%; min-height: 90px; background: rgba(192, 192, 192, 0.35); }
.vitrion-logo { width: clamp(200px, 24vw, 320px); height: auto; }
.vitrion-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); text-transform: uppercase; margin-bottom: 12px; }
.vitrion-copy p { color: rgba(243, 243, 240, 0.75); max-width: 60ch; }
@media (max-width: 800px) {
  .vitrion-inner { grid-template-columns: 1fr; }
  .vitrion-inner .rule { width: 90px; height: 1px; min-height: 0; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bone); }
.faq-list { max-width: 840px; }
.faq-item { border-bottom: 1px solid rgba(19, 23, 17, 0.12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--orange-text);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-a { padding: 0 0 26px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- Footer ---------- */
.footer { background: var(--green-950); color: var(--bone); padding-top: clamp(60px, 8vw, 100px); }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}
.footer-logo { width: 64px; border-radius: 4px; margin-bottom: 18px; }
.footer-brand p { color: rgba(244, 239, 227, 0.7); font-size: 0.95rem; max-width: 40ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer-col a { color: rgba(244, 239, 227, 0.82); font-size: 0.97rem; }
.footer-col a:hover { color: var(--white); }
.footer-dist {
  max-width: 1280px;
  margin: clamp(46px, 6vw, 70px) auto 0;
  padding: 30px 24px;
  border-top: 1px solid rgba(244, 239, 227, 0.12);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-vitrion { width: 170px; height: auto; }
.footer-dist p { color: rgba(244, 239, 227, 0.7); font-size: 0.93rem; max-width: 60ch; }
.footer-legal {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(244, 239, 227, 0.5);
  font-size: 0.85rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--green-900);
  color: var(--bone);
  padding: calc(var(--nav-h) + clamp(50px, 8vw, 90px)) 0 clamp(50px, 7vw, 80px);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); text-transform: uppercase; margin-bottom: 14px; }
.page-hero p { color: rgba(244, 239, 227, 0.82); max-width: 62ch; font-size: 1.08rem; }

/* ---------- Cart & checkout ---------- */
.cart-wrap { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 60px); align-items: start; }
.cart-lines { display: grid; gap: 16px; }
.cart-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(19, 23, 17, 0.07);
  border-radius: var(--radius);
  padding: 16px;
}
.cart-line img { width: 92px; height: 110px; object-fit: contain; background: var(--bone-2); border-radius: 4px; padding: 8px; }
.cart-line h3 { font-size: 1.02rem; }
.cart-line .meta { color: var(--ink-soft); font-size: 0.9rem; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(19, 23, 17, 0.18);
  border-radius: 0;
  overflow: hidden;
  margin-top: 8px;
}
.qty button { width: 36px; height: 36px; background: none; border: 0; font-size: 1.1rem; }
.qty button:hover { background: var(--bone-2); }
.qty .q { min-width: 34px; text-align: center; font-weight: 700; }
.cart-line .line-right { text-align: right; display: grid; gap: 8px; justify-items: end; }
.line-price { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.1rem; }
.remove-line { background: none; border: 0; color: var(--ink-soft); font-size: 0.85rem; text-decoration: underline; }
.summary {
  background: var(--white);
  border: 1px solid rgba(19, 23, 17, 0.07);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.summary h3 { text-transform: uppercase; font-size: 1.1rem; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--ink-soft); }
.sum-row.total { border-top: 1px solid rgba(19, 23, 17, 0.12); margin-top: 10px; padding-top: 16px; color: var(--ink); font-weight: 800; font-family: 'Archivo', sans-serif; font-size: 1.2rem; }
.free-ship-note { font-size: 0.88rem; color: var(--orange-text); font-weight: 700; margin-top: 10px; }
.summary .btn { width: 100%; margin-top: 18px; }
.empty-cart { text-align: center; padding: 70px 20px; }
.empty-cart h2 { text-transform: uppercase; margin-bottom: 12px; }
.empty-cart p { color: var(--ink-soft); margin-bottom: 26px; }
@media (max-width: 900px) { .cart-wrap { grid-template-columns: 1fr; } .summary { position: static; } }

/* Forms */
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 0.95rem; }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 13px 15px;
  border: 1px solid rgba(19, 23, 17, 0.22);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.field .hint { font-size: 0.85rem; color: var(--ink-soft); }
.field .err { font-size: 0.88rem; color: #B3261E; font-weight: 700; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #B3261E; }
.pay-options { display: grid; gap: 12px; margin: 8px 0 18px; }
.pay-opt {
  border: 1px solid rgba(19, 23, 17, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.pay-opt:has(input:checked) { border-color: var(--orange); background: #FDF6EC; }
.pay-opt input { margin-top: 4px; accent-color: var(--orange); }
.pay-opt strong { display: block; font-family: 'Archivo', sans-serif; }
.pay-opt span.d { color: var(--ink-soft); font-size: 0.92rem; }
.pay-details {
  background: var(--bone-2);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.95rem;
  white-space: pre-line;
  margin-bottom: 18px;
  display: none;
}
.form-msg { padding: 14px 16px; border-radius: var(--radius); margin-bottom: 18px; display: none; font-weight: 700; }
.form-msg.ok { background: #E7F3EA; color: #1C5B2E; display: block; }
.form-msg.bad { background: #FBE9E7; color: #B3261E; display: block; }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 29, 21, 0.55);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.drawer-overlay.show { opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 160;
  width: min(410px, 94vw);
  background: var(--bone);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.35s var(--ease);
  box-shadow: -24px 0 60px rgba(15, 29, 21, 0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(19, 23, 17, 0.12);
}
.cd-head h3 { font-size: 1.05rem; text-transform: uppercase; }
.cd-close { background: none; border: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.cd-close svg { width: 19px; height: 19px; }
.cd-close:hover { color: var(--orange-text); }
.cd-items { flex: 1; overflow-y: auto; padding: 6px 20px; }
.cd-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(19, 23, 17, 0.09);
}
.cd-thumb {
  width: 72px; height: 84px;
  background: var(--bone-2);
  border: 1px solid rgba(19, 23, 17, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.cd-thumb img { max-width: 74%; max-height: 84%; object-fit: contain; }
.cd-item-mid { display: flex; flex-direction: column; gap: 6px; }
.cd-item-mid > b { font-size: 0.95rem; line-height: 1.25; }
.cd-item-price { font-size: 0.85rem; color: var(--ink-soft); }
.cd-item-mid .qty { margin-top: 2px; align-self: flex-start; background: var(--white); }
.cd-item-mid .qty button { width: 30px; height: 30px; }
.cd-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cd-item-right b { font-family: 'Archivo', sans-serif; font-size: 0.95rem; }
.cd-remove { background: none; border: 0; font-size: 0.8rem; color: var(--ink-soft); text-decoration: underline; padding: 0; }
.cd-remove:hover { color: var(--ink); }
.cd-empty { padding: 50px 20px; text-align: center; display: flex; flex-direction: column; gap: 18px; align-items: center; color: var(--ink-soft); }
.cd-empty[hidden] { display: none; }
.cd-foot { padding: 16px 20px 20px; border-top: 1px solid rgba(19, 23, 17, 0.12); background: var(--white); }
.cd-sub { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; margin-bottom: 4px; }
.cd-sub b { font-family: 'Archivo', sans-serif; font-size: 1.2rem; }
.cd-free { font-size: 0.84rem; color: var(--orange-text); font-weight: 700; margin-bottom: 12px; }
.cd-checkout { width: 100%; }
.cd-viewcart { display: block; text-align: center; margin-top: 12px; font-size: 0.88rem; text-decoration: underline; color: var(--ink-soft); }
.cd-viewcart:hover { color: var(--ink); }

/* ---------- Checkout (dedicated flow) ---------- */
.co-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  background: var(--white);
  border-bottom: 1px solid rgba(19, 23, 17, 0.1);
}
.co-brand { display: flex; align-items: center; gap: 12px; }
.co-brand img { width: 40px; border-radius: 4px; }
.co-brand span {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.co-brand em { font-style: normal; font-weight: 600; font-size: 10px; letter-spacing: 0.22em; color: var(--orange-text); }
.co-secure { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.co-secure svg { width: 17px; height: 17px; }

.co-wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px 90px; }
.co-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 44px);
}
.co-crumbs { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 26px; }
.co-crumbs a { text-decoration: underline; }
.co-crumbs b { color: var(--ink); }
.co-crumbs svg { width: 11px; height: 11px; }

.co-section { margin-bottom: 34px; }
.co-section h2 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 14px; }
.co-sub { font-size: 0.9rem; color: var(--ink-soft); margin: -6px 0 14px; }

/* Floating-label fields */
.ff { position: relative; margin-bottom: 14px; }
.ff input, .ff textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(19, 23, 17, 0.25);
  border-radius: 0;
  padding: 24px 14px 8px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.ff textarea { resize: vertical; min-height: 74px; }
.ff input:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.ff label {
  position: absolute;
  left: 15px;
  top: 16px;
  color: var(--ink-soft);
  font-size: 1rem;
  pointer-events: none;
  transition: top 0.15s var(--ease), font-size 0.15s var(--ease);
}
.ff input:focus + label, .ff input:not(:placeholder-shown) + label,
.ff textarea:focus + label, .ff textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.ff .ff-hint { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }
.ff .err { display: none; font-size: 0.85rem; color: #B3261E; font-weight: 700; margin-top: 6px; }
.ff.invalid .err { display: block; }
.ff.invalid input, .ff.invalid textarea { border-color: #B3261E; box-shadow: 0 0 0 1px #B3261E; }

/* Payment cards */
.pay-stack { border: 1px solid rgba(19, 23, 17, 0.25); }
.pay-card { border-bottom: 1px solid rgba(19, 23, 17, 0.15); }
.pay-card:last-child { border-bottom: 0; }
.pay-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s var(--ease);
}
.pay-card:has(input:checked) .pay-card-head { background: #FDF3E6; }
.pay-card-head input { accent-color: var(--orange-deep); width: 17px; height: 17px; flex: none; }
.pay-ico { width: 24px; height: 24px; color: var(--ink-soft); flex: none; }
.pay-card:has(input:checked) .pay-ico { color: var(--ink); }
.pay-title { font-weight: 700; flex: 1; }
.pay-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-900);
  color: var(--bone);
  padding: 4px 9px;
}
.pay-tag-quiet { background: var(--bone-2); color: var(--ink-soft); }
.pay-card-body {
  display: none;
  padding: 14px 16px 18px 54px;
  font-size: 0.93rem;
  color: var(--ink-soft);
  background: var(--white);
  border-top: 1px dashed rgba(19, 23, 17, 0.15);
}
.pay-card:has(input:checked) .pay-card-body { display: block; }
.pay-accounts {
  margin-top: 12px;
  padding: 13px 15px;
  background: var(--bone-2);
  color: var(--ink);
  font-size: 0.9rem;
  white-space: pre-line;
}
.pay-card-off { opacity: 0.5; }
.pay-card-off .pay-card-head { cursor: default; }

.co-place {
  width: 100%;
  justify-content: space-between;
  padding: 19px 24px;
  margin-top: 26px;
  font-size: 14px;
}
.co-place b { font-family: 'Archivo', sans-serif; letter-spacing: 0.02em; }
.co-fine { font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }
.co-fine a { text-decoration: underline; }

/* Summary column */
.co-aside {
  position: sticky;
  top: 24px;
  background: var(--white);
  border: 1px solid rgba(19, 23, 17, 0.1);
  padding: clamp(18px, 2.5vw, 28px);
}
.co-item { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 9px 0; }
.co-thumb {
  position: relative;
  width: 64px; height: 64px;
  background: var(--bone-2);
  border: 1px solid rgba(19, 23, 17, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.co-thumb img { max-width: 78%; max-height: 82%; object-fit: contain; }
.co-qty {
  position: absolute;
  top: -8px; right: -8px;
  min-width: 20px; height: 20px;
  border-radius: 20px;
  background: var(--green-900);
  color: var(--bone);
  font-size: 11.5px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.co-item-name { font-weight: 700; font-size: 0.93rem; line-height: 1.3; }
.co-item-name em { display: block; font-style: normal; font-weight: 400; font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.co-item-price { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.95rem; }
.co-totals { border-top: 1px solid rgba(19, 23, 17, 0.12); margin-top: 12px; padding-top: 8px; }
.co-free { font-size: 0.85rem; color: var(--orange-text); font-weight: 700; margin-top: 8px; }

/* Mobile order-summary bar */
.co-mobile-summary { display: none; }
@media (max-width: 900px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-aside { display: none; }
  .co-mobile-summary {
    display: block;
    margin: 0 -20px;
    background: var(--white);
    border-bottom: 1px solid rgba(19, 23, 17, 0.12);
  }
  .co-mobile-summary summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
  }
  .co-mobile-summary summary::-webkit-details-marker { display: none; }
  .co-ms-label { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-text); }
  .co-ms-label svg { width: 18px; height: 18px; }
  .co-mobile-summary[open] .co-ms-label { color: var(--ink); }
  .co-ms-body { padding: 4px 20px 16px; border-top: 1px solid rgba(19, 23, 17, 0.08); }
}

/* ---------- Prose (policies) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; text-transform: uppercase; margin: 36px 0 12px; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 12px; }
.prose ul { padding-left: 22px; }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- Launch additions (v11): batch line, proof strip, waiting list, gift, mobile hero ---------- */
.product-batch {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin: -4px 0 12px;
}
.ship-note {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--bone-2);
  border-left: 3px solid var(--orange);
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Proof strip on /shop */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 7vw, 80px);
  background: rgba(19, 23, 17, 0.12);
  border: 1px solid rgba(19, 23, 17, 0.12);
}
.proof-item {
  background: var(--white);
  padding: 22px 20px;
}
.proof-item b {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 8px;
}
.proof-item span { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 860px) { .proof-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proof-strip { grid-template-columns: 1fr; } }

/* Waiting-list (notify me) */
.notify { background: var(--green-900); color: var(--bone); padding: clamp(48px, 7vw, 84px) 0; }
.notify-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.notify-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase; color: var(--bone); margin-bottom: 12px; }
.notify-copy p { color: rgba(244, 239, 227, 0.82); max-width: 46ch; }
.notify-row { display: flex; gap: 10px; }
.notify-row input {
  flex: 1 1 auto;
  padding: 14px 16px;
  border: 1px solid rgba(244, 239, 227, 0.28);
  background: rgba(244, 239, 227, 0.06);
  color: var(--bone);
  font: inherit;
  border-radius: 0;
}
.notify-row input::placeholder { color: rgba(244, 239, 227, 0.5); }
.notify-row input:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: transparent; }
.notify-row .btn { flex: none; }
.notify-msg { margin-top: 12px; font-weight: 700; font-size: 0.95rem; }
.notify-msg.ok { color: #8FD3A6; }
.notify-msg.bad { color: #F0A9A0; }
@media (max-width: 720px) {
  .notify-card { grid-template-columns: 1fr; }
  .notify-row { flex-wrap: wrap; }
  .notify-row input { flex: 1 1 100%; }
  .notify-row .btn { flex: 1 1 100%; }
}

/* Gift block at checkout */
.co-gift { margin-top: 6px; }
.co-gift-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 0;
}
.co-gift-check input { width: 17px; height: 17px; accent-color: var(--orange); }
.co-gift .ff { margin-top: 12px; }

/* Mobile: keep the hero product from pushing the headline and CTA below the fold */
@media (max-width: 560px) {
  .hero { min-height: auto; }
  .hero-visual { min-height: 44vh; }
  .hero-bottle { width: clamp(200px, 52vw, 260px); }
}

/* Empty-cart drawer waiting-list form: light background, so override the dark green field styling */
.cd-notify { margin-top: 20px; text-align: left; }
.cd-notify-label { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 10px; }
.cd-notify .notify-row { flex-wrap: wrap; gap: 8px; }
.cd-notify .notify-row input {
  border: 1px solid rgba(19, 23, 17, 0.25);
  background: #fff;
  color: var(--ink);
  flex: 1 1 100%;
}
.cd-notify .notify-row input::placeholder { color: rgba(19, 23, 17, 0.4); }
.cd-notify .notify-row .btn { flex: 1 1 100%; }
.cd-notify .notify-msg.ok { color: var(--wa-green); }
.cd-notify .notify-msg.bad { color: #B3261E; }
