/* =================================================================
   NAMAK THEORY — vibrant build
   ================================================================= */
:root {
  --cream:       #FFF8F0;
  --cream-soft:  #FFFCF8;
  --ink:         #2A1509;
  --ink-soft:    #4A2C18;

  --lime:        #9FD647;
  --lime-deep:   #4E9A1E;
  --crimson:     #E0295F;
  --crimson-deep:#A61840;
  --gold:        #FFD23F;
  --gold-deep:   #E0A800;
  --orange:      #FF7A2F;
  --jamun:       #B84DAE;
  --jamun-deep:  #6E2A6A;

  --shadow-soft: 0 18px 50px rgba(42, 21, 9, 0.10);
  --shadow-pop:  0 26px 70px rgba(42, 21, 9, 0.18);
  --radius:      24px;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* fine grain — stops big colour fields reading flat */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#confetti-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(255, 248, 240, 0.72);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1.5px solid rgba(42, 21, 9, 0.07);
}
.nav-logo img { height: 52px; display: block; }
.nav-links { display: flex; gap: clamp(0.75rem, 2.1vw, 1.6rem); align-items: center; }
.nav-links a {
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: var(--ink); text-decoration: none; position: relative;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-insta)::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2.5px; border-radius: 2px;
  background: var(--crimson); transition: width 0.25s ease;
}
.nav-links a:not(.nav-insta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--crimson); }

.nav-insta {
  display: inline-flex; align-items: center; gap: 0.35em;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.78rem;
  color: var(--ink); text-decoration: none;
  background: rgba(42, 21, 9, 0.06); border: 1.5px solid rgba(42, 21, 9, 0.1);
  border-radius: 100px; padding: 0.32em 0.9em; white-space: nowrap;
  transition: all 0.25s ease;
}
.nav-insta:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #fff; border-color: transparent; transform: translateY(-1px);
}
.nav-insta svg { flex-shrink: 0; }

/* ===== LAYOUT ===== */
main { position: relative; z-index: 1; }
.section {
  min-height: 100vh; display: flex; align-items: center;
  padding: clamp(6rem, 12vh, 8rem) clamp(1.5rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.section--center { justify-content: center; text-align: center; }
.content { max-width: 640px; position: relative; z-index: 2; }
.section--center .content { max-width: 780px; }

/* --- hero: living gradient mesh --- */
#s-hero {
  background:
    radial-gradient(1000px 700px at 12% 18%, rgba(159,214,71,0.40), transparent 60%),
    radial-gradient(900px 650px at 88% 12%, rgba(255,210,63,0.44), transparent 62%),
    radial-gradient(1000px 800px at 76% 88%, rgba(224,41,95,0.28), transparent 62%),
    radial-gradient(800px 620px at 20% 92%, rgba(184,77,174,0.22), transparent 62%),
    var(--cream);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: meshdrift 26s ease-in-out infinite alternate;
}
@keyframes meshdrift {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0; }
  100% { background-position: 22% 14%, 74% 18%, 72% 78%, 26% 82%, 0 0; }
}

