/* ============================================================
   ZIRO VILLAGE FACTORY — DIRECT FROM VILLAGE
   Palette: Mitti Brown #4A2E1E, Charcoal #1C1814, Jaggery Gold #E8941F,
            Vermillion #D94A2B, Khadi Cream #F7F0E3, Herb Green #5B7553
   Type: Fraunces (bold display) + Inter (body/UI)
   Signature: hand-stamped circular badge motif (village pantry labels)
   ============================================================ */

:root{
  --mitti:#4A2E1E;
  --mitti-light:#6B4730;
  --charcoal:#1C1814;
  --charcoal-2:#241F19;
  --jaggery:#E8941F;
  --jaggery-light:#F2B056;
  --terracotta:#D94A2B;
  --terracotta-light:#E8704F;
  --cream:#F7F0E3;
  --cream-dim:#EBE0CB;
  --paper:#FCF9F2;
  --herb:#5B7553;
  --ink:#241B14;
  --white:#FFFFFF;

  --font-display:'Fraunces', Georgia, serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:1320px;
  --pad-x:clamp(20px, 5vw, 64px);

  --ease:cubic-bezier(.22,1,.36,1);
  --dur-fast:0.3s;
  --dur-med:0.7s;
  --dur-slow:1.1s;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

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

body{
  margin:0;
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  margin:0;
  font-weight:600;
  letter-spacing:-0.01em;
  line-height:1.05;
}
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input, select{ font-family:var(--font-body); font-size:0.95rem; }

/* ============ GRAIN OVERLAY ============ */
.grain{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:0.04; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ CURSOR GLOW ============ */
.cursor-glow{
  position:fixed; top:0; left:0; width:480px; height:480px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(217,142,43,0.12), transparent 70%);
  pointer-events:none; z-index:1; transform:translate(-50%,-50%);
  opacity:0; transition:opacity 0.4s;
}
@media (hover:hover){ .cursor-glow.active{ opacity:1; } }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:14px 28px;
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  border-radius:3px;
  transition:all var(--dur-fast) var(--ease);
  white-space:nowrap;
}
.btn-lg{ padding:17px 36px; font-size:0.9rem; }
.btn-sm{ padding:9px 18px; font-size:0.72rem; }
.btn-block{ width:100%; }

.btn-solid{
  background:var(--jaggery);
  color:var(--charcoal);
}
.btn-solid:hover{
  background:var(--jaggery-light);
  transform:translateY(-2px);
  box-shadow:0 12px 26px -8px rgba(217,142,43,0.55);
}
.btn-terracotta{ background:var(--terracotta); color:var(--paper); }
.btn-terracotta:hover{ background:var(--terracotta-light); box-shadow:0 12px 26px -8px rgba(193,80,46,0.5); }

.btn-outline{
  border:1.5px solid currentColor;
  color:inherit;
  background:transparent;
}
.btn-outline:hover{
  background:rgba(217,142,43,0.12);
  border-color:var(--jaggery);
  transform:translateY(-2px);
}

.btn-ghost{ color:inherit; padding:14px 18px; opacity:0.85; }
.btn-ghost:hover{ opacity:1; }

/* ============ SHARED LAYOUT HELPERS ============ */
.eyebrow{
  font-family:var(--font-body);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--jaggery);
  margin:0 0 18px;
}
.eyebrow--light{ color:var(--jaggery-light); }
.eyebrow--terracotta{ color:var(--terracotta); }

.section-head{
  max-width:780px;
  margin:0 auto 64px;
  padding:0 var(--pad-x);
  text-align:center;
}
.section-head h2{
  font-size:clamp(2.1rem, 4.2vw, 3.2rem);
  color:var(--ink);
}
.section-head h2.reveal-mask--light{ color:var(--cream); }
.section-head--refreshers h2{ font-size:clamp(2.6rem, 6vw, 4.4rem); color:var(--cream); }

.reveal-mask{ overflow:visible; }
.reveal-mask--light{ color:var(--cream); }

