/* =====================================================
   COCO BAY v5 — styles.css
   Palette: Art Deco beach — warm ivory / hot pink /
   teal / coral / gold. Sun, sand, 80s/90s Riviera.
   Fonts: Limelight (headers) + Josefin Sans (body)
   ===================================================== */

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

:root {
  --pink:      #ff1f82;
  --pink-deep: #c8005e;
  --teal:      #00b4a8;
  --teal-deep: #007a72;
  --coral:     #ff6b35;
  --gold:      #e8b830;
  --gold-deep: #b88c00;
  --cream:     #fdf6e3;
  --sand:      #f5e6c8;
  --sand-deep: #e8d0a0;
  --ink:       #1a3a38;
  --ink-2:     #2d5a55;
  --ink-3:     #5a8a84;
  --ink-4:     #9abab6;
  --bg-cream:  #fdf6e3;
  --bg-sand:   #f5e6c8;
  --bg-coral:  #fff0e8;
  --bg-teal:   #e8f8f6;
  --bg-pink:   #fff0f6;
  --bg-dark:   #1a3a38;
}

html { scroll-behavior: smooth; }

/* Offset anchors for fixed nav */
[id] { scroll-margin-top: 68px; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--bg-cream);
  color: var(--ink);
  overflow-x: hidden;
  /* Classic Mac OS arrow cursor — black arrow, white outline */
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpath d='M2 2 L2 20 L7 15 L11 22 L13 21 L9 14 L16 14 Z' fill='%23000' stroke='%23fff' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") 2 2, auto;
}

/* ---- SCANLINES — very subtle on light bg ---- */
.sl::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 50;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.012) 3px, rgba(0,0,0,0.012) 4px
  );
}

/* ---- REC DOT ---- */
.rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 4px rgba(255,31,130,0.5);
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0; display: inline-block;
}
@keyframes blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  /* Starts transparent over dark hero image */
  background: rgba(10,6,30,0.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,184,48,0.2);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(253,246,227,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
}
.nav::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--sand-deep);
  opacity: 0; transition: opacity 0.4s;
}
.nav.scrolled::after { opacity: 1; }

.nav-logo {
  text-decoration: none; display: flex; align-items: center;
  animation: logoGlitch 10s ease-in-out infinite;
}
.nav-logo-img { height: 34px; width: auto; display: block; }

@keyframes logoGlitch {
  0%,91%,100% { transform: none; filter: none; }
  92% { transform: translateX(2px); filter: hue-rotate(15deg); }
  93% { transform: translateX(-2px); filter: hue-rotate(-10deg); }
  94% { transform: none; filter: none; }
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover { color: var(--pink); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-rec {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  color: var(--pink); display: flex; align-items: center; gap: 6px;
}
.nav-cta {
  font-family: 'Limelight', cursive; font-size: 0.9rem;
  background: var(--pink); color: #fff;
  padding: 8px 20px; text-decoration: none;
  transition: all .2s;
  box-shadow: 3px 3px 0 var(--pink-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--pink-deep); box-shadow: 5px 5px 0 var(--pink-deep); }


.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
/* White on dark hero, ink when scrolled */
.nav-burger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); transition: all .3s; }
.nav.scrolled .nav-burger span { background: var(--ink); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 490;
  background: rgba(253,246,227,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Limelight', cursive; font-size: 2.2rem; letter-spacing: 2px;
  color: var(--ink); text-decoration: none; transition: color .2s; padding: 6px 0;
}
.mobile-nav a:hover { color: var(--pink); }

/* ---- PROGRESS BAR ---- */
.prog { position: fixed; top: 64px; left: 0; right: 0; height: 3px; background: var(--sand); z-index: 400; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--pink), var(--coral), #7b2fff); width: 0%; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 64px;
}

/* Full-bleed background image — oversized for parallax */
.hero-img-bg {
  position: absolute; left: 0; right: 0; top: 0;
  height: 130%; z-index: 0;
  background: url('images/hero-bg.webp') center center / cover no-repeat;
  will-change: transform;
}