.section--theory {
  background:
    radial-gradient(700px 520px at 88% 22%, rgba(184,77,174,0.16), transparent 62%),
    var(--cream-soft);
}
.section--jeera {
  background:
    radial-gradient(760px 560px at 78% 14%, rgba(255,210,63,0.42), transparent 60%),
    linear-gradient(150deg, var(--lime) 0%, var(--lime-deep) 100%);
  color: var(--cream-soft);
}
.section--chatpata {
  background:
    radial-gradient(760px 560px at 22% 14%, rgba(255,122,47,0.44), transparent 60%),
    linear-gradient(150deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: var(--cream-soft);
}
.section--about {
  background:
    radial-gradient(760px 560px at 50% 0%, rgba(255,210,63,0.26), transparent 62%),
    var(--cream);
}
.section--franchise {
  background:
    radial-gradient(820px 600px at 50% 108%, rgba(224,41,95,0.16), transparent 62%),
    var(--cream-soft);
}
.section--blog { background: var(--cream); }
.section--testimonials {
  background:
    radial-gradient(700px 520px at 8% 50%, rgba(159,214,71,0.20), transparent 60%),
    radial-gradient(700px 520px at 92% 50%, rgba(224,41,95,0.14), transparent 60%),
    var(--cream-soft);
}

/* ===== TYPE ===== */
h1, h2, h3 { font-family: 'Baloo 2', sans-serif; font-weight: 800; letter-spacing: -0.015em; }
h1 {
  font-size: clamp(3rem, 8.5vw, 6rem); line-height: 0.94;
  margin-bottom: 0.5rem; color: var(--crimson);
  text-shadow: 0 4px 0 rgba(255,255,255,0.5);
}
h2 { font-size: clamp(2.1rem, 6vw, 3.5rem); line-height: 1.06; margin-bottom: 1.25rem; }
h3 { font-size: clamp(2rem, 5.5vw, 3.2rem); margin-bottom: 1rem; }

.tagline {
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  color: var(--ink); margin-bottom: 1rem;
}

.eyebrow {
  display: inline-block; padding: 0.45em 1.2em; border-radius: 100px;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.76rem;
  letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.1rem;
  background: rgba(42, 21, 9, 0.07); backdrop-filter: blur(6px);
}
.section--jeera .eyebrow, .section--chatpata .eyebrow { background: rgba(255,255,255,0.26); }

.body-text { font-size: clamp(1rem, 1.6vw, 1.15rem); margin-bottom: 1rem; opacity: 0.92; }

.theory-line {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: 'Pacifico', cursive; font-size: clamp(1.02rem, 2.2vw, 1.35rem);
  color: var(--ink); background: var(--gold);
  padding: 0.5em 1.2em; border-radius: 14px; margin-top: 1.25rem;
  transform: rotate(-2deg);
  box-shadow: 0 6px 0 var(--gold-deep), 0 14px 30px rgba(224,168,0,0.3);
  transition: transform 0.25s ease;
}
.theory-line:hover { transform: rotate(-2deg) translateY(-3px) scale(1.02); }

/* ===== HERO ===== */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; width: 100%; max-width: 1220px; margin: 0 auto;
}
.stat-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 0.5rem; }
.stat-chip {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.78rem;
  padding: 0.5em 1.15em; border-radius: 100px;
  background: rgba(255,255,255,0.66); border: 1.5px solid rgba(42,21,9,0.1);
  backdrop-filter: blur(8px); box-shadow: 0 3px 12px rgba(42,21,9,0.06);
}

.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1rem;
  background: var(--crimson); color: var(--cream-soft); text-decoration: none;
  padding: 0.95rem 2rem; border-radius: 14px; margin-top: 0.5rem;
  box-shadow: 0 6px 0 var(--crimson-deep), 0 16px 34px rgba(224,41,95,0.34);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--crimson-deep), 0 10px 22px rgba(224,41,95,0.3); }
.btn-cta:active { transform: translateY(6px); box-shadow: 0 0 0 var(--crimson-deep); }
.btn-cta--ghost {
  background: rgba(255,255,255,0.5); color: var(--crimson);
  border: 2px solid var(--crimson); backdrop-filter: blur(8px);
  box-shadow: none; padding: calc(0.95rem - 2px) calc(2rem - 2px);
}
.btn-cta--ghost:hover { background: var(--crimson); color: var(--cream-soft); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224,41,95,0.3); }

.hero-visual { perspective: 1400px; position: relative; }
/* warm glow pool behind the real bottles */
.hero-visual::before {
  content: ''; position: absolute; inset: 6% 4% 2%;
  background: radial-gradient(closest-side, rgba(255,210,63,0.62), rgba(224,41,95,0.20) 62%, transparent 78%);
  filter: blur(46px); z-index: 0; animation: glowpulse 7s ease-in-out infinite;
}
@keyframes glowpulse { 0%,100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.07); opacity: 1; } }
.hero-visual .product-photo {
  position: relative; z-index: 1; max-width: 520px;
  filter: drop-shadow(0 34px 42px rgba(42,21,9,0.30));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== SCROLL CUE ===== */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  opacity: 0.5; display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  z-index: 2;
}
.scroll-arrow { animation: bob 2.2s ease-in-out infinite; font-size: 1.1rem; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ===== PRODUCT SECTIONS ===== */
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; width: 100%; max-width: 1140px; margin: 0 auto;
  position: relative; z-index: 2;
}
.product-photo-wrap { perspective: 1400px; position: relative; }
.product-photo-wrap::before {
  content: ''; position: absolute; inset: 4% 8%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.5), transparent 72%);
  filter: blur(38px); z-index: 0;
}
.section--theory .product-photo-wrap::before {
  background: radial-gradient(closest-side, rgba(184,77,174,0.42), transparent 72%);
}
.product-photo {
  width: 100%; max-width: 380px; display: block; margin: 0 auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 26px 34px rgba(42,21,9,0.30));
  transition: transform 0.12s ease-out;
}

