/* ============================================
   GOOD VIBES RVA — Main Stylesheet
   Tropical · Bold · Community
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --pink: #FF1F8E;
  --teal: #00D4D4;
  --orange: #FF6B00;
  --yellow: #FFD700;
  --purple: #2D0057;
  --purple-light: #4A0080;
  --white: #FFFFFF;
  --off-white: #FFF8F0;
  --near-black: #0A0A0A;
  --dark-bg: #0D0D1A;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.15);
  --shadow-md: 0 4px 20px rgba(0,0,0,.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.35);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4,0,.2,1);

  /* Measured height of the fixed .navbar: 1.8rem logo at the inherited 1.6
     line-height (46px) + .85rem padding top/bottom. Content that must clear
     the bar offsets by this. */
  --nav-h: 73px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--near-black);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-pink {
  background: linear-gradient(135deg, var(--pink), #FF6BB5);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,31,142,.4);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255,31,142,.6);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), #00A8A8);
  color: var(--near-black);
  box-shadow: 0 4px 20px rgba(0,212,212,.3);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,212,212,.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--purple);
  transform: translateY(-2px);
}

/* ---------- Neon Text Effect ---------- */
.neon-text {
  color: var(--white);
  text-shadow:
    0 0 10px var(--pink),
    0 0 20px var(--pink),
    0 0 40px var(--pink),
    0 0 80px var(--teal),
    0 0 120px var(--teal);
  animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 10px var(--pink),
      0 0 20px var(--pink),
      0 0 40px var(--pink),
      0 0 80px var(--teal),
      0 0 120px var(--teal);
  }
  to {
    text-shadow:
      0 0 5px var(--pink),
      0 0 15px var(--pink),
      0 0 30px var(--pink),
      0 0 60px var(--teal),
      0 0 90px var(--teal);
  }
}

/* Phone-sized variant of neonPulse. The radii above are fixed px tuned for big
   desktop text; against the ~25px tagline on a 390px phone the 80/120px teal halo blooms
   far past the glyphs and reads as a blue glare. These radii are scaled to the
   smaller type and the teal is held back to a faint accent. Applied to the hero
   tagline in the mobile block below — the glow is animated, so overriding
   animation-name (not just text-shadow) is what actually takes effect. */
@keyframes neonPulseMobile {
  from {
    text-shadow:
      0 0 6px var(--pink),
      0 0 14px var(--pink),
      0 0 26px rgba(255,31,142,.65),
      0 0 38px rgba(0,212,212,.28);
  }
  to {
    text-shadow:
      0 0 4px var(--pink),
      0 0 10px var(--pink),
      0 0 20px rgba(255,31,142,.55),
      0 0 28px rgba(0,212,212,.2);
  }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .85rem 0;
  transition: padding .3s ease, box-shadow .3s ease;
  /* Clean, solid deep-purple bar on every page (no transparent-over-gradient clash) */
  background: var(--purple);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.navbar.scrolled {
  padding: .6rem 0;
  box-shadow: 0 4px 22px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-logo .logo-accent {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: .35rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .5rem .6rem;
  white-space: nowrap;
  transition: color .25s ease;
  position: relative;
}

/* Single accent (pink) underline — subtle, consistent indicator */
.nav-links a::after {
  content: '';
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .15rem;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1rem 4rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    var(--purple) 0%,
    #4A0080 25%,
    var(--pink) 50%,
    var(--orange) 75%,
    var(--purple) 100%);
  background-size: 300% 300%;
  animation: heroGradient 12s ease infinite;
}

@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,0,30,.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tagline {
  margin-bottom: 1.5rem;
  /* Scales with viewport so "Refreshing. Energizing." never clips on phones */
  font-size: clamp(1.75rem, 7vw, 6rem);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: .15; }
  90% { opacity: .15; }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Drink cup illustration */
.hero-cup {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 1;
  width: 180px;
  height: 240px;
  animation: cupFloat 4s ease-in-out infinite;
  opacity: .2;
}

@keyframes cupFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-20px) rotate(3deg); }
}

/* ============================================================
   HERO BACKGROUND VIDEO
   Active in .hero--video mode (Homepage → Show Hero Video).
   Video sits above the fallback gradient; a brand purple/magenta
   overlay sits above the video for text contrast. Decorative layers
   that would clash with the video are hidden in this mode.
   ============================================================ */
.hero-video,
.hero-video-overlay { display: none; }

.hero--video .hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: transparent;   /* let the gradient fallback show through any gap */
  pointer-events: none;
}

.hero--video .hero-video-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Brand purple/magenta wash + center-weighted darken so the neon text pops */
  background:
    radial-gradient(ellipse 90% 72% at 50% 46%,
      rgba(20,0,40,.72) 0%, rgba(45,0,55,.5) 45%, rgba(28,0,44,.64) 100%),
    linear-gradient(180deg, rgba(20,0,40,.5) 0%, rgba(60,10,70,.28) 40%, rgba(20,0,40,.64) 100%);
}

/* Hide layers that would clash with / sit over the video */
.hero--video .hero-drink,
.hero--video .hibiscus-accent,
.hero--video .bubbles,
.hero--video .tea-pour,
.hero--video .hero-overlay { display: none; }

/* The covered gradient doesn't need to animate under the video (perf); it still
   serves as a static on-brand fallback if the video fails to load. */
.hero--video .hero-gradient { animation: none; }

/* Reduced-motion / accessibility: no autoplaying video — show the static
   (non-animated) gradient fallback instead. */
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero-video { display: none; }
}

/* ============================================================
   HERO "TEA POUR" BACKGROUND
   Toggle: add/remove the .hero--tea-pour class on .hero
   (driven by homepage.json → tea_pour_enabled). Every rule below
   is gated under .hero--tea-pour, so removing the class fully
   reverts the original hero. Animations are transform-based
   (GPU-composited) to stay light on mobile.
   ============================================================ */