.mask-line{ display:block; overflow:hidden; }
.mask-line-inner{
  display:block;
  transform:translateY(105%);
  opacity:0;
  transition:transform 0.55s var(--ease), opacity 0.55s var(--ease);
  will-change:transform, opacity;
}
.reveal-mask.mask-in .mask-line-inner{ transform:translateY(0); opacity:1; }

.reveal-up{
  opacity:0;
  transform:translateY(22px);
  transition:opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change:opacity, transform;
}
.reveal-up.is-visible{ opacity:1; transform:translateY(0); }

/* Safety net: if JS fails to load/run, never leave content permanently hidden */
.no-js .reveal-up{ opacity:1; transform:translateY(0); }
.no-js .mask-line-inner{ opacity:1; transform:translateY(0); }

/* ============ HEADER ============ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:transparent;
  transition:background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
  padding:22px 0;
}
.site-header.is-scrolled{
  background:rgba(28,24,20,0.94);
  backdrop-filter:blur(14px);
  box-shadow:0 1px 0 rgba(217,142,43,0.22);
  padding:13px 0;
}
.header-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--pad-x);
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand-mark{ display:flex; align-items:center; gap:12px; color:var(--cream); }
.brand-logo{ height:36px; width:auto; }
.brand-wordmark{ font-family:var(--font-display); font-size:1.05rem; font-weight:600; }
.brand-wordmark em{ font-style:italic; opacity:0.75; font-weight:400; }

.main-nav{ display:flex; gap:28px; font-size:0.87rem; font-weight:600; color:var(--cream-dim); }
.main-nav a{ position:relative; padding:6px 0; }
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--jaggery); transition:width var(--dur-fast) var(--ease);
}
.main-nav a:hover{ color:var(--cream); }
.main-nav a:hover::after{ width:100%; }

.header-ctas{ display:flex; align-items:center; gap:8px; color:var(--cream); }
.header-ctas .btn-ghost{ color:var(--cream-dim); }
.header-ctas .btn-solid{ padding:11px 22px; font-size:0.8rem; }

.nav-toggle{ display:none; width:38px; height:38px; flex-direction:column; justify-content:center; align-items:center; gap:5px; }
.nav-toggle span{ width:22px; height:1.5px; background:var(--cream); transition:all var(--dur-fast) var(--ease); }

.mobile-nav{
  display:none; flex-direction:column; gap:4px;
  background:rgba(28,24,20,0.98); backdrop-filter:blur(14px);
  padding:12px var(--pad-x) 24px;
}
.mobile-nav a{ color:var(--cream); padding:13px 4px; font-size:1rem; font-weight:600; border-bottom:1px solid rgba(217,142,43,0.18); }
.mobile-nav-ctas{ display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.mobile-nav-ctas .btn{ color:var(--cream); }
.mobile-nav-ctas .btn-solid{ color:var(--charcoal); }
.mobile-nav.is-open{ display:flex; }

/* ============ HERO ============ */
.hero{
  position:relative; height:100vh; min-height:560px;
  overflow:hidden; background:var(--charcoal);
}

/* ---- Slider mechanics ---- */
.hero-slides{ position:absolute; inset:0; z-index:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0;
  transition:opacity 1.4s ease;
  will-change:opacity, transform;
}
.hero-slide.active{
  opacity:1;
  animation:heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns{
  from{ transform:scale(1); }
  to{ transform:scale(1.07); }
}

/* Light contrast gradient — only at the bottom-left where text sits, not a full-frame scrim */
.hero-slides::after{
  content:'';
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(28,24,20,0.55) 75%, rgba(28,24,20,0.75) 100%),
    linear-gradient(90deg, rgba(28,24,20,0.45) 0%, transparent 55%);
}

/* ---- Content anchored bottom-left, no scrim — relies on dark slide imagery for contrast ---- */
.hero-content--corner{
  position:relative; z-index:2;
  height:100vh;
  display:flex; flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  text-align:left;
  max-width:760px;
  padding:110px var(--pad-x) 110px;
  gap:0;
}