.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.tag {
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.78rem;
  padding: 0.45em 1em; border-radius: 100px;
  background: rgba(255,255,255,0.26); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.section--theory .tag, .section--about .tag {
  background: rgba(42,21,9,0.06); border-color: rgba(42,21,9,0.08);
}

.formula-tag {
  position: absolute; bottom: 3%; left: 50%; transform: translateX(-50%) rotate(-3deg);
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.78rem;
  background: var(--jamun); color: var(--cream-soft);
  padding: 0.45em 1.2em; border-radius: 100px; white-space: nowrap; z-index: 2;
  box-shadow: 0 6px 20px rgba(110,42,106,0.45);
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.75rem; }
.about-stat {
  background: rgba(255,255,255,0.7); border-radius: 18px; padding: 1.4rem 1.2rem;
  text-align: center; border: 1.5px solid rgba(42,21,9,0.07);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.about-stat .num {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.75rem;
  color: var(--crimson); display: block; line-height: 1.1;
}
.about-stat .label { font-size: 0.85rem; opacity: 0.72; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  background-size: 200% 100%; animation: goldshift 12s linear infinite;
  overflow: hidden; padding: 0.9rem 0; position: relative; z-index: 2;
  border-top: 3px solid rgba(42,21,9,0.1); border-bottom: 3px solid rgba(42,21,9,0.1);
}
@keyframes goldshift { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
.marquee-track { display: flex; width: max-content; animation: marqscroll 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  padding: 0 0.25rem; white-space: nowrap;
  display: flex; align-items: center; gap: 1.6rem;
}
.m-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; }
@keyframes marqscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== DARK / NUMBERS ===== */
.section--dark {
  background:
    radial-gradient(900px 620px at 16% 22%, rgba(159,214,71,0.20), transparent 62%),
    radial-gradient(900px 620px at 84% 78%, rgba(224,41,95,0.22), transparent 62%),
    linear-gradient(150deg, #34190B 0%, #180B04 100%);
  color: var(--cream-soft);
}
.section--dark .eyebrow { background: rgba(255,210,63,0.16); color: var(--gold); }
.section--dark h2 { color: var(--cream-soft); }
.numbers-wrap { width: 100%; max-width: 1120px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.75rem; }
.number-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 2.1rem 1rem; text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}
.number-card:hover {
  transform: translateY(-7px);
  background: rgba(255,210,63,0.1); border-color: rgba(255,210,63,0.45);
  box-shadow: 0 22px 50px rgba(0,0,0,0.4);
}
.number-card .big-num {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--gold), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1; margin-bottom: 0.6rem;
}
.number-card .num-label {
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.8rem;
  opacity: 0.66; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrap { width: 100%; max-width: 1120px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; text-align: left; }
.testimonial-card {
  background: rgba(255,255,255,0.78); border-radius: 24px; padding: 1.9rem;
  border: 1.5px solid rgba(42,21,9,0.07); position: relative; overflow: hidden;
  backdrop-filter: blur(10px); box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.testimonial-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-pop); }
.t-quote-mark {
  font-family: 'Pacifico', cursive; font-size: 5.5rem; color: var(--gold);
  line-height: 1; position: absolute; top: 0.3rem; left: 1.1rem; opacity: 0.3;
  pointer-events: none;
}
.t-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.08em; margin-bottom: 0.85rem; position: relative; }
.t-quote { font-size: 1rem; line-height: 1.65; opacity: 0.9; font-style: italic; margin-bottom: 1.25rem; position: relative; }
.t-author { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.98rem; }
.t-location { font-size: 0.8rem; opacity: 0.55; margin-top: 0.1rem; }