/* Decorative layers are inert unless the effect is enabled */
.tea-pour { display: none; }
.hero--tea-pour .tea-pour {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Calmer, deeper base so the pour + neon text read clearly */
.hero--tea-pour .hero-gradient {
  background: linear-gradient(160deg, #06203a 0%, #072a4c 24%, #131a4c 48%, #2a0f49 72%, #3a0f45 100%);
  background-size: 180% 180%;
  animation: teaBaseShift 24s ease-in-out infinite;
}
@keyframes teaBaseShift {
  0%, 100% { background-position: 0% 30%; }
  50%      { background-position: 100% 70%; }
}

/* Cascading tea streaks flowing downward (teal → blue → purple → pink) */
.tea-pour-flow { position: absolute; inset: 0; z-index: 0; opacity: .55; }
.tea-pour-flow::before {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  top: -50%; bottom: -50%;              /* 200% tall for a seamless loop */
  background-image: linear-gradient(180deg,
    rgba(0,212,212,0)    0%,
    rgba(0,212,212,.45) 14%,
    rgba(30,120,220,.5) 34%,
    rgba(120,40,180,.5) 55%,
    rgba(255,31,142,.45) 78%,
    rgba(0,212,212,0)   100%);
  background-size: 100% 50%;            /* one colour cycle = full hero height */
  background-repeat: repeat-y;
  animation: teaCascade 16s linear infinite;
  will-change: transform;
}
@keyframes teaCascade {
  from { transform: translateY(0); }
  to   { transform: translateY(50%); } /* shift one tile → seamless */
}

/* Floating glassy ice cubes drifting near the edges (never behind the text) */
.tea-pour-ice { position: absolute; inset: 0; z-index: 1; }
.ice-cube {
  position: absolute;
  border-radius: 26%;
  background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.04));
  border: 1.5px solid rgba(255,255,255,.3);
  box-shadow: inset 0 2px 10px rgba(255,255,255,.22), inset 0 -3px 8px rgba(0,60,90,.15);
  opacity: .5;
  animation: iceDrift ease-in-out infinite;
  will-change: transform;
}
.ice-cube::after {                       /* corner glint */
  content: ""; position: absolute; top: 16%; left: 18%;
  width: 26%; height: 26%; border-radius: 40%;
  background: rgba(255,255,255,.5);
}
.ice-cube:nth-child(1) { top: 15%; left: 7%;   width: 42px; height: 42px; --r: -12deg; animation-duration: 9s; }
.ice-cube:nth-child(2) { top: 24%; right: 9%;  width: 56px; height: 56px; --r: 10deg;  animation-duration: 12s; animation-delay: -3s; }
.ice-cube:nth-child(3) { top: 60%; left: 6%;   width: 34px; height: 34px; --r: 8deg;   animation-duration: 8s;  animation-delay: -1.5s; }
.ice-cube:nth-child(4) { bottom: 15%; right: 8%; width: 46px; height: 46px; --r: -8deg; animation-duration: 13s; animation-delay: -5s; }
.ice-cube:nth-child(5) { top: 44%; right: 15%; width: 26px; height: 26px; --r: 16deg;  animation-duration: 10s; animation-delay: -2s; }
@keyframes iceDrift {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-22px) rotate(calc(var(--r, 0deg) + 7deg)); }
}

/* Vignette for legibility — darker behind the headline, lighter at the edges
   so the pour + ice stay visible without competing with the text/CTA */
.hero--tea-pour .hero-overlay {
  background:
    radial-gradient(ellipse 80% 62% at 50% 44%,
      rgba(4,0,18,.62) 0%, rgba(4,0,18,.34) 55%, rgba(4,0,18,.1) 100%),
    linear-gradient(180deg, rgba(4,0,18,.34) 0%, rgba(4,0,18,.06) 38%, rgba(4,0,18,.42) 100%);
}

/* Keep it calm and clean on phones */
@media (max-width: 600px) {
  .hero--tea-pour .ice-cube:nth-child(4),
  .hero--tea-pour .ice-cube:nth-child(5) { display: none; }
  .hero--tea-pour .ice-cube:nth-child(2) { width: 40px; height: 40px; }
  .hero--tea-pour .tea-pour-flow { opacity: .42; }
}

/* ---------- Info Bar ---------- */
.info-bar {
  background: var(--purple);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}

.info-bar-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
}

.info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--pink);
  flex-shrink: 0;
}

/* ---------- Feature Blocks ---------- */
.features {
  padding: 5rem 0;
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, var(--pink), var(--orange)); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), #00A8A8); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, rgba(255,31,142,.15), rgba(255,107,0,.15)); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, rgba(0,212,212,.15), rgba(0,168,168,.15)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, rgba(255,215,0,.15), rgba(255,107,0,.15)); }

.feature-card h3 {
  color: var(--purple);
  margin-bottom: .8rem;
  letter-spacing: 1.5px;
}

.feature-card p {
  color: #555;
  font-size: .95rem;
}

/* ---------- Announcement Banner ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: var(--white);
  text-align: center;
  padding: .75rem 1rem;
  font-weight: 700;
  font-size: .95rem;
}

/* ---------- Tropical Divider (bubble strip) ----------
   A slim bar with a row of bubbles hanging off it, carved out of the sliding
   brand gradient with a CSS mask. Falls back to a plain gradient bar where
   masks are unsupported. */