/* Dark overlay — lets logo and text breathe over the busy image */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(140,210,255,0.85) 0%,
    rgba(255,230,100,0.85) 45%,
    rgba(255,140,190,0.85) 100%
  );
}

.glitch-bar {
  position: absolute; left: 0; right: 0; height: 2px;
  pointer-events: none; z-index: 5;
  background: linear-gradient(90deg, transparent, rgba(255,31,130,0.3), rgba(0,180,168,0.3), transparent);
  animation: gbar 8s ease-in-out infinite;
}
.glitch-bar:nth-child(2) { animation-delay: 2.8s; animation-duration: 6s; height: 1px; }
.glitch-bar:nth-child(3) { animation-delay: 5.2s; animation-duration: 10s; }
@keyframes gbar {
  0%,100% { top:20%; opacity:0; transform:scaleX(0.2); }
  5%  { opacity:1; top:22%; transform:scaleX(1); }
  9%  { opacity:0.4; top:24%; }
  11% { opacity:0; top:43%; }
  13% { opacity:0.6; top:44%; transform:scaleX(0.7); }
  16% { opacity:0; }
}

/* Art Deco corner ornaments */
.hero-ornament { position: absolute; z-index: 3; pointer-events: none; opacity: 0.6; }
.hero-ornament-tl { top: 76px; left: 28px; }
.hero-ornament-tr { top: 76px; right: 28px; transform: scaleX(-1); }

/* Hero logo — large centred, replaces the text title */
.hero-logo {
  position: relative; z-index: 4;
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 32px;
  border-radius: 50%;
  animation: heroLogoIn .9s cubic-bezier(.22,1,.36,1) .4s both;
  filter: drop-shadow(0 0 30px rgba(255,31,130,0.35)) drop-shadow(0 0 60px rgba(0,180,168,0.2));
  will-change: transform;
}

@keyframes heroLogoIn { from { opacity:0; } to { opacity:1; } }

@keyframes ti  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fuv { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; letter-spacing: 7px; text-transform: uppercase; font-weight: 600;
  color: rgba(232,184,48,0.9);
  margin-bottom: 0;
  position: relative; z-index: 4;
  animation: fuv .8s ease .8s both;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block; width: 36px; height: 1px;
  background: rgba(232,184,48,0.6);
}
.hero-eyebrow .rec-dot { background: var(--pink); box-shadow: 0 0 6px var(--pink); }

.hero-sub {
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase; font-weight: 600;
  color: var(--ink); margin-top: 0;
  text-align: center;
  position: relative; z-index: 4;
  animation: fuv .8s ease 1s both;
}
.hero-sub-desktop {
  font-size: clamp(0.72rem, 1.8vw, 1rem);
  letter-spacing: 8px;
  line-height: 2.2;
}
.hero-sub-mobile {
  display: none;
  font-size: 0.68rem;
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 0 28px;
}

.hero-scroll {
  position: absolute; bottom: 32px;
  left: 0; right: 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 5px; text-transform: uppercase; font-weight: 700;
  color: var(--pink); z-index: 4; white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fuv .8s ease 1.4s both;
}
.hero-scroll-arrow {
  display: block;
  width: 22px; height: 22px;
  border-right: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(45deg);
  animation: hsp 2s ease 2s infinite;
  box-shadow: 2px 2px 0 var(--coral);
}
@keyframes hsp {
  0%,100% { opacity:.6; transform:rotate(45deg) translateY(0); }
  50%     { opacity:1; transform:rotate(45deg) translateY(6px); }
}

.vhs-counter {
  position: absolute; bottom: 28px; right: 28px; z-index: 4;
  font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem;
  letter-spacing: 3px; color: rgba(232,184,48,0.5); opacity: 1;
}

/* =====================================================
   TAPE TICKER
   ===================================================== */