/* ===== PRESS STRIP ===== */
.press-strip {
  background: var(--cream-soft); text-align: center;
  padding: 2.4rem clamp(1.5rem, 6vw, 5rem);
  border-top: 1.5px solid rgba(42,21,9,0.07);
  border-bottom: 1.5px solid rgba(42,21,9,0.07);
  position: relative; z-index: 2;
}
.press-label {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.42; margin-bottom: 1.25rem;
}
.press-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }
.press-badge {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.82rem;
  padding: 0.62em 1.5em; border-radius: 100px;
  border: 2px solid rgba(42,21,9,0.1); background: var(--cream); color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.press-badge:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(42,21,9,0.1); }
.press-badge.gold  { border-color: var(--gold); background: rgba(255,210,63,0.16); }
.press-badge.green { border-color: var(--lime); background: rgba(159,214,71,0.16); }

/* ===== VOLUNTEER ===== */
.section--volunteer {
  background:
    radial-gradient(800px 600px at 18% 24%, rgba(255,210,63,0.14), transparent 62%),
    radial-gradient(800px 600px at 86% 80%, rgba(224,41,95,0.18), transparent 62%),
    linear-gradient(140deg, #34190B 0%, #150A03 100%);
}
.volunteer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center; width: 100%; max-width: 1220px; margin: 0 auto;
  position: relative; z-index: 2;
}
.volunteer-photo-frame {
  border-radius: 26px; overflow: hidden; aspect-ratio: 4/3;
  border: 1.5px solid rgba(255,210,63,0.26);
  background: rgba(255,255,255,0.05); position: relative;
  box-shadow: 0 26px 70px rgba(0,0,0,0.45);
}
.volunteer-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.volunteer-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 0.75rem;
}
.volunteer-ph .ph-emoji { font-size: 3.5rem; }
.volunteer-ph .ph-text {
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1rem;
  color: rgba(255,248,240,0.6); line-height: 1.4;
}
.volunteer-ph .ph-hint {
  font-family: 'Baloo 2', sans-serif; font-weight: 600; font-size: 0.75rem;
  color: rgba(255,248,240,0.3);
}
.vol-badge {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.78rem;
  padding: 0.45em 1.2em; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.section--volunteer .eyebrow { background: rgba(255,210,63,0.16); color: var(--gold); }
.section--volunteer h2 { color: var(--cream-soft); }
.section--volunteer .body-text { color: rgba(255,248,240,0.8); }
.vol-subtitle {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--gold); margin: 1.5rem 0 0.5rem;
}
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin: 0.5rem 0 1.5rem; }
.perk {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 0.85rem 0.95rem; font-size: 0.88rem;
  color: rgba(255,248,240,0.86); display: flex; align-items: flex-start; gap: 0.5rem;
  line-height: 1.4; transition: background 0.22s ease, transform 0.22s ease;
}
.perk:hover { background: rgba(255,210,63,0.1); transform: translateX(4px); }
.vol-form input, .vol-form select {
  background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.14);
  color: var(--cream-soft);
}
.vol-form input::placeholder { color: rgba(255,248,240,0.38); }
.vol-form select option { background: #2A1509; color: var(--cream-soft); }
.vol-form button[type="submit"] {
  background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--ink);
  box-shadow: 0 6px 0 var(--gold-deep), 0 16px 34px rgba(255,122,47,0.34);
}
.vol-form button[type="submit"]:hover { box-shadow: 0 4px 0 var(--gold-deep), 0 10px 22px rgba(255,122,47,0.3); }
.vol-form button[type="submit"]:active { box-shadow: 0 0 0 var(--gold-deep); }
.vol-form .form-success { background: var(--lime-deep); }

/* ===== BLOG ===== */
.blog-wrap { width: 100%; max-width: 1120px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; text-align: left; }
.blog-card {
  border-radius: 24px; overflow: hidden; text-decoration: none; color: var(--ink);
  border: 1.5px solid rgba(42,21,9,0.07); background: var(--cream-soft);
  display: flex; flex-direction: column; box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-pop); }