.tropical-divider {
  height: 22px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--teal), var(--pink));
  background-size: 200% 100%;
  animation: dividerSlide 4s linear infinite;
  -webkit-mask-image:
    linear-gradient(#000, #000),
    radial-gradient(circle 8px at 50% 13px, #000 97%, transparent 100%);
  -webkit-mask-size: 100% 7px, 30px 22px;
  -webkit-mask-repeat: no-repeat, repeat-x;
  -webkit-mask-position: 0 0, 0 0;
  mask-image:
    linear-gradient(#000, #000),
    radial-gradient(circle 8px at 50% 13px, #000 97%, transparent 100%);
  mask-size: 100% 7px, 30px 22px;
  mask-repeat: no-repeat, repeat-x;
  mask-position: 0 0, 0 0;
}

@keyframes dividerSlide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: .5rem;
}

.page-header p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ---------- Menu Page ---------- */
.menu-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.monthly-menu {
  text-align: center;
  margin-bottom: 4rem;
}

.monthly-menu-hint {
  color: #666;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .5rem;
}

/* Two full-size, uncropped menu graphics: side by side on wide screens,
   stacking to a single column on narrow/mobile screens. */
.monthly-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  align-items: start;
}

.monthly-menu-img {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  cursor: zoom-in;
  transition: var(--transition);
}

.monthly-menu-img:hover,
.monthly-menu-img:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Full-size, uncropped — image fills width, height follows natural ratio. */
.monthly-menu-img img {
  width: 100%;
  height: auto;
  display: block;
}

.monthly-menu-placeholder {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  cursor: default;
}

.monthly-menu-placeholder:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

/* On phones force a single stacked column even if a wide image misreports. */
@media (max-width: 600px) {
  .monthly-menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Menu Archive (past months) ---------- */
.menu-archive {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-archive-sub {
  color: #666;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

/* Past menus — responsive tile grid (3 desktop, 2 tablet/mobile) */
.past-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.past-menu-tile {
  margin: 0;
}

.past-menu-img {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.past-menu-img:hover,
.past-menu-img:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Uniform tidy thumbnails — top-aligned preview; full menu opens in the lightbox */
.past-menu-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.past-menu-label {
  margin-top: .7rem;
  font-family: var(--font-heading);
  color: var(--pink);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .past-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .past-menu-img img {
    height: 220px;
  }
}

.menu-archive-empty {
  max-width: 700px;
  margin: 1.5rem auto 0;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.drink-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.drink-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.drink-card-header {
  padding: 1.8rem 1.5rem 1rem;
  position: relative;
}

.drink-card-header h3 {
  color: var(--white);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.drink-card-header .drink-emoji {
  font-size: 2rem;
  margin-bottom: .3rem;
  display: block;
}

.drink-card-body {
  padding: 1.2rem 1.5rem 1.8rem;
}

.drink-card-body p {
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
}

.drink-card-body .drink-topper {
  display: inline-block;
  margin-top: .8rem;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Drink card color themes */
.drink-teal .drink-card-header { background: linear-gradient(135deg, #00B4B4, var(--teal)); }
.drink-teal:hover { box-shadow: 0 8px 30px rgba(0,212,212,.4); }
.drink-teal .drink-topper { background: rgba(0,212,212,.15); color: #00A0A0; }

.drink-orange .drink-card-header { background: linear-gradient(135deg, var(--orange), #FF8C3A); }
.drink-orange:hover { box-shadow: 0 8px 30px rgba(255,107,0,.4); }
.drink-orange .drink-topper { background: rgba(255,107,0,.15); color: var(--orange); }

.drink-blue .drink-card-header { background: linear-gradient(135deg, #1E60D0, #3A8CF0); }
.drink-blue:hover { box-shadow: 0 8px 30px rgba(30,96,208,.4); }
.drink-blue .drink-topper { background: rgba(30,96,208,.15); color: #1E60D0; }

.drink-red .drink-card-header { background: linear-gradient(135deg, #8B0000, #C41030); }
.drink-red:hover { box-shadow: 0 8px 30px rgba(139,0,0,.4); }
.drink-red .drink-topper { background: rgba(139,0,0,.15); color: #8B0000; }

.drink-yellow .drink-card-header { background: linear-gradient(135deg, #D4A800, var(--yellow)); }
.drink-yellow:hover { box-shadow: 0 8px 30px rgba(255,215,0,.4); }
.drink-yellow .drink-topper { background: rgba(255,215,0,.15); color: #B8960A; }

.drink-patriot .drink-card-header {
  background: linear-gradient(135deg, #B22234, #1E3A8B);
}
.drink-patriot:hover { box-shadow: 0 8px 30px rgba(178,34,52,.4); }
.drink-patriot .drink-topper { background: rgba(178,34,52,.15); color: #B22234; }

/* ---------- About Page ---------- */
.about-section {
  padding: 4rem 0;
  position: relative;
}

.about-warm {
  background: linear-gradient(180deg, var(--off-white), #FFF0E8);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  position: relative;
  /* Reserve a stable, branded box so there's no white flash / layout shift before the image loads */
  aspect-ratio: 4 / 5;
  min-height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carrying It Forward — single, full-width readable column (no empty second column) */
.about-carrying-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-text h2 {
  color: var(--purple);
  margin-bottom: 1rem;
}

.about-text p {
  color: #444;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.pull-quote {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin: 3rem 0;
  position: relative;
  text-align: center;
}

.pull-quote::before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  color: var(--pink);
  opacity: .4;
  font-family: Georgia, serif;
  line-height: 1;
}

.pull-quote p {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  position: relative;
}

.about-carrying {
  background: linear-gradient(180deg, #FFF0E8, var(--off-white));
}

.about-community-photo {
  width: 100%;
  overflow: hidden;
  background: var(--off-white);
  padding: 2rem 1rem;
  text-align: center;
}

/* Show the FULL photo (incl. the "Steps for Sherry" wording) — capped by width,
   never cropped, so nothing is half-cut. */
.about-community-photo img {
  width: 100%;
  max-width: 860px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- Team Section ---------- */
.team-section {
  padding: 5rem 0 0;
  background: var(--off-white);
}

.crew-sub {
  color: #555;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: .5rem;
}

.team-photo-wrap {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0;
}

.team-photo-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Our Crew — individual cards */
.crew-grid {
  margin-top: 3rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.6rem;
}

.crew-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(45, 0, 87, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.crew-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(45, 0, 87, .16);
}

.crew-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(45, 0, 87, .18);
}

.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crew-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display, inherit);
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.crew-name {
  color: var(--purple);
  font-size: 1.2rem;
  margin: 0 0 .5rem;
}

.crew-fav {
  margin: 0;
  color: #444;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.crew-fav-label {
  display: block;
  color: var(--pink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.crew-fav-empty {
  color: #999;
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 600px) {
  .crew-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .crew-photo {
    width: 84px;
    height: 84px;
  }
}

/* ---------- Gallery ---------- */
.gallery-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.2rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,0,87,.0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(45,0,87,.15);
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,.2);
}

/* ---------- Contact Page ---------- */
.contact-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--purple);
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.contact-info-item p {
  color: #555;
  font-size: .95rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
  min-height: 250px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-weight: 700;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  color: var(--purple);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin-bottom: .4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid #E8E0F0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,31,142,.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Two-up field rows (collapse to one column on mobile) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.2rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---------- Request a Pop-Up (Events page) ---------- */
.popup-section {
  padding: 4.5rem 0;
  background: var(--off-white);
}

.popup-heading {
  margin-top: .25rem;
}

.popup-sub {
  max-width: 620px;
  margin: .75rem auto 0;
  color: #555;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}

.popup-form {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 3px;
}

.footer-logo .logo-accent { color: var(--pink); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--pink); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
}

/* ---------- Hibiscus SVG Accent ---------- */
.hibiscus-accent {
  position: absolute;
  pointer-events: none;
  opacity: .08;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Herbalife / What's In Your Cup Page ---------- */
.hl-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1rem 4rem;
}

.hl-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    var(--purple) 0%,
    #4A0080 20%,
    var(--teal) 40%,
    var(--pink) 60%,
    var(--orange) 80%,
    var(--purple) 100%);
  background-size: 300% 300%;
  animation: heroGradient 12s ease infinite;
}

.hl-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,0,30,.4);
}

.hl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hl-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.9);
  margin-top: 1.5rem;
  font-weight: 600;
}

/* Intro */
.hl-intro {
  padding: 5rem 0;
  background: var(--off-white);
}

.hl-intro-content {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  font-weight: 600;
}

/* Ingredients */
.hl-ingredients {
  padding: 5rem 0;
  background: var(--white);
}

.hl-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hl-ingredient-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.hl-ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.hl-card-yellow::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.hl-card-yellow:hover { border-color: var(--yellow); box-shadow: 0 8px 30px rgba(255,215,0,.3); }

.hl-card-teal::before { background: linear-gradient(90deg, var(--teal), #00A8A8); }
.hl-card-teal:hover { border-color: var(--teal); box-shadow: 0 8px 30px rgba(0,212,212,.3); }

.hl-card-green::before { background: linear-gradient(90deg, #2ECC71, var(--teal)); }
.hl-card-green:hover { border-color: #2ECC71; box-shadow: 0 8px 30px rgba(46,204,113,.3); }

.hl-card-pink::before { background: linear-gradient(90deg, var(--pink), #FF6BB5); }
.hl-card-pink:hover { border-color: var(--pink); box-shadow: 0 8px 30px rgba(255,31,142,.3); }

.hl-ingredient-card:hover {
  transform: translateY(-8px);
}

.hl-ingredient-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.hl-card-yellow .hl-ingredient-icon { background: linear-gradient(135deg, rgba(255,215,0,.15), rgba(255,107,0,.15)); }
.hl-card-teal .hl-ingredient-icon { background: linear-gradient(135deg, rgba(0,212,212,.15), rgba(0,168,168,.15)); }
.hl-card-green .hl-ingredient-icon { background: linear-gradient(135deg, rgba(46,204,113,.15), rgba(0,212,212,.15)); }
.hl-card-pink .hl-ingredient-icon { background: linear-gradient(135deg, rgba(255,31,142,.15), rgba(255,107,181,.15)); }

.hl-ingredient-card h3 {
  color: var(--purple);
  margin-bottom: .8rem;
  letter-spacing: 1.5px;
}

.hl-ingredient-card p {
  color: #555;
  font-size: .95rem;
  line-height: 1.7;
}

/* Comparison */
.hl-comparison {
  padding: 5rem 0;
  background: var(--off-white);
}

.hl-compare-card {
  display: flex;
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hl-compare-col {
  flex: 1;
  padding: 2.5rem 2rem;
}

.hl-compare-col h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
}

.hl-compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hl-compare-col li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.hl-compare-col li::before {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.hl-compare-good {
  background: linear-gradient(180deg, #F0FFF0, #E8FFF0);
}

.hl-compare-good h3 { color: #1a8a4a; }

.hl-compare-good li::before {
  content: '\2713';
  color: #1a8a4a;
  font-weight: 800;
}

.hl-compare-good li { color: #2a6b3f; }

.hl-compare-bad {
  background: linear-gradient(180deg, #FFF0F0, #FFE8E8);
}

.hl-compare-bad h3 { color: #C0392B; }

.hl-compare-bad li::before {
  content: '\2717';
  color: #C0392B;
  font-weight: 800;
}

.hl-compare-bad li { color: #8B3A3A; }

.hl-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  padding: 0 1.5rem;
}

.hl-compare-divider span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255,215,0,.4);
}

/* CTA */
.hl-cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hl-cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, #4A0080 50%, var(--pink) 100%);
  background-size: 200% 200%;
  animation: heroGradient 8s ease infinite;
}

.hl-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.hl-cta-sub {
  margin-top: 1.2rem;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  .drink-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Below full desktop: compact the call button to icon-only so the 8 links
   never overflow or wrap */
@media (max-width: 1499px) {
  .nav-cta { padding: .5rem .7rem; }
  .nav-cta-text { display: none; }
}

/* Hamburger menu — kicks in earlier than typical because 8 links + logo + call
   button won't fit a mid-width viewport on one row */
@media (max-width: 1249px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--purple);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.75rem 2rem;
    gap: .35rem;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 1.05rem;
    padding: .85rem .25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
  }

  /* In the vertical mobile menu, use a clean text-accent indicator (no underline bar) */
  .nav-links a::after { display: none; }
  .nav-links a:hover,
  .nav-links a.active { color: var(--pink); }

  .nav-toggle { display: flex; }
}

/* Mobile */
@media (max-width: 768px) {
  .hl-hero { min-height: 100svh; }

  .hl-compare-card {
    flex-direction: column;
  }

  .hl-compare-divider {
    padding: 1rem 0;
  }

  .hero { min-height: 100svh; }
  .hero-cup { display: none; }

  .info-bar-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-masonry { columns: 2; }

  .drink-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-meta-item { font-size: .8rem; }
}

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: .75rem 1.5rem;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Focus Styles (Accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

/* ---------- Footer Grid (restructured) ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-info {
  margin-top: 1rem;
}

.footer-info p {
  margin-bottom: .4rem;
  font-size: .9rem;
  line-height: 1.7;
}

.footer-col .footer-links {
  flex-direction: column;
  gap: .5rem;
}

.footer-memorial {
  text-align: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
}

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--pink);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
}

.footer-ig-link:hover {
  color: var(--white);
}

/* ---------- Instagram Section ---------- */
.instagram-section {
  padding: 5rem 0;
  background: var(--white);
}

.instagram-section h2 {
  color: var(--purple);
  margin-bottom: .5rem;
}

.instagram-section h2 a {
  color: var(--pink);
  transition: var(--transition);
}

.instagram-section h2 a:hover {
  color: var(--orange);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 700px;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.insta-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.insta-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
}

/* ---------- 404 Page ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.error-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  background-size: 300% 300%;
  animation: heroGradient 12s ease infinite;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,31,142,.5);
  margin-bottom: 1rem;
}

.error-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.error-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ---------- Responsive addenda ---------- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col .footer-links {
    align-items: center;
  }

  .footer-ig-link {
    justify-content: center;
  }

  .contact-info-card,
  .contact-form {
    padding: 1.5rem;
  }

  .page-header {
    padding: 8rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Navbar Right Group + Call-to-Order CTA ---------- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--pink), #FF6BB5);
  color: var(--white);
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(255,31,142,.4);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255,31,142,.6);
  color: var(--white);
}

/* ---------- Hero Call-Ahead Subtext ---------- */
/* Call-ahead callout: dark contrasting pill so the text reads cleanly over the bright hero gradient */
.hero-call-sub {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  background: rgba(13,0,30,.55);
  border: 1.5px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-call-sub a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-call-sub a:hover {
  color: var(--white);
}

/* Hero meta strip — address + live open status above the fold */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .6rem 1.2rem;
  margin-top: 1.5rem;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  font-size: .9rem;
  text-shadow: 0 1px 5px rgba(0,0,0,.45);
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

a.hero-meta-item:hover {
  color: var(--yellow);
}

/* ---------- Open Now / Closed Live Badge ---------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .7rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  vertical-align: middle;
}

.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.status-badge.is-open {
  background: #1FAA59;
  color: #fff;
}

.status-badge.is-open::before {
  animation: statusPulse 2s ease-in-out infinite;
}

.status-badge.is-closed {
  background: #C0392B;
  color: #fff;
}

/* Hidden until JavaScript resolves the real status — avoids an empty pill flash. */
.status-badge.is-loading {
  display: none;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* ---------- Contact Page: Call / Directions Buttons + Links ---------- */
.contact-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.contact-action-btn {
  flex: 1 1 160px;
  justify-content: center;
}

.contact-link {
  color: inherit;
  font-weight: 700;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--pink);
}

.footer-link {
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--pink);
}

/* ---------- Mobile (≤768px) tweaks for new components ---------- */
@media (max-width: 768px) {
  .nav-right {
    gap: .75rem;
  }
}

/* ---------- Reviews Section (Google Reviews via Elfsight) ---------- */
.reviews-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,31,142,.20) 0%, transparent 45%),
    radial-gradient(circle at 82% 72%, rgba(0,212,212,.16) 0%, transparent 45%),
    linear-gradient(135deg, var(--purple), #3A0068);
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-title {
  margin-bottom: .5rem;
}

.reviews-sub {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.reviews-widget {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- Instagram Feed (Behold.so ready) ---------- */
.ig-handle {
  color: var(--pink);
  /* Neon accent that still reads on the white section background */
  text-shadow: 0 0 14px rgba(255,31,142,.5), 0 0 28px rgba(255,31,142,.22);
}

.ig-handle:hover {
  color: var(--orange);
}

.ig-sub {
  color: #666;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.insta-feed {
  max-width: 700px;
  margin: 2.5rem auto;
}

/* When the real Behold widget loads, let it size itself within the container */
.insta-feed behold-widget {
  display: block;
  width: 100%;
}

/* The grid already sets its own margin; avoid doubling it inside .insta-feed */
.insta-feed .insta-grid {
  margin: 0 auto;
}

/* Fallback tiles: brand-gradient square + Instagram glyph + "Coming soon" */
.insta-placeholder {
  flex-direction: column;
  gap: .5rem;
}

.insta-placeholder svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
  opacity: .95;
}

.insta-placeholder span {
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.ig-follow-btn {
  margin-top: .5rem;
}

/* Responsive: 3 columns desktop, 2 on tablet, 2 on mobile */
@media (max-width: 992px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Confetti Canvas ---------- */
.gv-confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3000;
}

/* ---------- Drink of the Day Spinner ---------- */
.dotd-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}

.dotd-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, #4A0080 50%, var(--pink) 100%);
  background-size: 200% 200%;
  animation: heroGradient 10s ease infinite;
}

.dotd-card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.dotd-title {
  color: var(--white);
  margin-bottom: .6rem;
}

.dotd-sub {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Category picker */
.dotd-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.8rem;
}

.dotd-cat {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  padding: .5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.dotd-cat:hover {
  background: rgba(255,255,255,.2);
}

.dotd-cat.is-active {
  background: linear-gradient(135deg, var(--pink), #FF6BB5);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,31,142,.4);
}

.dotd-display {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  margin-bottom: 1.8rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.dotd-emoji {
  font-size: 2.6rem;
  display: block;
  margin-bottom: .5rem;
}

.dotd-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: 2px;
  color: var(--white);
  display: block;
  line-height: 1.1;
}

.dotd-ingredients {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .95rem;
  margin-top: .9rem;
  opacity: 0;
  transition: opacity .4s ease;
}

.dotd-topper {
  display: inline-block;
  margin-top: .9rem;
  padding: .35rem 1rem;
  border-radius: 50px;
  background: var(--yellow);
  color: var(--purple);
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity .4s ease;
}

.dotd-display.is-revealed .dotd-ingredients,
.dotd-display.is-revealed .dotd-topper {
  opacity: 1;
}

.dotd-display.is-revealed {
  animation: dotdPop .45s cubic-bezier(.2,.9,.3,1.4);
}

@keyframes dotdPop {
  0%   { transform: scale(.85); }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.dotd-display.is-spinning .dotd-name {
  animation: dotdFlash .25s linear infinite;
}

@keyframes dotdFlash {
  0%, 100% { opacity: 1; }
  50%      { opacity: .45; }
}

/* Brand-color accent on the landed drink */
.dotd-display.drink-teal    { border-color: var(--teal);   box-shadow: 0 0 40px rgba(0,212,212,.35); }
.dotd-display.drink-orange  { border-color: var(--orange); box-shadow: 0 0 40px rgba(255,107,0,.35); }
.dotd-display.drink-blue    { border-color: #3A8CF0;       box-shadow: 0 0 40px rgba(30,96,208,.35); }
.dotd-display.drink-red     { border-color: #C41030;       box-shadow: 0 0 40px rgba(139,0,0,.35); }
.dotd-display.drink-yellow  { border-color: var(--yellow); box-shadow: 0 0 40px rgba(255,215,0,.35); }
.dotd-display.drink-patriot { border-color: var(--white);  box-shadow: 0 0 40px rgba(178,34,52,.35); }

.dotd-spin {
  font-size: 1.05rem;
}

@media (prefers-reduced-motion: reduce) {
  .dotd-bg,
  .dotd-display.is-revealed,
  .dotd-display.is-spinning .dotd-name {
    animation: none !important;
  }
}

/* ---------- Drink Quiz — "Find Your Vibe" ---------- */
.quiz-section {
  padding: 5rem 0;
  background: var(--off-white);
  text-align: center;
}

.quiz-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.8rem 2rem;
}

.quiz-title {
  margin: .2rem 0 .5rem;
}

.quiz-sub {
  color: #555;
  font-weight: 600;
  margin-bottom: 2rem;
}

.quiz-progress {
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: .6rem;
}

.quiz-q-text {
  font-family: var(--font-heading);
  color: var(--purple);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple);
  background: #FAF6FF;
  border: 2px solid #E8E0F0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: var(--transition);
}

.quiz-option:hover,
.quiz-option:focus-visible {
  border-color: var(--pink);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,31,142,.15);
  outline: none;
}

.quiz-option-emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Result */
.quiz-result-label {
  font-weight: 700;
  color: #666;
  letter-spacing: .5px;
}

.quiz-result-emoji {
  display: block;
  font-size: 3.2rem;
  margin: .4rem 0 .2rem;
  animation: dotdPop .5s cubic-bezier(.2,.9,.3,1.4);
}

.quiz-result-name {
  font-family: var(--font-heading);
  color: var(--pink);
  font-size: clamp(2rem, 6vw, 2.8rem);
  letter-spacing: 1px;
  margin: 0 0 .3rem;
}

.quiz-result-cat {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  font-size: .78rem;
  color: var(--teal);
  margin-bottom: .8rem;
}

.quiz-result-ing {
  color: #444;
  font-weight: 600;
  line-height: 1.5;
  max-width: 460px;
  margin: 0 auto 1rem;
}

.quiz-result-cta {
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

@media (max-width: 600px) {
  .quiz-card {
    padding: 2rem 1.3rem;
  }
  .quiz-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-result-emoji { animation: none !important; }
}

/* ---------- Print Stylesheet ---------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar,
  .nav-toggle,
  .hero,
  .hero-gradient,
  .hero-overlay,
  .hl-hero,
  .hl-hero-gradient,
  .hl-hero-overlay,
  .hl-cta-gradient,
  .bubbles,
  .hero-cup,
  .hibiscus-accent,
  .tropical-divider,
  .lightbox,
  .skip-link,
  .footer-social,
  .instagram-section,
  .reviews-section,
  .dotd-section,
  .gv-confetti-canvas,
  .vibe-ticker,
  .signup-section,
  .btn {
    display: none !important;
  }

  .page-header {
    padding: 2rem 0;
    min-height: 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .drink-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .drink-card {
    break-inside: avoid;
    border: 1px solid #ccc;
  }

  .drink-card-header {
    border-bottom: 2px solid #000;
    padding: 1rem;
  }

  .drink-card-header h3 {
    font-size: 1.2rem;
  }

  .drink-card-body {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    break-inside: avoid;
    border: 1px solid #ccc;
    padding: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    display: none;
  }

  .footer {
    border-top: 2px solid #000;
    padding: 1rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: .8em;
    font-weight: normal;
  }

  .nav-links a::after,
  .footer-links a::after,
  .footer-ig-link::after {
    content: none;
  }
}

/* ---------- Visually Hidden (Accessibility utility) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Menu Page: This Month's Drinks (HTML text menu) ---------- */
.menu-text {
  margin-bottom: 4rem;
}

.menu-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.menu-text-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--teal);
}

.menu-cat-teal   { border-top-color: var(--teal); }
.menu-cat-pink   { border-top-color: var(--pink); }
.menu-cat-orange { border-top-color: var(--orange); }
.menu-cat-blue   { border-top-color: #1E60D0; }

.menu-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-cat-header h3 {
  color: var(--purple);
  letter-spacing: 1.5px;
}

.menu-cat-price {
  padding: .35rem 1rem;
  border-radius: 50px;
  background: var(--yellow);
  color: var(--purple);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .5px;
  white-space: nowrap;
}

.menu-cat-facts {
  margin-top: .4rem;
  color: #777;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.menu-text-list {
  margin-top: 1.2rem;
}

.menu-text-drink {
  padding: .8rem 0;
  border-bottom: 1px dashed #E4DCEE;
}

.menu-text-drink:last-child { border-bottom: none; padding-bottom: 0; }

.menu-text-drink .drink-name {
  display: block;
  font-weight: 800;
  color: var(--purple);
  font-size: 1.02rem;
}

.menu-text-drink .drink-ing {
  display: block;
  color: #666;
  font-size: .88rem;
  line-height: 1.55;
  margin-top: .15rem;
}

/* ---------- Events Page ---------- */
.events-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.events-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.event-image {
  min-height: 240px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-body {
  padding: 2.2rem 2rem;
}

.event-title {
  color: var(--purple);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.2rem;
}

.event-meta li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: #555;
  font-weight: 700;
  font-size: .92rem;
}

.event-meta svg {
  width: 18px;
  height: 18px;
  fill: var(--pink);
  flex-shrink: 0;
  margin-top: .15rem;
}

.event-desc {
  color: #555;
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.events-empty {
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.events-host-sub {
  color: #555;
  font-weight: 600;
  font-size: 1.05rem;
  margin: .6rem 0 1.5rem;
}

@media (max-width: 768px) {
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-image {
    min-height: 220px;
    max-height: 320px;
  }
}

/* ---------- Rewards Page ---------- */
.rewards-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.rewards-intro {
  max-width: 720px;
  margin: 0 auto 1rem;
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
}

.rewards-details {
  max-width: 640px;
  margin: 3rem auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--yellow);
}

.rewards-details h2,
.rewards-details h3 {
  color: var(--purple);
  margin-bottom: .8rem;
}

.rewards-details p {
  color: #555;
  margin-bottom: 1rem;
}

.rewards-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1rem;
}

.rewards-details li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: #444;
  font-weight: 600;
}

.rewards-details li::before {
  content: '\2B50';
  flex-shrink: 0;
  font-size: .95rem;
}

.rewards-fine-print {
  text-align: center;
  color: #888;
  font-size: .85rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ---------- Email Signup (Vibe Tribe) ---------- */
.signup-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}

.signup-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, #4A0080 45%, var(--pink) 100%);
  background-size: 200% 200%;
  animation: heroGradient 10s ease infinite;
}

.signup-section .container {
  position: relative;
  z-index: 1;
}

.signup-heading {
  color: var(--white);
  margin-bottom: .6rem;
}

.signup-sub {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.signup-form {
  max-width: 620px;
  margin: 0 auto;
}

.signup-fields {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.signup-fields input {
  flex: 1 1 180px;
  padding: .85rem 1.2rem;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.signup-fields input::placeholder {
  color: rgba(255,255,255,.6);
}

.signup-fields input:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 3px rgba(255,31,142,.25);
}

/* ---------- Form status message (signup + contact) ---------- */
.form-status {
  min-height: 1.4rem;
  margin-top: 1rem;
  font-weight: 800;
  font-size: .95rem;
}

.form-status.is-success { color: var(--teal); }
.form-status.is-error { color: #FF8A8A; }

/* On the white contact card, use darker status colors for contrast */
.contact-form .form-status.is-success { color: #00A0A0; }
.contact-form .form-status.is-error { color: #C0392B; }

@media (prefers-reduced-motion: reduce) {
  .signup-bg { animation: none !important; }
}

/* ============================================
   GRAPHIC ENRICHMENT — cups, bubbles, texture
   ============================================ */

/* ---------- Hero: floating illustrated loaded-tea cups ---------- */
.hero-drink {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(10,0,30,.35));
}

.hero-drink-left {
  width: clamp(120px, 13vw, 190px);
  left: 6%;
  bottom: 7%;
  transform: rotate(-8deg);
  animation: cupBobA 6s ease-in-out infinite;
}

.hero-drink-right {
  width: clamp(140px, 15vw, 220px);
  right: 5%;
  bottom: 12%;
  transform: rotate(7deg);
  animation: cupBobB 7s ease-in-out infinite;
}

@keyframes cupBobA {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-16px); }
}

@keyframes cupBobB {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-20px); }
}

/* Keep the hero text unobstructed on narrow screens */
@media (max-width: 900px) {
  .hero-drink { display: none; }
}

/* ---------- Vibe Ticker (scrolling drink names) ---------- */
.vibe-ticker {
  background: var(--purple);
  overflow: hidden;
  padding: .7rem 0;
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
}

.vibe-ticker-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: vibeTicker 30s linear infinite;
}

.tick-word {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-right: 1.4rem;
}

.tick-word.tick-alt { color: var(--yellow); }

.tick-dot {
  font-size: 1rem;
  margin-right: 1.4rem;
}

@keyframes vibeTicker {
  to { transform: translateX(-50%); }
}

.vibe-ticker:hover .vibe-ticker-track { animation-play-state: paused; }

/* ---------- Bubble-dot texture on light sections ---------- */
.features,
.menu-section,
.gallery-section,
.contact-section,
.events-section,
.rewards-section,
.team-section,
.hl-intro,
.hl-comparison {
  background-image:
    radial-gradient(circle, rgba(255,31,142,.055) 2.4px, transparent 3px),
    radial-gradient(circle, rgba(0,212,212,.05) 2px, transparent 2.6px);
  background-size: 46px 46px, 34px 34px;
  background-position: 0 0, 17px 23px;
}

/* ---------- Feature icons: gradient bubble-blobs ---------- */
.feature-icon {
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  border: 2.5px solid rgba(255,31,142,.25);
  transition: var(--transition);
}

.feature-card:nth-child(2) .feature-icon {
  border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%;
  border-color: rgba(0,212,212,.3);
}

.feature-card:nth-child(3) .feature-icon {
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  border-color: rgba(255,215,0,.4);
}

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, rgba(255,31,142,.22), rgba(255,107,0,.22)); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, rgba(0,212,212,.22), rgba(0,168,168,.22)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, rgba(255,215,0,.24), rgba(255,107,0,.22)); }

.feature-card:hover .feature-icon {
  transform: rotate(-6deg) scale(1.08);
}

/* ---------- Drink cards: cup silhouette watermark ---------- */
.drink-card-header::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 8px;
  bottom: 8px;
  width: 46px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 104"><path fill="white" d="M40 2 L50 5 L43 28 L35 26 Z"/><path fill="white" d="M10 26 L52 26 L47 92 Q46.5 99 39 99 L23 99 Q15.5 99 15 92 Z"/></svg>') no-repeat center / contain;
  opacity: .2;
  pointer-events: none;
}

/* Give the ingredients list breathing room next to the watermark */
.drink-card-header h3 { padding-right: 52px; }

/* ---------- Calm everything for reduced-motion users ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-drink,
  .vibe-ticker-track,
  .tropical-divider,
  .feature-card:hover .feature-icon,
  .hero--tea-pour .hero-gradient,
  .tea-pour-flow::before,
  .ice-cube {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   MOBILE DENSITY PASS  (phones only — desktop is untouched)
   One consolidated block, loaded last so it wins over earlier
   mobile rules by source order. Goal: less scroll, key info fast.
   ============================================================ */
@media (max-width: 600px) {
  /* Hero: fills the visible phone screen. svh (not vh) measures the viewport
     with the browser's address bar showing, so the bottom never sits off-screen
     on iOS. Top padding clears the fixed nav; the flex centering on .hero then
     balances the content in what's left. */
  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 1.25rem) 1rem 2rem;
  }

  /* Herbalife page hero keeps its existing compact treatment. */
  .hl-hero {
    min-height: auto;
    padding: 5rem 1rem 2.25rem;
  }
  .hl-hero-sub { margin-bottom: 1.35rem; }

  /* gap owns the vertical rhythm here, so the stacked desktop margins are
     cleared to keep the spacing even. Scales with the screen: tight on a small
     phone, airier on a tall one. */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: clamp(1rem, 3.2svh, 1.9rem);
  }
  .hero-content > * { margin: 0; }

  .hero-tagline {
    font-size: clamp(1.4rem, 6.3vw, 6rem);
    /* Tame the teal bloom around the small-screen tagline (see neonPulseMobile) */
    animation-name: neonPulseMobile;
    text-shadow:
      0 0 6px var(--pink),
      0 0 14px var(--pink),
      0 0 26px rgba(255,31,142,.65),
      0 0 38px rgba(0,212,212,.28);
  }
  .hero-meta { gap: .55rem .9rem; }
  .hero-meta-item { font-size: .82rem; }

  /* Halve the generous desktop section padding */
  .features,
  .team-section,
  .reviews-section,
  .instagram-section,
  .signup-section,
  .quiz-section,
  .dotd-section,
  .menu-section,
  .about-section,
  .gallery-section,
  .contact-section,
  .events-section,
  .popup-section,
  .rewards-section,
  .hl-intro,
  .hl-comparison,
  .hl-cta,
  .hl-ingredients {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .team-section { padding-bottom: 0; }

  /* Page headers: trim the big top offset under the fixed nav */
  .page-header { padding: 5.5rem 0 2rem; }
  .page-header h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .page-header p { font-size: 1rem; }

  /* Shrink oversized headings + tighten heading rhythm */
  h2 { font-size: clamp(1.65rem, 6.8vw, 2.15rem); }
  .section-subtitle { margin-bottom: .15rem; }

  /* Marquee: slimmer */
  .vibe-ticker { padding: .5rem 0; }

  /* Features: compact single-column cards instead of 3 tall blocks */
  .features-grid { gap: 1rem; margin-top: 1.75rem; }
  .feature-card { padding: 1.5rem 1.35rem; }
  .feature-icon { width: 54px; height: 54px; margin-bottom: .7rem; font-size: 1.6rem; }
  .feature-card h3 { margin-bottom: .45rem; }

  /* Crew: denser grid + more compact cards (15 cards = a lot of rows) */
  .crew-grid { gap: .9rem; margin-top: 1.5rem; }
  .crew-card { padding: 1.15rem .8rem; border-radius: 16px; }
  .crew-photo { width: 72px; height: 72px; margin-bottom: .7rem; }
  .crew-name { font-size: 1.05rem; margin-bottom: .3rem; }
  .crew-fav, .crew-fav-empty { font-size: .85rem; }
  .crew-fav-label { font-size: .62rem; }

  /* Cap tall images (Sherry portrait was ~447px; community + team photos long) */
  .about-photo { aspect-ratio: auto; min-height: 0; height: 300px; }
  .about-community-photo { padding: 1.25rem 1rem; }
  .about-community-photo img { max-height: 300px; }
  .team-photo-wrap img { max-height: 300px; object-fit: cover; }

  /* Gallery: keep 2 columns on phones (denser — roughly half the scroll) */
  .gallery-masonry { columns: 2; column-gap: .8rem; }
  .gallery-item { margin-bottom: .8rem; }

  /* Spinner + quiz cards a touch tighter */
  .dotd-card, .quiz-card { padding: 1.75rem 1.25rem; }
}
