/* ==========================================================================
   BeeZesty! Lemonade Co. — bold flavors, good vibes
   Palette pulled from the brand flyer: bee yellow, splash blue, teal, ink.
   ========================================================================== */

:root {
  --yellow: #FFC913;
  --yellow-soft: #FFE68A;
  --yellow-deep: #F5A700;
  --blue: #29A8E0;
  --blue-soft: #BEE6F5;
  --blue-deep: #16669A; /* AA on cream for body-size text */
  --teal: #0E6373; /* AA on cream */
  --pink: #FF5D8F;
  --orange: #F2622E;
  --ink: #101010;
  --cream: #FFFDF4;
  --cream-warm: #FFF6D6;
  --white: #FFFFFF;

  --font-display: "Lilita One", "Arial Black", sans-serif;
  --font-script: "Yellowtail", cursive;
  --font-body: "Nunito", "Segoe UI", sans-serif;

  --border: 3px solid var(--ink);
  --shadow-pop: 6px 6px 0 var(--ink);
  --shadow-pop-sm: 4px 4px 0 var(--ink);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --nav-h: 78px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 14px); }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
a { color: inherit; }
ul, ol { padding: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); text-wrap: balance; }
h3 { font-size: 1.35rem; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.book :focus-visible { outline-color: var(--yellow); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- shared bits ---------- */
.script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
}
.script--blue { color: var(--blue-deep); }
.script--ink { color: var(--ink); }
.script--yellow { color: var(--yellow); }

/* highlighter underline that survives line wrapping on small screens */
.hl-yellow, .hl-blue {
  padding: 0 0.12em;
  background-size: 100% 0.42em;
  background-position: 0 86%;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hl-yellow { background-image: linear-gradient(var(--yellow), var(--yellow)); }
.hl-blue { background-image: linear-gradient(var(--blue-soft), var(--blue-soft)); }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.8em 1.7em;
  border-radius: var(--radius-pill);
  border: var(--border);
  box-shadow: var(--shadow-pop-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: var(--yellow-deep); }
.btn--ink { background: var(--ink); color: var(--yellow); box-shadow: 4px 4px 0 var(--yellow-deep); }
.btn--ink:hover { box-shadow: 2px 2px 0 var(--yellow-deep); }
.btn--ink:active { box-shadow: 0 0 0 var(--yellow-deep); }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn--ghost:hover { background: var(--yellow-soft); }

.chip {
  display: inline-block;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.35em 1em;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--white);
}
.chip--yellow { background: var(--yellow); }
.chip--blue { background: var(--blue-soft); }
.chip--pink { background: var(--pink); color: var(--ink); }

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.15;
  width: 108px;
  height: 108px;
  padding: 10px;
  border-radius: 50%;
  border: var(--border);
  box-shadow: var(--shadow-pop-sm);
  rotate: -8deg;
}
.sticker--yellow { background: var(--yellow); color: var(--ink); }
.sticker--blue { background: var(--blue); color: var(--ink); rotate: 7deg; }