.blog-card-header { padding: 2rem 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card-header.lime    { background: linear-gradient(135deg, var(--lime), var(--lime-deep)); }
.blog-card-header.crimson { background: linear-gradient(135deg, var(--crimson), var(--crimson-deep)); }
.blog-card-header.ink     { background: linear-gradient(135deg, #4A2C18, var(--ink)); }
.blog-card-emoji { font-size: 2rem; }
.blog-card-tag {
  display: inline-block; font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(255,255,255,0.24); color: rgba(255,255,255,0.96);
  padding: 0.3em 0.9em; border-radius: 100px; width: fit-content;
}
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.05rem;
  line-height: 1.3; margin-bottom: 0.65rem; color: var(--ink);
}
.blog-card-excerpt { font-size: 0.9rem; opacity: 0.8; line-height: 1.55; flex: 1; }
.blog-card-read {
  display: inline-flex; align-items: center; gap: 0.35em; margin-top: 1rem;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.88rem; color: var(--crimson);
}
.blog-article-meta {
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.82rem;
  opacity: 0.55; margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  justify-content: center;
}
.blog-pill {
  display: inline-block; font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.35em 0.95em; border-radius: 100px;
  background: rgba(42,21,9,0.07); color: var(--ink);
}
.blog-pill.lime    { background: rgba(159,214,71,0.22); color: var(--lime-deep); }
.blog-pill.crimson { background: rgba(224,41,95,0.14); color: var(--crimson-deep); }
.blog-pill.ink     { background: rgba(42,21,9,0.08); color: var(--ink); }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }

/* ===== FRANCHISE / FORMS ===== */
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin: 1.5rem 0 2rem; text-align: left; }
.highlight {
  font-size: 0.94rem; padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.72); border-radius: 16px;
  border: 1.5px solid rgba(42,21,9,0.07); backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.investment {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: var(--crimson); margin-bottom: 2rem;
}

#franchise-form { text-align: left; border-top: 2px dashed rgba(42,21,9,0.16); padding-top: 2rem; margin-top: 1rem; }
.form-heading { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.35rem; margin-bottom: 1.25rem; }
.form-row { display: flex; gap: 1rem; }

input, textarea, select {
  width: 100%; background: rgba(255,255,255,0.8); border: 2px solid rgba(42,21,9,0.12);
  border-radius: 14px; padding: 0.9rem 1.1rem; font-family: 'Nunito', sans-serif;
  font-size: 1rem; margin-bottom: 1rem; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(224,41,95,0.12);
}
input::placeholder, textarea::placeholder { color: rgba(42,21,9,0.4); }
textarea { resize: vertical; min-height: 110px; }

button[type="submit"] {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1rem;
  background: var(--crimson); color: var(--cream-soft); border: none;
  border-radius: 14px; padding: 1rem 2.4rem; cursor: pointer;
  box-shadow: 0 6px 0 var(--crimson-deep), 0 16px 34px rgba(224,41,95,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
button[type="submit"]:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--crimson-deep); }
button[type="submit"]:active { transform: translateY(6px); box-shadow: 0 0 0 var(--crimson-deep); }