.hero-logo-wrap--corner{
  margin-bottom:16px;
  justify-content:flex-start;
}

.hero-logo-glow{
  position:absolute; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle, rgba(232,172,92,0.5), transparent 70%);
  filter:blur(8px); opacity:0;
  animation:logoGlowIn 2.2s var(--ease) forwards 0.3s;
}
.hero-logo{
  position:relative; height:64px; width:auto;
  opacity:0; transform:scale(0.82) translateY(10px);
  filter:drop-shadow(0 2px 10px rgba(0,0,0,0.5));
  animation:logoRevealIn 1.4s var(--ease) forwards 0.2s;
}
@keyframes logoGlowIn{ 0%{opacity:0;transform:scale(0.7);} 50%{opacity:1;} 100%{opacity:0.65;transform:scale(1);} }
@keyframes logoRevealIn{ 0%{opacity:0;transform:scale(0.82) translateY(10px);} 60%{opacity:1;} 100%{opacity:1;transform:scale(1) translateY(0);} }

.hero-content .eyebrow{ font-size:0.78rem; margin-bottom:14px; text-shadow:0 2px 12px rgba(0,0,0,0.7); }

.hero-headline--corner{
  color:var(--cream);
  font-size:clamp(1.9rem, 4.6vw, 3.6rem);
  font-weight:700;
  margin-bottom:16px;
  text-shadow:0 4px 24px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.5);
}
.hero-headline .line{ display:block; overflow:hidden; opacity:0; }
.hero-headline.is-revealed .line{ animation:lineUp 1s var(--ease) forwards; opacity:1; }
.hero-headline.is-revealed .line[data-line="1"]{ animation-delay:0.5s; }
.hero-headline.is-revealed .line[data-line="2"]{ animation-delay:0.7s; }
@keyframes lineUp{ 0%{opacity:0;transform:translateY(100%);} 100%{opacity:1;transform:translateY(0);} }
.hero-headline .line-accent{ color:var(--jaggery-light); font-style:italic; font-weight:500; }

.hero-sub--corner{
  color:var(--cream-dim);
  font-size:0.98rem;
  line-height:1.55;
  max-width:520px;
  margin-bottom:24px;
  text-align:left;
  text-shadow:0 2px 14px rgba(0,0,0,0.6);
}

.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-start; margin-bottom:22px; }
.hero-ctas .btn{ color:var(--cream); }
.hero-ctas .btn-solid{ color:var(--charcoal); }

/* ---- Slide dot indicators ---- */
.hero-dots{
  position:absolute; z-index:3;
  right:var(--pad-x); bottom:32px;
  display:flex; align-items:center; gap:10px;
}
.hero-dot{
  width:9px; height:9px; border-radius:50%;
  background:rgba(247,240,227,0.35);
  border:1px solid rgba(247,240,227,0.5);
  padding:0; transition:all var(--dur-fast) var(--ease);
}
.hero-dot:hover{ background:rgba(247,240,227,0.6); }
.hero-dot.active{
  width:28px; border-radius:6px;
  background:var(--jaggery); border-color:var(--jaggery);
}

.hero-anchors{
  position:relative; z-index:2;
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:4px; max-width:100%;
}
.anchor-pill{
  display:flex; align-items:center; gap:8px;
  padding:10px 18px;
  background:rgba(28,24,20,0.45);
  border:1px solid rgba(232,172,92,0.4);
  border-radius:100px;
  backdrop-filter:blur(10px);
  color:var(--cream);
  font-size:0.82rem; font-weight:600;
  transition:all var(--dur-fast) var(--ease);
}
.anchor-pill:hover{ background:rgba(217,142,43,0.28); border-color:var(--jaggery); transform:translateY(-3px); }
.anchor-stamp{ font-size:1.1rem; }