/* ---------- sections ---------- */
.section {
  position: relative;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 64px);
}
.section__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.section__head h2 { margin: 0.15em 0 0.4em; }
.section__sub { font-size: 1.1rem; color: #3d3a30; }

.section--yellow {
  background: var(--yellow);
  background-image: radial-gradient(rgba(16,16,16,0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.section--tealdots {
  background: var(--cream);
  background-image: radial-gradient(rgba(23,135,156,0.12) 2px, transparent 2px);
  background-size: 26px 26px;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(28px, 4vw, 60px);
  pointer-events: none;
}
.wave--top { top: -1px; }
.wave--bottom { bottom: -1px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}
.nav__logo-img {
  height: 58px;
  width: auto;
  transition: transform .25s ease;
}
.nav__logo:hover .nav__logo-img { transform: scale(1.06) rotate(-2deg); }
/* text fallbacks shown only while the official logo file is absent */
.nav__fallback { display: none; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.nav__logo.no-img .nav__fallback { display: block; }
.footer__fallback { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.nav__links { display: flex; gap: clamp(16px, 2.5vw, 30px); }
.nav__links-book { display: none; }
.nav__links a {
  font-weight: 800;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color .15s;
}
.nav__links a:hover { border-bottom-color: var(--yellow); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--cream-warm), transparent 60%),
    var(--cream);
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__logo {
  width: clamp(230px, 24vw, 330px);
  height: auto;
  margin: 0 0 14px -6px;
  filter: drop-shadow(3px 4px 0 rgba(16, 16, 16, 0.12));
}
.hero__kicker { margin-bottom: 8px; }
.hero__title {
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--blue { color: var(--blue); -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; }
.squiggle {
  position: relative;
  display: inline-block;
}
.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  height: 0.22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'%3E%3Cpath d='M2 9 Q 12 2 24 8 T 46 8 T 68 8 T 90 8 T 118 7' fill='none' stroke='%23F5A700' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero__sub {
  max-width: 46ch;
  font-size: 1.15rem;
  margin: 20px 0 26px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 26px;
  list-style: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: #3d3a30;
}
.hero__art { position: relative; }
.hero__frame {
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  rotate: 1.5deg;
  background: var(--blue-soft);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__sticker-1 { top: -26px; right: -14px; }
.hero__sticker-2 { bottom: -24px; left: -16px; }
.hero__bee {
  position: absolute;
  width: 120px;
  top: -58px;
  left: -30px;
}
.hero__bee-body { animation: bee-bob 2.6s ease-in-out infinite; transform-origin: 78px 22px; }
@keyframes bee-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}
.hero__lemons { position: absolute; inset: 0; pointer-events: none; }
.float-lemon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.85;
  animation: floaty 7s ease-in-out infinite;
}
.float-lemon--1 { top: 14%; left: 4%; animation-delay: 0s; }
.float-lemon--2 { bottom: 18%; left: 46%; animation-delay: 2.2s; font-size: 1.5rem; }
.float-lemon--3 { top: 10%; right: 6%; animation-delay: 1.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-16px) rotate(10deg); }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--yellow);
  rotate: -1.2deg;
  scale: 1.02;
  padding: 14px 0;
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  /* trailing pad equals the gap so translateX(-50%) lands exactly one copy-period in */
  padding-right: 28px;
  width: max-content;
}
/* animate only after JS has cloned the content (.is-cloned), else the loop is broken */
.marquee__track.is-cloned { animation: marquee-scroll 22s linear infinite; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; color: var(--blue); font-size: 1.1rem; }
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- flavors ---------- */
.flavors__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.flavor-card {
  --card-accent: var(--yellow);
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  padding: 14px 14px 22px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flavor-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 8px 10px 0 var(--card-accent);
}
.flavor-card__img {
  border-radius: var(--radius-md);
  border: 2.5px solid var(--ink);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--cream-warm);
}
.flavor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.flavor-card:hover .flavor-card__img img { transform: scale(1.05); }
.flavor-card h3 { margin: 16px 0 6px; }
.flavor-card p { font-size: 0.98rem; padding: 0 8px; color: #3d3a30; }

.flavors__extra { text-align: center; margin-top: clamp(36px, 5vw, 52px); }
.flavors__toppings {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}
.flavors__toppings .script { font-size: 1.6rem; margin-right: 6px; }
.flavors__note { margin-top: 14px; font-weight: 600; color: #3d3a30; }

/* ---------- events ---------- */
.events__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.event-card {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.event-card:hover { transform: translateY(-6px); }
.event-card__img { aspect-ratio: 4 / 3; border-bottom: var(--border); }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 22px 24px 26px; }
.event-card__body h3 { margin-bottom: 8px; }
.event-card__body p { font-size: 0.98rem; margin-bottom: 12px; }
.event-card__body ul { list-style: none; }
.event-card__body li {
  font-weight: 700;
  font-size: 0.92rem;
  padding-left: 26px;
  position: relative;
  margin-bottom: 6px;
}
.event-card__body li::before {
  content: "\1F34B";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.steps {
  max-width: 1000px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  list-style: none;
  counter-reset: step;
}
.steps__item {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  border: var(--border);
  padding: 26px 24px 24px;
  position: relative;
}
.steps__num {
  position: absolute;
  top: -18px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  border: var(--border);
  border-radius: 50%;
}
.steps__item h3 { color: var(--yellow); margin: 10px 0 6px; }
.steps__item p { font-size: 0.95rem; color: #e8e4d8; }

.events__cta { text-align: center; margin-top: clamp(36px, 5vw, 52px); }

/* ---------- about ---------- */
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.about__art { position: relative; }
.about__frame {
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  rotate: -2deg;
  background: var(--cream-warm);
}
.about__sticker { bottom: -26px; right: -14px; rotate: 8deg; }
.about__copy h2 { margin: 0.15em 0 0.5em; }
.about__copy > p { margin-bottom: 16px; max-width: 56ch; }
.about__quote {
  margin: 22px 0;
  padding: 6px 0 6px 22px;
  border-left: 5px solid var(--yellow);
}
.about__quote .script { font-size: 1.7rem; }
.about__quote cite { font-style: normal; font-weight: 800; font-size: 0.92rem; color: #3d3a30; }
.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
}

/* ---------- instagram ---------- */
.follow__handle {
  font-weight: 800;
  color: var(--teal);
  text-decoration-thickness: 3px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}
.ig-marquee {
  overflow: hidden;
  margin: 0 calc(-1 * clamp(20px, 5vw, 64px));
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.ig-marquee__track {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  width: max-content;
}
.ig-marquee__track.is-cloned { animation: marquee-scroll 45s linear infinite; }
.ig-marquee:hover .ig-marquee__track,
.ig-marquee:focus-within .ig-marquee__track { animation-play-state: paused; }
.ig-tile {
  display: block;
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 260px);
  aspect-ratio: 1;
  border: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-pop-sm);
  position: relative;
  transition: transform .2s ease;
  background: var(--cream-warm);
}
.ig-tile:hover { transform: translateY(-5px) rotate(1deg); }
.ig-tile::after {
  content: "\2197";
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  font-weight: 900;
  opacity: 0;
  transition: opacity .2s;
}
.ig-tile:hover::after, .ig-tile:focus-visible::after { opacity: 1; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.follow__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
}
.motion-toggle {
  display: block;
  margin: 0 auto 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.4em 1.2em;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.motion-toggle:hover { background: var(--yellow-soft); }
.motion-paused .marquee__track,
.motion-paused .ig-marquee__track { animation-play-state: paused; }
.motion-paused .hero__bee-body,
.motion-paused .float-lemon { animation-play-state: paused; }

/* ---------- book / contact ---------- */
.book {
  background: var(--ink);
  background-image: radial-gradient(rgba(255, 201, 19, 0.08) 2px, transparent 2px);
  background-size: 28px 28px;
  color: var(--cream);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 64px) 0;
  border-top: 6px solid var(--yellow);
}
.book__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.book__kicker { display: block; margin-bottom: 4px; }
.book__title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  text-transform: uppercase;
  color: var(--cream);
}
.book__zesty {
  color: var(--yellow);
  display: inline-block;
  rotate: -2deg;
  text-shadow: 4px 4px 0 var(--blue-deep);
}
.book__sub { margin: 18px auto 36px; max-width: 46ch; color: #cfcabb; font-size: 1.1rem; }
.book__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.book__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: min(340px, 100%);
  padding: 22px 30px;
  background: var(--cream);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 var(--yellow-deep);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.book__contact:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--yellow-deep); }
.book__contact-label {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--blue-deep);
}
.book__contact-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  overflow-wrap: anywhere;
}
.book__fine {
  margin: 34px auto 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a9a494;
}