.form-error { color: var(--crimson-deep); font-weight: 700; margin-bottom: 0.75rem; }
.form-success {
  background: var(--lime-deep); color: var(--cream-soft);
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  padding: 1rem 1.5rem; border-radius: 14px; margin-top: 1rem;
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 2; text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(255,210,63,0.16), transparent 66%),
    var(--cream);
  border-top: 1.5px solid rgba(42,21,9,0.08); color: var(--ink);
}
footer img { height: 54px; margin-bottom: 0.85rem; }
footer p { margin-bottom: 0.35rem; font-size: 0.92rem; }
.footer-contact a { color: var(--crimson); text-decoration: none; font-weight: 700; }
.footer-copy { font-size: 0.8rem; opacity: 0.6; margin-top: 0.4rem; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem;
  margin: 1.25rem 0; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.88rem;
}
.footer-links a { color: var(--ink); text-decoration: none; opacity: 0.72; transition: all 0.2s ease; }
.footer-links a:hover { color: var(--crimson); opacity: 1; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.footer-social a {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.84rem;
  color: var(--ink); text-decoration: none; padding: 0.55em 1.35em; border-radius: 100px;
  background: rgba(42,21,9,0.05); border: 1.5px solid rgba(42,21,9,0.1);
  display: inline-flex; align-items: center; gap: 0.4em; transition: all 0.25s ease;
}
.footer-social .fs-ig:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #fff; border-color: transparent; transform: translateY(-2px);
}
.footer-social .fs-web:hover { background: var(--crimson); color: #fff; border-color: var(--crimson); transform: translateY(-2px); }

/* ===== FOCUS ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--crimson); outline-offset: 2px;
}

/* =================================================================
   ARTICLE / SEO PAGES
   ================================================================= */
.breadcrumb {
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.85rem;
  padding: 6rem clamp(1.5rem,6vw,5rem) 0; max-width: 860px; margin: 0 auto;
  opacity: 0.55; position: relative; z-index: 2;
}
.breadcrumb a { color: var(--crimson); text-decoration: none; }

.page-hero {
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem) 2.5rem;
  background:
    radial-gradient(900px 460px at 50% -10%, rgba(255,210,63,0.34), transparent 66%),
    radial-gradient(700px 400px at 12% 10%, rgba(159,214,71,0.22), transparent 62%),
    var(--cream);
  text-align: center; position: relative; z-index: 2;
}
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.page-hero .lede { max-width: 720px; margin: 0 auto; font-size: clamp(1.05rem, 2vw, 1.25rem); opacity: 0.85; }