.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:var(--cream-dim); font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase;
}
.scroll-cue-line{ width:1px; height:34px; background:linear-gradient(to bottom, var(--jaggery-light), transparent); position:relative; overflow:hidden; }
.scroll-cue-line::after{ content:''; position:absolute; top:0; left:0; width:100%; height:10px; background:var(--jaggery-light); animation:scrollDrip 2.2s ease-in-out infinite; }
@keyframes scrollDrip{ 0%{transform:translateY(-10px);opacity:0;} 30%{opacity:1;} 100%{transform:translateY(34px);opacity:0;} }

/* ============ STORY / WHAT IS ZIRO ============ */
.story{ background:var(--paper); padding:130px var(--pad-x); }
.story-inner{
  max-width:var(--max-width); margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.story-media{ position:relative; display:grid; grid-template-columns:1fr; }
.story-media-frame{ border-radius:5px; overflow:hidden; box-shadow:0 30px 60px -20px rgba(36,27,20,0.35); }
.story-media-frame img{ width:100%; height:430px; object-fit:cover; transition:transform 1.2s var(--ease); }
.story-media-frame:hover img{ transform:scale(1.06); }
.story-media-frame--small{ position:absolute; width:46%; bottom:-44px; right:-32px; border:6px solid var(--paper); }
.story-media-frame--small img{ height:210px; }

.story-stamp-badge{
  position:absolute; top:-32px; left:-32px;
  width:120px; height:120px;
  border-radius:50%;
  background:var(--jaggery);
  color:var(--charcoal);
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  font-family:var(--font-display);
  font-weight:700;
  font-size:0.92rem;
  line-height:1.25;
  letter-spacing:0.01em;
  transform:rotate(-12deg);
  box-shadow:0 18px 40px -12px rgba(217,142,43,0.6);
  border:3px dashed rgba(36,27,20,0.25);
}

.story-copy h2{ font-size:clamp(2rem, 3.6vw, 2.9rem); color:var(--ink); margin-bottom:24px; }
.story-lead{ font-size:1.05rem; line-height:1.75; color:var(--mitti); margin-bottom:28px; max-width:520px; }
.story-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:30px; }
.story-list li{ display:flex; align-items:flex-start; gap:14px; font-size:0.97rem; color:var(--ink); line-height:1.45; }
.story-list-mark{ width:8px; height:8px; border-radius:50%; background:var(--jaggery); flex-shrink:0; margin-top:7px; }
.story-tagline{ font-family:var(--font-display); font-style:italic; font-size:1.15rem; color:var(--mitti); }
.story-tagline span{ color:var(--terracotta); font-weight:600; }