.ticker {
  background: var(--pink);
  border-top: 2px solid var(--pink-deep);
  border-bottom: 2px solid var(--pink-deep);
  padding: 10px 0; overflow: hidden; white-space: nowrap;
  position: relative; z-index: 2;
}
.ticker-inner { display: inline-block; animation: tick 20s linear infinite; }
.ticker.rev .ticker-inner { animation-direction: reverse; }

.ticker-inner span {
  font-family: 'Limelight', cursive; font-size: 1rem; letter-spacing: 3px;
  color: rgba(255,255,255,0.92); padding: 0 24px;
}
.ticker-inner span.sep { color: rgba(255,255,255,0.4); padding: 0 4px; font-family: 'Josefin Sans', sans-serif; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.ticker.gold {
  background: var(--gold);
  border-color: var(--gold-deep);
}
.ticker.gold .ticker-inner span { color: var(--ink); }
.ticker.gold .ticker-inner span.sep { color: var(--ink-3); }

/* =====================================================
   ART DECO DIVIDER (replaces VHS static)
   ===================================================== */
.vhs-static {
  height: 10px;
  position: relative; z-index: 2;
  background: linear-gradient(
    90deg,
    var(--sand-deep) 0%, var(--gold) 15%,
    var(--sand-deep) 30%, var(--gold) 50%,
    var(--sand-deep) 65%, var(--gold) 85%,
    var(--sand-deep) 100%
  );
  position: relative;
}
.vhs-static::before, .vhs-static::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px; background: var(--gold-deep);
}
.vhs-static::before { top: 0; }
.vhs-static::after  { bottom: 0; }


/* =====================================================
   JOURNEY
   .journey = full-width background + shapes layer
   .journey-inner = centred grid (2fr scene + 1fr text)
   ===================================================== */