/* ---------- footer ---------- */
.footer {
  margin-top: clamp(56px, 8vw, 90px);
  border-top: 2px solid #2c2a24;
  padding: 28px clamp(20px, 5vw, 64px) 34px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.footer__brand { margin: 0; }
.footer__logo { height: 72px; width: auto; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a { color: #cfcabb; font-weight: 700; font-size: 0.92rem; text-decoration: none; }
.footer__links a:hover { color: var(--yellow); }
.footer__note { font-size: 0.85rem; color: #a9a494; }

/* ---------- reveal on scroll (only hides content when JS is running) ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal-delay="1"] { transition-delay: .12s; }
.js [data-reveal-delay="2"] { transition-delay: .24s; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 560px; margin: 12px auto 0; }
  .flavors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .events__grid { grid-template-columns: 1fr; max-width: 620px; }
  .steps { grid-template-columns: 1fr; max-width: 620px; gap: 34px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__art { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: var(--border);
    padding: 8px 0 12px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px clamp(20px, 5vw, 32px); border-bottom: none; }
  .nav__links-book { display: block; color: var(--blue-deep); }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .flavors__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .sticker { width: 92px; height: 92px; font-size: 0.82rem; }
  .hero__sticker-1 { top: -20px; right: -6px; }
  .hero__sticker-2 { bottom: -18px; left: -6px; }
  .hero__bee { display: none; }
  .book__actions { flex-direction: column; align-items: stretch; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track, .ig-marquee__track { animation: none; }
  .ig-marquee__track { overflow-x: auto; width: auto; }
  .motion-toggle { display: none; }
  .hero__bee-body, .float-lemon { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .flavor-card, .event-card, .ig-tile, .book__contact { transition: none; }
}