/* ============ DRINKS WORLD ============ */
.drinks-world{
  background:var(--charcoal);
  background-image:radial-gradient(circle at 12% 0%, rgba(217,142,43,0.1), transparent 45%),
                    radial-gradient(circle at 88% 100%, rgba(193,80,46,0.08), transparent 45%);
  padding:130px 0;
}
.drink-grid{
  max-width:var(--max-width); margin:0 auto; padding:0 var(--pad-x);
  display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;
}
.drink-card{
  background:linear-gradient(165deg, rgba(247,240,227,0.05), rgba(247,240,227,0.015));
  border:1px solid rgba(232,172,92,0.16);
  border-radius:8px;
  padding:34px 30px 30px;
  transition:transform var(--dur-med) var(--ease), border-color var(--dur-fast);
  position:relative; overflow:hidden;
}
.drink-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(217,142,43,0.14), transparent 60%);
  opacity:0; transition:opacity var(--dur-fast);
}
.drink-card:hover{ transform:translateY(-8px); border-color:rgba(232,172,92,0.5); }
.drink-card:hover::before{ opacity:1; }
.drink-card--highlight{
  background:linear-gradient(165deg, rgba(193,80,46,0.14), rgba(217,142,43,0.05));
  border-color:rgba(193,80,46,0.4);
}
.drink-card-top{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.drink-icon{ font-size:1.7rem; }
.drink-card h3{ color:var(--cream); font-size:1.32rem; }
.drink-copy{ color:var(--cream-dim); font-size:0.92rem; margin-bottom:20px; line-height:1.5; }
.drink-items{ display:grid; grid-template-columns:1fr 1fr; gap:9px 14px; margin-bottom:8px; }
.drink-items li{ color:var(--cream); font-size:0.86rem; position:relative; padding-left:14px; }
.drink-items li::before{ content:''; position:absolute; left:0; top:0.55em; width:5px; height:1px; background:var(--jaggery-light); }
.drink-card-link{
  display:inline-block; margin-top:10px; font-size:0.82rem; font-weight:700;
  color:var(--terracotta-light);
}

/* ============ ROOTED REFRESHERS ============ */
.refreshers{
  background:linear-gradient(165deg, var(--terracotta) 0%, #A8452A 100%);
  padding:130px 0 100px;
  position:relative;
  overflow:hidden;
}
.refreshers::before{
  content:'';
  position:absolute; top:-10%; right:-10%; width:60%; height:60%;
  background:radial-gradient(circle, rgba(232,172,92,0.25), transparent 70%);
}
.refreshers .section-head--refreshers{ position:relative; z-index:1; }
.refreshers-sub{
  color:rgba(247,240,227,0.9);
  font-size:1.05rem;
  line-height:1.6;
  margin-top:18px;
}
.refresher-grid{
  position:relative; z-index:1;
  max-width:var(--max-width); margin:0 auto; padding:0 var(--pad-x);
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.refresher-card{
  background:var(--paper);
  border-radius:10px;
  overflow:hidden;
  transition:transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  box-shadow:0 20px 40px -16px rgba(0,0,0,0.25);
}
.refresher-card:hover{ transform:translateY(-8px) rotate(-0.4deg); box-shadow:0 32px 60px -16px rgba(0,0,0,0.35); }
.refresher-img{ height:260px; overflow:hidden; position:relative; }
.refresher-img img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease); }
.refresher-card:hover .refresher-img img{ transform:scale(1.08); }
.refresher-tags{ display:flex; gap:8px; padding:18px 20px 0; flex-wrap:wrap; }
.tag{
  font-size:0.68rem; font-weight:700; letter-spacing:0.04em; text-transform:uppercase;
  padding:5px 12px; border-radius:100px; color:var(--paper);
}
.tag--fizz{ background:var(--jaggery); color:var(--charcoal); }
.tag--cool{ background:var(--herb); }
.tag--tangy{ background:var(--terracotta); }
.tag--summer{ background:#C9412A; }
.tag--salty{ background:var(--mitti); }
.tag--spiced{ background:#8C3D22; }
.tag--traditional{ background:var(--mitti-light); }
.refresher-card h3{ font-size:1.3rem; color:var(--ink); padding:14px 20px 6px; }
.refresher-card p{ font-size:0.88rem; line-height:1.55; color:var(--mitti); padding:0 20px 22px; }
.refreshers-cta{ position:relative; z-index:1; text-align:center; margin-top:56px; }
.refreshers-cta .btn-terracotta{ background:var(--charcoal); }
.refreshers-cta .btn-terracotta:hover{ background:#352B22; }

/* ============ PANTRY / SHOP ============ */
.pantry{ background:var(--cream); padding:130px var(--pad-x) 0; }
.pantry-inner{
  max-width:var(--max-width); margin:0 auto;
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:80px; align-items:center;
  padding-bottom:110px;
}
.pantry-copy h2{ font-size:clamp(2rem, 3.6vw, 2.9rem); color:var(--ink); margin-bottom:22px; }
.pantry-lead{ font-size:1.02rem; line-height:1.7; color:var(--mitti); margin-bottom:26px; max-width:460px; }
.pantry-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.pantry-tags span{
  font-size:0.8rem; font-weight:600; padding:8px 16px;
  border:1.5px solid rgba(74,46,30,0.3); border-radius:100px; color:var(--mitti);
  background:rgba(255,255,255,0.5);
}
.pantry-copy .btn-outline{ color:var(--ink); border-color:var(--mitti); }
.pantry-copy .btn-outline:hover{ border-color:var(--jaggery); }

.pantry-shelf-grid{
  display:grid; grid-template-columns:1.1fr 1fr; grid-template-rows:1fr 1fr; gap:18px; height:520px;
}
.shelf-item{ border-radius:8px; overflow:hidden; box-shadow:0 24px 50px -18px rgba(74,46,30,0.3); }
.shelf-item img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease); }
.shelf-item:hover img{ transform:scale(1.07); }
.shelf-item--tall{ grid-row:1 / 3; }

/* ---- bestsellers (within pantry section) ---- */
.bestsellers{
  background:var(--charcoal-2);
  padding:90px var(--pad-x);
  border-radius:24px 24px 0 0;
}
.bestsellers-head{ max-width:var(--max-width); margin:0 auto 48px; }
.bestsellers-head .eyebrow{ color:var(--jaggery-light); }
.bestsellers-head h3{ color:var(--cream); font-size:clamp(1.8rem, 3.2vw, 2.4rem); }

.product-grid{
  max-width:var(--max-width); margin:0 auto;
  display:grid; grid-template-columns:repeat(4, 1fr); gap:22px;
}
.product-card{
  background:rgba(247,240,227,0.04);
  border:1px solid rgba(232,172,92,0.14);
  border-radius:8px;
  padding:18px;
  transition:transform var(--dur-fast) var(--ease), border-color var(--dur-fast);
}
.product-card:hover{ transform:translateY(-6px); border-color:rgba(232,172,92,0.4); }
.product-img{ position:relative; border-radius:6px; overflow:hidden; height:180px; margin-bottom:16px; }
.product-img img{ width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease); }
.product-card:hover .product-img img{ transform:scale(1.08); }
.product-badge{
  position:absolute; top:10px; left:10px;
  background:var(--jaggery); color:var(--charcoal);
  font-size:0.62rem; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
  padding:5px 10px; border-radius:100px;
}
.product-card h4{ color:var(--cream); font-size:1rem; font-weight:600; margin-bottom:6px; font-family:var(--font-body); }
.product-price{ color:var(--jaggery-light); font-weight:700; font-size:0.95rem; margin-bottom:14px; }
.product-card .btn-outline{ color:var(--cream); border-color:rgba(247,240,227,0.3); width:100%; }
.product-card .btn-outline:hover{ border-color:var(--jaggery); }

/* ============ FORMATS ============ */
.formats{ background:var(--mitti); padding:130px 0; }
.format-grid{
  max-width:var(--max-width); margin:0 auto; padding:0 var(--pad-x);
  display:grid; grid-template-columns:repeat(3, 1fr); gap:26px;
}
.format-card{
  background:var(--charcoal-2);
  border:1px solid rgba(232,172,92,0.18);
  border-radius:10px; overflow:hidden;
  transition:transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.format-card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -20px rgba(0,0,0,0.5); }
.format-img{ height:240px; overflow:hidden; }
.format-img img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease); filter:saturate(1.05) brightness(0.92); }
.format-card:hover .format-img img{ transform:scale(1.08); }
.format-body{ padding:30px 28px 34px; }
.format-label{ font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--jaggery-light); font-weight:700; }
.format-card h3{ color:var(--cream); font-size:1.5rem; margin:10px 0 10px; }
.format-for{ color:var(--jaggery-light); font-size:0.85rem; font-style:italic; margin-bottom:14px; font-family:var(--font-display); }
.format-desc{ color:var(--cream-dim); font-size:0.92rem; line-height:1.6; }