.journey {
  position: relative;
  background: linear-gradient(160deg, #fff8ec 0%, #ffecd2 100%);
  transition: background 0.8s ease;
}

/* Shapes — sticky, full viewport, behind the inner grid */
.journey-shapes {
  position: sticky;
  top: 64px;
  height: calc(100svh - 64px);
  pointer-events: none;
  z-index: 0;
  margin-bottom: calc(-100svh + 64px);
}

.journey-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Scene colour states — applied to .journey by JS */
.journey.ch1 { background: linear-gradient(160deg, #fff8ec 0%, #ffecd2 100%); }
.journey.ch2 { background: linear-gradient(160deg, #fff0f6 0%, #ffd6e8 100%); }
.journey.ch3 { background: linear-gradient(160deg, #fffae8 0%, #ffecc0 100%); }
.journey.ch4 { background: linear-gradient(160deg, #eafaf8 0%, #c0eeea 100%); }

/* Text column — left, solid background strip, overlaps scene */
.journey-text {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  position: relative;
  background: var(--bg-cream);
  transition: background 0.8s ease;
  margin-right: -80px;
}
.journey-text.ch1 { background: var(--bg-cream); }
.journey-text.ch2 { background: var(--bg-pink); }
.journey-text.ch3 { background: var(--bg-sand); }
.journey-text.ch4 { background: var(--bg-teal); }

/* Scene column — sticky, right side */
.journey-scene {
  position: sticky;
  top: 64px;
  height: calc(100svh - 64px);
  grid-column: 2;
  grid-row: 1;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Each text block — one viewport of scroll */
.jt-block {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 52px;
  position: relative;
}
.jt-block.jt-drink { min-height: 100svh; }

/* Mobile chapter images — hidden on desktop */
.ch-mobile-img {
  display: none;
  width: 70%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}

.ch-tag {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700;
  display: block; margin-bottom: 16px;
}
.ch-title {
  font-family: 'Limelight', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; margin-bottom: 20px;
}
.ch-body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem; line-height: 1.85; font-weight: 300;
  color: var(--ink-2); max-width: 360px; margin-bottom: 20px;
}
.ch-drink-name { font-family: 'Limelight', cursive; font-size: 1.6rem; margin-bottom: 10px; }
.ch-drink-desc {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700; color: var(--ink-4);
}

/* All 4 characters stacked absolutely in the sticky scene */
.scene-char {
  position: absolute;
  bottom: -20px; left: 50%;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
  display: flex; align-items: flex-end; justify-content: center;
  width: 90%;
  max-width: 520px;
}
/* When using real images */
.scene-char img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - 64px + 40px); /* bleed slightly for drama */
  object-fit: contain; object-position: bottom;
  display: block;
}
/* SVG fallbacks */
.scene-char svg { display: block; width: 100%; height: auto; }

/* Per-character angle — toggled by JS adding active class */
#sc1.char-active { transform: translateX(-54%) rotate(-4deg) translateY(0); }
#sc2.char-active { transform: translateX(-46%) rotate(3deg)  translateY(0); }
#sc3.char-active { transform: translateX(-52%) rotate(-2deg) translateY(0); }
#sc4.char-active { transform: translateX(-48%) rotate(5deg)  translateY(0); }

/* ── DECORATIVE 80s SHAPES ── */
.deco-shape {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  will-change: transform;
  display: block;
  opacity: 0.55;
}

/* Slow float animations — each shape drifts independently */
@keyframes floatA {
  0%,100% { translate: 0 0px; }
  50%      { translate: 0 -14px; }
}
@keyframes floatB {
  0%,100% { translate: 0 0px; }
  50%      { translate: 0 10px; }
}
@keyframes floatC {
  0%,100% { translate: 0 0px; }
  33%      { translate: 0 -8px; }
  66%      { translate: 0 12px; }
}
@keyframes floatD {
  0%,100% { translate: 0 0px; }
  50%      { translate: 0 -18px; }
}

.deco-shape:nth-child(1)  { animation: floatA 5.2s ease-in-out infinite; }
.deco-shape:nth-child(2)  { animation: floatB 6.8s ease-in-out infinite; }
.deco-shape:nth-child(3)  { animation: floatC 4.9s ease-in-out infinite; }
.deco-shape:nth-child(4)  { animation: floatD 7.3s ease-in-out infinite; }
.deco-shape:nth-child(5)  { animation: floatA 5.8s ease-in-out infinite 0.8s; }
.deco-shape:nth-child(6)  { animation: floatB 6.1s ease-in-out infinite 1.2s; }
.deco-shape:nth-child(7)  { animation: floatC 5.5s ease-in-out infinite 0.4s; }
.deco-shape:nth-child(8)  { animation: floatD 7.8s ease-in-out infinite 1.6s; }
.deco-shape:nth-child(9)  { animation: floatA 6.4s ease-in-out infinite 0.2s; }
.deco-shape:nth-child(10) { animation: floatB 5.1s ease-in-out infinite 2.0s; }
.deco-shape:nth-child(11) { animation: floatC 6.7s ease-in-out infinite 0.6s; }
.deco-shape:nth-child(12) { animation: floatD 4.8s ease-in-out infinite 1.0s; }
.deco-shape:nth-child(13) { animation: floatA 7.1s ease-in-out infinite 1.4s; }
.deco-shape:nth-child(14) { animation: floatB 5.6s ease-in-out infinite 0.3s; }
.deco-shape:nth-child(15) { animation: floatC 6.3s ease-in-out infinite 1.8s; }
.deco-shape:nth-child(16) { animation: floatD 5.9s ease-in-out infinite 0.7s; }

/* Shapes inside text blocks — removed, now in journey-shapes sticky layer */


.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 1; }

#stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; }


/* =====================================================
   MENU STRIP
   ===================================================== */
.menu-section {
  background: var(--bg-sand);
  position: relative; overflow: hidden;
  border-top: 3px solid var(--gold);
}

.menu-header {
  padding: 72px 40px 56px;
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--sand-deep);
}
.menu-eyebrow {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; letter-spacing: 5px;
  text-transform: uppercase; font-weight: 700;
  color: var(--teal); display: block; margin-bottom: 12px;
}
.menu-header h2 {
  font-family: 'Limelight', cursive;
  font-size: clamp(2.8rem, 7vw, 6rem); line-height: .95;
  color: var(--ink);
}
.menu-header h2 em { color: var(--pink); font-style: normal; }

.menu-strip { display: grid; grid-template-columns: repeat(4,1fr); }

.menu-item {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--sand-deep);
  cursor: pointer; transition: background .3s;
}
.menu-item:last-child { border-right: none; }
.menu-item:hover { background: var(--bg-coral); }

.item-img {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.item-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform .5s, filter .3s;
}
.menu-item:hover .item-img img { transform: scale(1.05); filter: saturate(1.2); }

.item-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: repeating-linear-gradient(
    0deg, transparent 0px, transparent 3px,
    rgba(0,0,0,0.015) 3px, rgba(0,0,0,0.015) 4px
  );
}

.item-cast {
  position: absolute; inset: 0; pointer-events: none;
  mix-blend-mode: multiply; opacity: .15;
}

.frame-num {
  position: absolute; top: 10px; left: 12px; z-index: 4;
  font-family: 'Josefin Sans', sans-serif; font-size: 0.58rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.2); padding: 2px 6px;
}

.item-info {
  padding: 20px 20px 24px;
  border-top: 1px solid var(--sand-deep);
}
.item-info h3 { font-family: 'Limelight', cursive; font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }
.item-info p  { font-size: 0.78rem; color: var(--ink-3); line-height: 1.65; font-weight: 300; margin-bottom: 12px; }
.item-price   { font-family: 'Limelight', cursive; font-size: 1.4rem; }

.cocktail-svg { width: 52%; height: auto; opacity: .55; }

/* =====================================================
   DRINKS MENU
   ===================================================== */
.drinks-menu {
  background: var(--bg-cream);
  border-top: 3px solid var(--gold);
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.drinks-menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.drinks-menu-header {
  margin-bottom: 36px;
}
.drinks-eyebrow {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; letter-spacing: 5px;
  text-transform: uppercase; font-weight: 700;
  color: var(--teal); display: block; margin-bottom: 12px;
}
.drinks-menu-header h2 {
  font-family: 'Limelight', cursive;
  font-size: clamp(2.8rem, 7vw, 5rem); line-height: .95;
  color: var(--ink);
}
.drinks-menu-header h2 em { color: var(--pink); font-style: normal; }

/* Filter tabs */
.drinks-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.drinks-tab {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  padding: 10px 22px;
  background: transparent;
  color: var(--ink-3);
  border: 2px solid var(--sand-deep);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 2px 2px 0 var(--sand-deep);
}
.drinks-tab:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 2px 2px 0 var(--pink-deep);
}
.drinks-tab.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 3px 3px 0 var(--pink-deep);
}

/* Card grid — single column, one category at a time */
.drinks-grid {
  max-width: 1100px;
}

/* Cards — no visible frame, just a container */
.drinks-card {
  padding: 0;
  position: relative;
  transition: all 0.4s ease;
}

/* Hidden state for filter */
.drinks-card.hidden {
  display: none;
}

.drinks-card h3 {
  display: none; /* title is in the tab */
}

.drinks-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  position: relative; z-index: 1;
}