.page-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 1rem clamp(1.5rem, 6vw, 5rem) 4rem;
  position: relative; z-index: 2;
}
.page-wrap h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-top: 2.75rem; }
.page-wrap h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-top: 1.75rem; margin-bottom: 0.75rem; font-weight: 800; }
.page-wrap p { margin-bottom: 1.1rem; font-size: 1.05rem; opacity: 0.92; }
.page-wrap ul, .page-wrap ol { margin: 0 0 1.1rem 1.5rem; }
.page-wrap li { margin-bottom: 0.5rem; opacity: 0.92; }
.page-wrap a.inline-link { color: var(--crimson); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.page-wrap figure { margin: 2.5rem 0; text-align: center; position: relative; }
.page-wrap figure img {
  max-width: 300px; width: 100%;
  filter: drop-shadow(0 22px 30px rgba(42,21,9,0.24));
}
.page-wrap figcaption { font-size: 0.85rem; opacity: 0.6; margin-top: 0.6rem; font-family: 'Baloo 2', sans-serif; }

.cta-banner {
  background:
    radial-gradient(600px 300px at 20% 10%, rgba(255,122,47,0.4), transparent 60%),
    linear-gradient(150deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  color: var(--cream-soft); border-radius: 26px; padding: 2.75rem 2rem;
  text-align: center; margin: 2.5rem 0;
  box-shadow: 0 24px 60px rgba(224,41,95,0.28);
}
.cta-banner h3 { color: var(--cream-soft); margin-top: 0; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-banner p { opacity: 0.9; }
.cta-banner .btn-cta {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 6px 0 var(--gold-deep), 0 14px 30px rgba(0,0,0,0.2);
}
.cta-banner .btn-cta:hover { box-shadow: 0 4px 0 var(--gold-deep); }
.cta-banner .btn-cta:active { box-shadow: 0 0 0 var(--gold-deep); }

/* FAQ */
.faq-item { border-top: 1.5px solid rgba(42,21,9,0.09); padding: 1.35rem 0; }
.faq-item:last-child { border-bottom: 1.5px solid rgba(42,21,9,0.09); }
.faq-q { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
.faq-a { opacity: 0.88; font-size: 1rem; }
.faq-a a.inline-link { color: var(--crimson); font-weight: 700; }

/* flavour cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.flavor-card {
  background: var(--cream-soft); border-radius: 22px; padding: 1.75rem 1.5rem;
  text-align: center; border: 1.5px solid rgba(42,21,9,0.07);
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.flavor-card::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,210,63,0.4), transparent 70%);
  filter: blur(24px); pointer-events: none;
}
.flavor-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-pop); }
.flavor-card img {
  width: 100%; max-width: 140px; margin: 0 auto 1rem; display: block; position: relative;
  filter: drop-shadow(0 16px 20px rgba(42,21,9,0.24));
}
.flavor-card .flavor-tag {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.5;
  margin-bottom: 0.4rem; display: block; position: relative;
}
.flavor-card h3 { font-size: 1.3rem; margin: 0 0 0.4rem; position: relative; }
.flavor-card p { font-size: 0.92rem; margin-bottom: 0.75rem; position: relative; }
.flavor-card a.inline-link { font-size: 0.9rem; position: relative; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 2rem 0; }
.step {
  background: var(--cream-soft); border-radius: 18px; padding: 1.4rem 1.25rem;
  border: 1.5px solid rgba(42,21,9,0.07); box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.step:hover { transform: translateY(-5px); }
.step .step-num {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.6rem;
  background: linear-gradient(180deg, var(--crimson), var(--crimson-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.5rem;
}
.step h4 { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; margin-bottom: 0; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin: 2rem 0; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px;
  box-shadow: var(--shadow-soft); transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-pop); }
.gallery-empty {
  text-align: center; padding: 4rem 2rem; background: var(--cream-soft);
  border-radius: 24px; border: 3px dashed rgba(42,21,9,0.16);
}
.gallery-empty .big-emoji { font-size: 3rem; display: block; margin-bottom: 1rem; }
.gallery-empty p { opacity: 0.7; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .scroll-arrow, .marquee-track, #s-hero, .hero-visual::before,
  .hero-visual .product-photo, .marquee-strip { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .volunteer-photo-frame { aspect-ratio: 16/9; }
  .blog-grid, .blog-listing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .product-grid, .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .product-photo-wrap { order: -1; margin-bottom: 1rem; }
  .hero-visual .product-photo { max-width: 250px; }
  .hero-visual::before { inset: 10% 12% 4%; }
  .stat-row, .tags { justify-content: center; }
  .about-grid, .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 5rem 1.5rem; }
  .highlights { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .nav-links { gap: 0.7rem; }
  .nav-links a { font-size: 0.78rem; }
  .nav-insta { font-size: 0.7rem; padding: 0.3em 0.7em; }
  #confetti-canvas { opacity: 0.6; }
  .steps { grid-template-columns: 1fr; }
  .breadcrumb { padding-top: 5.5rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .number-card { padding: 1.5rem 0.75rem; }
}
@media (max-width: 600px) {
  .press-badges { gap: 0.6rem; }
  .press-badge { font-size: 0.74rem; padding: 0.55em 1.15em; }
}

.perk-icon { flex-shrink: 0; font-size: 1rem; line-height: 1.4; }

/* =================================================================
   REAL / PRODUCTION BAND — blended full-bleed photo section
   ================================================================= */
.section--real {
  min-height: auto; padding: 0; display: block;
  position: relative; overflow: hidden; z-index: 2;
}
.real-media { position: relative; min-height: 78vh; display: flex; align-items: flex-end; }
.real-media::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--real-img);
  background-size: cover; background-position: center;
  transform: scale(1.04); filter: saturate(1.05);
}
/* brand-tinted scrim so text pops + photo feels designed, not pasted */
.real-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,21,9,0.15) 0%, rgba(42,21,9,0.20) 42%, rgba(42,21,9,0.92) 100%),
    linear-gradient(90deg, rgba(224,41,95,0.30) 0%, transparent 45%),
    linear-gradient(270deg, rgba(78,154,30,0.26) 0%, transparent 45%);
}
.real-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1120px; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  color: var(--cream-soft);
}
.real-inner .eyebrow { background: rgba(255,210,63,0.2); color: var(--gold); }
.real-inner h2 { color: var(--cream-soft); max-width: 640px; text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.real-inner p { color: rgba(255,248,240,0.9); max-width: 560px; font-size: clamp(1rem,1.7vw,1.18rem); }
.real-tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.real-tag {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.78rem;
  padding: 0.5em 1.15em; border-radius: 100px;
  background: rgba(255,255,255,0.14); border: 1.5px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(8px); color: var(--cream-soft);
}
@media (max-width: 768px) {
  .real-media { min-height: 66vh; }
}

/* =================================================================
   HOME GALLERY STRIP — real photos, masonry-ish framed
   ================================================================= */
.section--gallery { background: var(--cream-soft); }
.home-gallery-wrap { width: 100%; max-width: 1180px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.home-gallery {
  display: grid; gap: 1rem; margin-top: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
}
.hg-item {
  overflow: hidden; border-radius: 20px; position: relative;
  box-shadow: var(--shadow-soft); background: #ddd;
}
.hg-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.hg-item:hover img { transform: scale(1.08); }
.hg-item::after {
  content: attr(data-cap); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 0.8rem; text-align: left;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.82rem;
  color: #fff; opacity: 0; transform: translateY(8px);
  background: linear-gradient(180deg, transparent, rgba(42,21,9,0.85));
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hg-item:hover::after { opacity: 1; transform: translateY(0); }
.hg-tall  { grid-row: span 2; }
.hg-wide  { grid-column: span 2; }
@media (max-width: 900px) {
  .home-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .hg-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .home-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
}

/* =================================================================
   HERO BANNER VARIANT (wide 3-bottle + spices crop)
   ================================================================= */
.hero-visual--banner { perspective: none; }
.hero-visual--banner::before { display: none; }         /* no round glow behind a wide banner */
.hero-visual--banner picture { display: block; }
.hero-visual--banner .product-photo {
  max-width: 620px; width: 100%; height: auto;
  filter: drop-shadow(0 24px 40px rgba(42,21,9,0.22));
  animation: none;                                        /* banner shouldn't bob */
}
/* let the wide banner spill slightly toward the screen edge on big screens */
@media (min-width: 1100px) {
  .hero-grid:has(.hero-visual--banner) { grid-template-columns: 1fr 1.15fr; }
  .hero-visual--banner .product-photo { max-width: 720px; }
}
@media (max-width: 900px) {
  .hero-visual--banner .product-photo { max-width: 460px; }
}

/* =================================================================
   HYBRID HERO — full banner on desktop, split text+bottles on mobile
   ================================================================= */
.hero-banner-full { display: none; }   /* mobile/tablet: hidden, split layout shows */

@media (min-width: 1024px) {
  /* keep the split grid crawlable + accessible, but visually hidden (banner shows the title) */
  #s-hero .hero-grid {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .hero-banner-full {
    display: block; position: relative; z-index: 2;
    width: 100%; max-width: 1360px; margin: 0 auto; line-height: 0;
  }
  .hero-banner-full picture { display: block; }
  .hero-banner-full img {
    width: 100%; height: auto; display: block;
    border-radius: 28px;
    box-shadow: 0 34px 90px rgba(42,21,9,0.20);
  }
  /* transparent clickable zone over the baked "EXPLORE FLAVOURS" button */
  .hero-banner-btn {
    position: absolute; z-index: 3;
    left: 3.2%; top: 72.5%; width: 23%; height: 11%;
    border-radius: 100px; cursor: pointer;
  }
  .hero-banner-btn:focus-visible { outline: 3px solid var(--crimson); outline-offset: 4px; }
  #s-hero .scroll-cue { z-index: 4; }
}

/* =================================================================
   HAMBURGER / MOBILE NAV
   ================================================================= */
.nav-toggle {
  display: none;                         /* desktop: hidden */
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 40px; padding: 8px; margin-left: auto;
  background: transparent; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; border-radius: 3px;
  background: var(--ink); transition: transform 0.3s ease, opacity 0.2s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    padding: 0.25rem clamp(1.5rem, 6vw, 3rem) 1.1rem;
    border-bottom: 2px solid rgba(42,21,9,0.08);
    box-shadow: 0 24px 48px rgba(42,21,9,0.14);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    max-height: calc(100dvh - 66px); overflow-y: auto;
  }
  nav.nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a {
    padding: 0.95rem 0.35rem; font-size: 1.02rem;
    border-bottom: 1px solid rgba(42,21,9,0.07);
  }
  .nav-links a:not(.nav-insta)::after { display: none; }   /* no underline slide in stacked menu */
  .nav-insta {
    align-self: flex-start; margin-top: 0.9rem;
    font-size: 0.86rem; padding: 0.5em 1.1em;
  }
}