/* ============ FRANCHISE ============ */
.franchise{ background:var(--paper); padding:130px var(--pad-x); }
.franchise-inner{ max-width:var(--max-width); margin:0 auto; display:grid; grid-template-columns:1fr 0.9fr; gap:70px; }
.franchise-copy h2{ font-size:clamp(2.1rem, 3.8vw, 3rem); color:var(--ink); margin-bottom:20px; }
.franchise-lead{ font-size:1.05rem; line-height:1.7; color:var(--mitti); margin-bottom:30px; max-width:480px; }
.franchise-benefits{ display:flex; flex-direction:column; gap:15px; margin-bottom:36px; }
.franchise-benefits li{ display:flex; align-items:flex-start; gap:14px; font-size:0.97rem; color:var(--ink); line-height:1.5; }
.franchise-mark{ width:20px; height:20px; flex-shrink:0; border-radius:50%; background:rgba(217,142,43,0.2); position:relative; margin-top:1px; }
.franchise-mark::after{ content:''; position:absolute; top:50%; left:50%; width:7px; height:7px; background:var(--jaggery); border-radius:50%; transform:translate(-50%,-50%); }
.franchise-cta-row{ display:flex; gap:14px; flex-wrap:wrap; }
.franchise-copy .btn-outline{ color:var(--ink); border-color:var(--mitti); }