.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232,184,48,0.15);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-2);
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(10px);
}
.drink-item:last-child { border-bottom: none; }
.drink-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.drink-item:hover {
  color: var(--ink);
  background: rgba(232,184,48,0.06);
  padding-left: 8px;
  padding-right: 8px;
}
.drink-item:hover .drink-price {
  color: var(--pink);
  transform: scale(1.15);
}

.drink-price {
  font-family: 'Limelight', cursive;
  font-size: 0.95rem;
  color: var(--teal-deep);
  flex-shrink: 0;
  margin-left: 12px;
  transition: all 0.25s;
  display: inline-block;
}

.shot-price {
  font-family: 'Limelight', cursive;
  font-size: 1.8rem;
  color: var(--coral);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.shot-flavours {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-3);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1px;
  position: relative; z-index: 1;
  max-width: 320px;
}

.shots-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
}
.shots-info {
  flex: 0 1 auto;
  text-align: center;
}
.shot-wheel-img {
  width: 340px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.12));
}

/* =====================================================
   FIND US — two column with parallax drinks
   ===================================================== */
.find-section {
  background: var(--bg-pink);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.find-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 80vh;
  padding: 80px 40px;
  gap: 40px;
}

.find-left {
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.find-left h2 {
  font-family: 'Limelight', cursive;
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; margin-bottom: 36px;
  color: var(--ink); position: relative; z-index: 1;
}
.find-left h2 em { color: var(--pink); font-style: normal; }

.info-list { display: flex; flex-direction: column; position: relative; z-index: 1; }
.ii {
  display: flex; align-items: stretch;
  border: 1px solid var(--sand-deep); border-bottom: none;
  transition: background .2s;
}
.ii:last-child { border-bottom: 1px solid var(--sand-deep); }
.ii:hover { background: var(--bg-sand); }

.ii-icon {
  width: 52px; min-height: 54px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border-right: 1px solid var(--sand-deep);
  background: var(--sand); flex-shrink: 0;
}
.ii-text { padding: 13px 18px; display: flex; flex-direction: column; justify-content: center; }
.ii-text strong {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.58rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  color: var(--teal); display: block; margin-bottom: 3px;
}
.ii-text span, .ii-text a {
  font-size: 0.92rem; color: var(--ink); font-weight: 400;
  text-decoration: none; transition: color .2s;
}
.ii-text a:hover { color: var(--pink); }

.find-ctas { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-vhs {
  font-family: 'Limelight', cursive; font-size: 1rem;
  padding: 12px 26px; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none;
}
.btn-cy { background: var(--teal); color: #fff; box-shadow: 3px 3px 0 var(--teal-deep); }
.btn-cy:hover { background: var(--teal-deep); box-shadow: 5px 5px 0 var(--teal-deep); }
.btn-ol { background: transparent; color: var(--ink); border: 2px solid var(--sand-deep); box-shadow: 3px 3px 0 var(--sand-deep); }
.btn-ol:hover { border-color: var(--pink); color: var(--pink); box-shadow: 3px 3px 0 var(--pink-deep); }

.wa-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Drinks composition — three drinks layered together */
.find-drinks {
  position: relative;
  height: 480px;
  width: 100%;
}

.find-drink {
  position: absolute;
  bottom: 0;
  height: auto;
  will-change: transform;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* Beer — left, tucked in close */
.fd-beer {
  width: 170px;
  left: 15%;
  z-index: 1;
  bottom: 20px;
}

/* Cocktail — centre front, overlapping both */
.fd-cocktail {
  width: 195px;
  left: 50%;
  margin-left: -98px;
  z-index: 3;
  bottom: 0;
}

/* Frozen — right, tucked in close */
.fd-frozen {
  width: 160px;
  right: 15%;
  z-index: 2;
  bottom: 30px;
}

/* =====================================================
   INSTAGRAM PHOTO TICKER
   ===================================================== */
.ig-ticker-section {
  border-top: 3px solid var(--gold);
  background: var(--bg-sand);
  padding: 24px 0 28px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ig-ticker-label {
  text-align: center; margin-bottom: 16px;
}
.ig-ticker-label a {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700;
  color: var(--ink-3); text-decoration: none;
  transition: color .2s;
}
.ig-ticker-label a:hover { color: var(--pink); }

.ig-ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ig-ticker-inner {
  display: flex; gap: 8px;
  animation: igScroll 40s linear infinite;
  width: max-content;
}

.ig-ticker-inner img {
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  filter: saturate(1.1) contrast(1.05);
  transition: filter .3s, transform .3s;
}
.ig-ticker-inner img:hover {
  filter: saturate(1.3) contrast(1.1);
  transform: scale(1.06);
  z-index: 2;
}

@keyframes igScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-160px * 8 - 8px * 8)); }
}

/* =====================================================
   FOOTER — only dark section
   ===================================================== */
.footer {
  background: var(--bg-dark);
  padding: 56px 40px 32px;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.f-logo-img { height: 44px; width: auto; display: block; margin-bottom: 12px; }
.f-tagline {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 600;
  color: rgba(253,246,227,0.3); margin-top: 4px;
}

.f-col h4 {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
}
.f-col a, .f-col span {
  display: block; margin-bottom: 10px; font-size: 0.85rem;
  color: rgba(253,246,227,0.38); text-decoration: none; font-weight: 300; transition: color .2s;
}
.f-col a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(232,184,48,0.15); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.f-copy {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; color: rgba(253,246,227,0.18);
}
.f-credit a { font-size: 0.7rem; color: rgba(253,246,227,0.12); text-decoration: none; transition: color .3s; }
.f-credit a:hover { color: rgba(253,246,227,0.4); }

/* Mobile-only line breaks */
.mobile-br { display: none; }

/* =====================================================
   SCROLL ANIMATION
   ===================================================== */
.anim { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.anim.visible { opacity: 1; transform: none; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .nav-links, .nav-rec { display: none; }
  .nav-burger { display: flex; }
  .mobile-br { display: inline; }
  .journey-inner {
    display: block;
  }
  .journey-shapes {
    opacity: 0.4;
    position: absolute;
    inset: 0;
    height: auto;
    margin-bottom: 0;
  }
  .journey-shapes .deco-shape {
    width: 45px !important;
  }
  .journey-scene {
    display: none;
  }
  .journey-text {
    position: relative;
    z-index: 1;
    margin-right: 0;
    background: transparent !important;
  }
  .ch-mobile-img {
    display: block;
  }
  .jt-block {
    min-height: auto;
    padding: 36px 24px;
  }
  .jt-block.jt-drink { min-height: auto; }
  .jt-block::before { display: none; }
  .ch-title { font-size: clamp(1.8rem,6vw,2.8rem); }
  .drinks-menu { padding: 48px 0; }
  .drinks-menu-inner { padding: 0 24px; }
  .drinks-list { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
  .shots-layout { flex-direction: column; gap: 28px; }
  .shot-wheel-img { width: 220px; }
  .drinks-tabs { gap: 4px; }
  .drinks-tab { padding: 8px 14px; font-size: 0.62rem; letter-spacing: 2px; }
  .menu-strip { grid-template-columns: repeat(2,1fr); }
  .menu-item:nth-child(2n)  { border-right: none; }
  .menu-item:nth-child(odd) { border-right: 1px solid var(--sand-deep); }
  .find-left { padding: 0; }
  .find-inner { grid-template-columns: 1fr; padding: 48px 24px; }
  .find-drinks { height: 360px; }
  .fd-beer { width: 120px; left: 10%; }
  .fd-cocktail { width: 140px; left: 50%; margin-left: -70px; }
  .fd-frozen { width: 120px; right: 10%; }
  .ig-ticker-inner img { width: 130px; height: 130px; }
  .menu-header { padding: 48px 24px 40px; }
  .footer-inner { flex-direction: column; }
  .footer { padding: 40px 24px 24px; }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; height: 56px; }
  .prog { top: 56px; }
  .hero { padding-top: 56px; }
  .hero-sub { letter-spacing: 1px; font-size: 0.68rem; padding: 0 28px; line-height: 1.8; }
  .hero-sub-desktop { display: none; }
  .hero-sub-mobile { display: block; }
  .hero-title .co, .hero-title .bay { font-size: clamp(4rem,22vw,7rem); }
  .menu-strip { grid-template-columns: 1fr; }
  .menu-item { border-right: none !important; }
  .jt-block { padding: 24px 18px; }
  .drinks-list { grid-template-columns: 1fr; }
  .ig-ticker-inner img { width: 110px; height: 110px; }
}