.franchise-form{
  background:var(--charcoal);
  border-radius:12px;
  padding:44px 38px;
  box-shadow:0 40px 80px -30px rgba(36,27,20,0.4);
  align-self:start;
}
.franchise-form-eyebrow{ font-size:0.72rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--jaggery-light); font-weight:700; margin-bottom:10px; }
.franchise-form h3{ font-family:var(--font-display); color:var(--cream); font-size:1.5rem; margin-bottom:26px; }
.franchise-form label{ display:flex; flex-direction:column; gap:8px; font-size:0.8rem; color:var(--cream-dim); font-weight:500; margin-bottom:18px; }
.franchise-form input, .franchise-form select{
  background:rgba(247,240,227,0.06); border:1px solid rgba(232,172,92,0.28); border-radius:5px;
  padding:12px 14px; color:var(--cream); outline:none; transition:border-color var(--dur-fast);
}
.franchise-form input::placeholder{ color:rgba(247,240,227,0.35); }
.franchise-form input:focus, .franchise-form select:focus{ border-color:var(--jaggery); }
.franchise-form select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23E8AC5C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
}
.franchise-form select option{ background:var(--charcoal); color:var(--cream); }
.franchise-form button{ margin-top:8px; color:var(--charcoal); }
.franchise-form-note{ text-align:center; font-size:0.78rem; color:rgba(247,240,227,0.45); margin-top:14px; }
.franchise-form-note.is-success{ color:var(--jaggery-light); }

/* ============ GIFTING ============ */
.gifting{
  position:relative; padding:160px var(--pad-x); overflow:hidden; min-height:560px;
  display:flex; align-items:center; justify-content:center;
}
.gifting-bg{ position:absolute; inset:0; z-index:0; }
.gifting-bg img{ width:100%; height:100%; object-fit:cover; }
.gifting-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(28,24,20,0.7), rgba(74,46,30,0.85)); }
.gifting-content{ position:relative; z-index:1; text-align:center; max-width:880px; }
.gifting-content h2{ font-size:clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom:46px; }
.gifting-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px; margin-bottom:46px; }
.gifting-item{
  display:flex; align-items:center; gap:10px; padding:14px 24px;
  border:1px solid rgba(232,172,92,0.35); border-radius:100px; color:var(--cream);
  font-size:0.92rem; background:rgba(247,240,227,0.06);
  transition:background var(--dur-fast), transform var(--dur-fast);
}
.gifting-item:hover{ background:rgba(217,142,43,0.2); transform:translateY(-3px); }
.gifting-mark{ width:6px; height:6px; border-radius:50%; background:var(--jaggery-light); }
.gifting-content .btn-outline{ color:var(--cream); }

/* ============ CTA BANNER ============ */
.cta-banner{
  background:var(--ink);
  background-image:radial-gradient(circle at 50% 0%, rgba(217,142,43,0.2), transparent 60%);
  padding:150px var(--pad-x); text-align:center; position:relative; overflow:hidden;
}
.cta-banner-inner{ position:relative; z-index:1; max-width:720px; margin:0 auto; }
.cta-ring{
  position:absolute; top:-120px; left:50%; width:340px; height:340px; margin-left:-170px;
  border:1px dashed rgba(232,172,92,0.3); border-radius:50%; z-index:0;
}
.cta-banner h2{ font-size:clamp(2.3rem, 5.4vw, 3.8rem); margin-bottom:42px; }
.cta-banner-buttons{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.cta-banner .btn{ color:var(--cream); }
.cta-banner .btn-solid{ color:var(--charcoal); }

/* ============ FOOTER ============ */
.site-footer{ background:var(--charcoal); padding:80px var(--pad-x) 0; }
.footer-top{
  max-width:var(--max-width); margin:0 auto;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1fr 0.8fr;
  gap:36px; padding-bottom:60px; border-bottom:1px solid rgba(232,172,92,0.16);
}
.footer-logo{ height:32px; margin-bottom:14px; }
.footer-brand p{ font-family:var(--font-display); color:var(--cream); font-size:1.1rem; }
.footer-brand p em{ font-style:italic; opacity:0.7; font-weight:400; }
.footer-tagline{
  font-size:0.85rem !important; color:var(--jaggery-light) !important;
  font-family:var(--font-body) !important; margin-top:8px; font-style:italic;
}
.footer-col h4{ color:var(--cream); font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:700; margin-bottom:18px; }
.footer-col{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ color:var(--cream-dim); font-size:0.9rem; transition:color var(--dur-fast); }
.footer-col a:hover{ color:var(--jaggery-light); }
.footer-address{ color:var(--cream-dim); font-size:0.9rem; }
.footer-social{ display:flex; flex-direction:column; gap:11px; }

.footer-bottom{
  max-width:var(--max-width); margin:0 auto; display:flex; justify-content:space-between; align-items:center;
  padding:26px 0; font-size:0.8rem; color:rgba(247,240,227,0.4); flex-wrap:wrap; gap:12px;
}
.footer-legal{ display:flex; gap:20px; }
.footer-legal a:hover{ color:var(--jaggery-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .main-nav, .header-ctas{ display:none; }
  .nav-toggle{ display:flex; }

  .hero{ height:auto; min-height:100vh; max-height:none; }
  .hero-content--corner{ height:auto; min-height:100vh; padding:130px var(--pad-x) 50px; }

  .story-inner, .pantry-inner, .franchise-inner{ grid-template-columns:1fr; gap:50px; }
  .story-media-frame--small{ display:none; }
  .story-stamp-badge{ width:100px; height:100px; font-size:0.8rem; top:-20px; left:-20px; }
  .pantry-shelf-grid{ height:420px; }

  .drink-grid, .refresher-grid{ grid-template-columns:repeat(2, 1fr); }
  .format-grid{ grid-template-columns:1fr; }
  .product-grid{ grid-template-columns:repeat(2, 1fr); }

  .footer-top{ grid-template-columns:1fr 1fr 1fr; row-gap:40px; }
}

@media (max-width: 720px){
  .hero{ height:auto; min-height:100vh; max-height:none; }
  .hero-content--corner{
    height:auto; min-height:100vh;
    padding:110px var(--pad-x) 40px;
  }
  .hero-logo{ height:48px; }
  .hero-headline--corner{ font-size:clamp(1.7rem, 7vw, 2.4rem); }
  .hero-anchors{ flex-direction:column; align-items:stretch; }
  .anchor-pill{ justify-content:center; }
  .hero-dots{ bottom:18px; right:50%; transform:translateX(50%); }

  .drink-grid, .refresher-grid{ grid-template-columns:1fr; }
  .drink-items{ grid-template-columns:1fr 1fr; }
  .product-grid{ grid-template-columns:1fr 1fr; }

  .footer-top{ grid-template-columns:1fr 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }

  .story-media-frame img{ height:300px; }
  .bestsellers{ border-radius:18px 18px 0 0; padding:70px var(--pad-x); }
}

@media (max-width: 480px){
  .hero-ctas, .cta-banner-buttons, .franchise-cta-row{ flex-direction:column; width:100%; }
  .hero-ctas .btn, .cta-banner-buttons .btn, .franchise-cta-row .btn{ width:100%; }
  .product-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr; }
}
