/* ============================================================
   THE SPOT NASHUA — Global Styles
   ============================================================ */

/* Norwester — self-hosted */
@font-face {
  font-family: 'Norwester';
  src: url('../fonts/norwester.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS Variables / Design Tokens
   ============================================================ */
:root {
  --silver-primary: #C0C0C0;
  --silver-dark: #A8A8A8;
  --silver-link: #E8E8E8;
  --dark-deep: #0a0a0a;
  --black: #000000;
  --dark-bg: #212121;
  --dark-mid: #2B2B2B;
  --text-body: #444444;
  --text-heading: #1a1a1a;
  --white: #FFFFFF;

  --border-light: rgba(255,255,255,0.3);
  --maroon: #800020;
  --maroon-light: #9B2335;
  --red-accent: #B22234;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ============================================================
   Image Utility Classes
   ============================================================ */
.menu-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

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

.blob-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.team-photo {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 20px;
}

.insta-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.menu-card-header-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ============================================================
   Typography Helpers
   ============================================================ */
.font-norwester { font-family: 'Norwester', Helvetica, Arial, sans-serif; }
.font-script    { font-family: 'Arizonia', cursive; }
.font-roboto    { font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif; }

.text-teal     { color: var(--maroon); }
.text-accent   { color: var(--maroon); }
.text-dark     { color: var(--text-heading); }
.text-body-c   { color: var(--text-body); }
.text-white    { color: var(--white); }
.text-upper    { text-transform: uppercase; }
.text-center   { text-align: center; }

.outline-text {
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 40px 0;
}

/* ============================================================
   Wave Dividers
   ============================================================ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.05em;
}

.btn-teal {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-teal:hover {
  background: var(--maroon-light);
  border-color: var(--maroon-light);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--text-heading);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-teal {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline-teal:hover {
  background: var(--maroon);
  color: var(--white);
}

/* ============================================================
   Section Label (dual heading: teal Norwester caps)
   ============================================================ */
.section-label {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 9px;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Maroon gradient pill behind logo text for readability */
.logo-text-block {
  background: linear-gradient(135deg, rgba(128,0,32,0.08) 0%, rgba(155,35,53,0.06) 100%);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-out nav */
.nav-overlay {
  position: fixed;
  top: 70px; right: -320px;
  width: 300px;
  height: calc(100vh - 70px);
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 999;
  transition: right 0.35s ease;
  overflow-y: auto;
  padding: 20px 0;
}

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

.nav-overlay ul { padding: 0 20px; }

.nav-overlay ul li { border-bottom: 1px solid #eee; }

.nav-overlay ul li a {
  display: block;
  padding: 14px 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}

.nav-overlay ul li a:hover { color: var(--maroon); }

.nav-overlay .nav-dropdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.nav-overlay .nav-dropdown-label:hover { color: var(--maroon); }

.nav-overlay .nav-sub {
  padding: 0 0 0 20px;
  display: none;
  background: #f9f9f9;
}

.nav-overlay .nav-sub.open { display: block; }

.nav-overlay .nav-sub li { border-bottom: 1px solid #eee; }

.nav-overlay .nav-sub li a {
  font-size: 15px;
  padding: 10px 10px;
}

.nav-wholesale-btn {
  margin: 20px;
}

.nav-overlay-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}

.nav-overlay-backdrop.open { display: block; }

/* Nav close button */
.nav-overlay-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--text-heading);
  cursor: pointer;
  border: none;
  background: none;
  z-index: 10;
}
.nav-overlay-close:hover { color: var(--maroon); }

/* Page push-down */
.page-wrap { padding-top: 70px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-top {
  background: var(--white);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-logo-teal .logo-main { color: var(--text-heading); }
.footer-logo-teal .logo-sub  { color: var(--text-body); }

.footer-logo-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-logo-lg .logo-icon { width: 60px; height: 60px; }
.footer-logo-lg .logo-main { font-size: 28px; }
.footer-logo-lg .logo-sub  { font-size: 11px; }

.footer-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
  margin-top: 20px;
}

.footer-col h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-body);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--maroon); }

/* Footer dark */
.footer-dark {
  background: var(--dark-bg);
  padding: 50px 0 30px;
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

.footer-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,192,192,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(192,192,192,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer-signup {
  text-align: center;
  margin-bottom: 40px;
}

.footer-signup h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.footer-email-form input {
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  outline: none;
}

.footer-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-dark-col h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.footer-dark-col ul li { margin-bottom: 6px; }
.footer-dark-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-dark-col ul li a:hover { color: var(--silver-primary); }

.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 20px 0; }

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

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover { transform: scale(1.1); opacity: 0.9; }
.social-tiktok   { background: #FE2C55; }
.social-linkedin { background: #0077B6; }
.social-instagram{ background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-twitter  { background: #222222; }
.social-facebook { background: #3B5998; }

/* ============================================================
   SVG Logo component (inline leaf icon)
   ============================================================ */
/* Used via inline SVG in HTML */

/* ============================================================
   Marquee Strip
   ============================================================ */
.marquee-strip {
  background: var(--dark-deep);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HOME — Hero Slider
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active { opacity: 1; z-index: 2; }

/* Layered background */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #0a0a0a 0%,
    #111111 40%,
    #1a1a1a 70%,
    #2d2d2d 100%);
}

/* Slide 1 — dark gradient with silver shimmer */
.hero-slide-1 .hero-bg-layer {
  background: linear-gradient(180deg,
    #2d2d2d 0%,
    #3a3a3a 30%,
    #2d2d2d 60%,
    #1a1a1a 80%,
    #0a0a0a 100%);
}

.hero-slide-2 .hero-bg-layer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #2d2d2d 100%);
}

.hero-slide-3 .hero-bg-layer {
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);
}

/* Floor layer */
.hero-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(160, 120, 80, 0.5) 40%, rgba(140, 100, 60, 0.8) 100%);
}

/* Decorative kava leaf shapes */
.hero-leaf {
  position: absolute;
  opacity: 0.4;
  pointer-events: none;
}

.hero-leaf-1 {
  top: 10%; right: 8%;
  width: 120px;
  transform: rotate(20deg);
}

.hero-leaf-2 {
  bottom: 25%; left: 5%;
  width: 90px;
  transform: rotate(-30deg);
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.hero-bula {
  font-family: 'Arizonia', cursive;
  font-size: clamp(50px, 7vw, 80px);
  color: var(--white);
  display: block;
  margin-bottom: -10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-welcome {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(60px, 12vw, 160px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.9);
  display: block;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-tribe {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(50px, 9vw, 120px);
  color: var(--white);
  display: block;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.hero-badge {
  display: inline-block;
  background: var(--silver-primary);
  color: var(--dark-deep);
  padding: 6px 22px;
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 16px 0;
}

.hero-drink-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.25s;
  background: transparent;
  cursor: pointer;
}

.hero-drink-btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow-prev { left: 20px; }
.slider-arrow-next { right: 20px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 20;
  display: flex; gap: 10px;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.slider-dot.active { background: var(--white); }

/* Bottom wave on hero */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 15;
  line-height: 0;
}

.hero-wave svg { display: block; width: 100%; }

/* Decorative drink images inside hero */
.hero-drink-img {
  position: absolute;
  bottom: 8%;
  z-index: 8;
  pointer-events: none;
}

.hero-drink-center {
  left: 50%; transform: translateX(-50%);
  width: clamp(200px, 25vw, 340px);
  bottom: 5%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ============================================================
   HOME — Our Mission
   ============================================================ */
.mission-section {
  padding: 80px 0;
  text-align: center;
}

.mission-label {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: var(--silver-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.typing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.typing-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.typing-prefix {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--black);
  text-transform: uppercase;
}

.typing-word {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--silver-link);
  text-transform: uppercase;
  min-width: 240px;
  text-align: left;
}

.typing-cursor {
  display: inline-block;
  border-right: 3px solid var(--silver-link);
  animation: blink 0.7s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.mission-body {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
}

.mission-body strong { font-weight: 700; color: var(--text-heading); }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG icon circles */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.icon-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-heading);
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   HOME — Good Vibes Section
   ============================================================ */
.good-vibes {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}

.good-vibes-outline {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  color: transparent;
  -webkit-text-stroke: 2px var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.blob-image-wrap {
  position: relative;
  display: inline-block;
  margin: 30px auto;
}

.blob-outline {
  position: absolute;
  inset: -12px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  border: 3px solid var(--silver-primary);
  z-index: 0;
}

.blob-img {
  position: relative;
  z-index: 1;
  width: clamp(260px, 38vw, 480px);
  height: clamp(260px, 38vw, 480px);
  object-fit: cover;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
}

.blob-placeholder {
  position: relative;
  z-index: 1;
  width: clamp(260px, 38vw, 480px);
  height: clamp(260px, 38vw, 480px);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: linear-gradient(135deg, #8a8a8a 0%, #C0C0C0 50%, #E8E8E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blob-placeholder-inner {
  text-align: center;
  color: var(--dark-deep);
}

.blob-placeholder-inner svg { width: 80px; height: 80px; opacity: 0.5; }
.blob-placeholder-inner p {
  font-family: 'Norwester', sans-serif;
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.7;
}

.good-vibes-text {
  max-width: 760px;
  margin: 24px auto 0;
}

.good-vibes-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================
   HOME — Botanicals / Elixirs (Teal bg)
   ============================================================ */
.teal-section {
  background: var(--silver-primary);
  position: relative;
}

.botanicals-label {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--text-heading);
  text-align: center;
}

.botanicals-body {
  max-width: 800px;
  margin: 16px auto 30px;
  text-align: center;
  font-size: 18px;
  color: var(--dark-deep);
}

.elixirs-heading {
  text-align: center;
  margin-bottom: 14px;
}

.elixirs-script {
  font-family: 'Arizonia', cursive;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--text-heading);
  display: inline;
}

.elixirs-outline {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: transparent;
  -webkit-text-stroke: 2px var(--text-heading);
  display: inline;
  margin-left: 8px;
}

.elixirs-sub {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 27px;
  color: var(--dark-deep);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

.elixir-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.elixir-card {
  background: rgba(255,255,255,0.55);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.2s;
}

.elixir-card:hover { transform: translateY(-4px); }

.elixir-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.elixir-name {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 30px;
  color: var(--text-heading);
  text-transform: uppercase;
}

.elixir-benefit {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: var(--text-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.elixir-desc {
  font-size: 14px;
  color: var(--dark-deep);
  line-height: 1.6;
}

.elixir-desc strong { font-weight: 700; }

/* ============================================================
   HOME — Drink Love Gallery
   ============================================================ */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-heading-script {
  font-family: 'Arizonia', cursive;
  font-size: clamp(50px, 7vw, 80px);
  color: var(--silver-link);
  line-height: 1;
}

.gallery-heading-solid {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--text-heading);
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-cell {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2d2d2d, #C0C0C0);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-cell.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-cell-placeholder {
  color: var(--dark-deep);
  text-align: center;
  padding: 20px;
}

.gallery-cell-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.gallery-cell-placeholder p {
  font-family: 'Norwester', sans-serif;
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.6;
}

/* ============================================================
   HOME — Locations Map Section
   ============================================================ */
.locations-section {
  padding: 80px 0;
  background: var(--white);
}

.find-heading-outline {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: transparent;
  -webkit-text-stroke: 2px var(--text-heading);
  text-transform: uppercase;
  line-height: 1;
}

.find-heading-solid {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text-heading);
  text-transform: uppercase;
  line-height: 1;
}

.us-map-wrap {
  max-width: 900px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* SVG US Map */
.us-map path { fill: #cccccc; stroke: #fff; stroke-width: 1; transition: fill 0.2s; }
.us-map path.active-state { fill: var(--silver-primary); }
.us-map path:hover { fill: var(--silver-dark); cursor: pointer; }

/* ============================================================
   HOME — Instagram Section
   ============================================================ */
.instagram-section {
  background: var(--silver-primary);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.instagram-heading-outline {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: transparent;
  -webkit-text-stroke: 2px var(--text-heading);
  text-transform: uppercase;
}

.instagram-heading-solid {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-heading);
  text-transform: uppercase;
}

.instagram-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.insta-photo {
  width: clamp(160px, 22vw, 280px);
  height: clamp(160px, 22vw, 280px);
  border-radius: 8px;
  background: linear-gradient(135deg, #8a8a8a, #E8E8E8);
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-deep);
  font-family: 'Norwester', sans-serif;
  font-size: 13px;
  text-align: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.insta-photo:nth-child(2) {
  transform: rotate(-3deg) translateY(-10px);
  z-index: 2;
}

.insta-photo:hover { transform: scale(1.04) rotate(0deg) !important; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #2d2d2d 100%);
  z-index: 0;
}

/* Simulated bar interior */
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C0C0C0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.about-hero-script {
  font-family: 'Arizonia', cursive;
  font-size: clamp(60px, 12vw, 150px);
  color: var(--white);
  display: block;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-hero-sub {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 3vw, 30px);
  color: var(--white);
  text-transform: uppercase;
  margin: 8px 0;
}

.about-hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.story-section {
  padding: 80px 0;
  text-align: center;
}

.story-bar {
  width: 50px;
  height: 3px;
  background: var(--maroon);
  margin: 0 auto 16px;
}

.story-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 50px;
  color: var(--text-heading);
  text-transform: uppercase;
}

.story-sub {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: var(--silver-link);
  margin-bottom: 20px;
}

.story-body {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
}

.core-values-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.core-values-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 50px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.core-values-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-blob-card {
  background: var(--white);
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  min-height: 280px;
  justify-content: center;
}

.value-icon { font-size: 50px; }

.value-title {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: var(--text-heading);
  text-transform: uppercase;
}

.value-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.visit-section {
  padding: 80px 0;
  text-align: center;
}

.visit-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  color: var(--silver-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(192,192,192,0.3);
}

.visit-info {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-heading);
  line-height: 1.8;
  margin-bottom: 24px;
}

.visit-social { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.visit-social a {
  font-size: 32px;
  color: var(--black);
  transition: color 0.2s;
}
.visit-social a:hover { color: var(--silver-link); }

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-hero {
  padding: 60px 0 30px;
  text-align: center;
}

.store-locator-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  height: 600px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.locator-sidebar {
  background: var(--white);
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.locator-search-bar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.locator-search-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  outline: none;
}

.locator-search-input:focus { border-color: var(--silver-primary); }

.locator-filter {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  outline: none;
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
}

.locator-list {
  overflow-y: auto;
  flex: 1;
}

.location-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s;
  align-items: flex-start;
}

.location-card:hover { background: #f9f9f9; }

.location-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2d2d2d, #C0C0C0);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.location-info { flex: 1; }

.location-name {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--silver-link);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}

.location-address {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.5;
}

.location-dist {
  font-size: 11px;
  color: var(--silver-link);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.location-view-btn {
  margin-top: 8px;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid var(--silver-link);
  color: var(--silver-link);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.location-view-btn:hover {
  background: var(--silver-link);
  color: var(--white);
}

/* Map placeholder */
.locator-map {
  background: linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder-text {
  font-family: 'Norwester', sans-serif;
  font-size: 18px;
  color: var(--dark-deep);
  opacity: 0.5;
}

/* Fake map pins */
.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--silver-link);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.map-pin::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--white);
  border-radius: 50%;
}

.map-pin:hover { transform: rotate(-45deg) scale(1.3); }

.state-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px 0;
}

.state-tag {
  padding: 8px 20px;
  border: 2px solid var(--silver-primary);
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--silver-link);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.locations-tagline {
  text-align: center;
  font-family: 'Norwester', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ============================================================
   FRANCHISING PAGE
   ============================================================ */
.franchise-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #222222 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.franchise-hero-bg-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Speckled texture */
.franchise-hero-bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.franchise-hero-blob {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.franchise-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.franchise-logo-white .logo-main { color: var(--white); }
.franchise-logo-white .logo-sub  { color: var(--silver-primary); }

.franchise-intro {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.franchise-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.franchise-frames {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.franchise-frame {
  border: 2px solid var(--black);
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2d2d2d 0%, #C0C0C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-deep);
  font-family: 'Norwester', sans-serif;
  font-size: 12px;
  opacity: 0.7;
}

.franchise-frame.tall { grid-row: span 2; aspect-ratio: auto; }

.franchise-intro-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.testimonials-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a2a 0%, #2a5a3a 50%, #1a4a2a 100%);
  z-index: 0;
}

.testimonials-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 24px;
  color: var(--white);
}

.testimonial-stars { color: #FFD700; font-size: 18px; margin-bottom: 12px; }

.testimonial-text {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.testimonial-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--silver-primary);
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.media-logo {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 22px;
  color: var(--text-body);
  opacity: 0.7;
  font-weight: 700;
  transition: opacity 0.2s;
}

.media-logo:hover { opacity: 1; }

.franchise-form-section {
  padding: 80px 0;
  background: var(--white);
}

.franchise-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.franchise-celebration {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5e8d4 0%, #e8cba0 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7060;
  font-family: 'Norwester', sans-serif;
  font-size: 14px;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-header {
  background: var(--silver-primary);
  padding: 60px 0 30px;
  text-align: center;
}

.blog-title {
  font-family: 'Arizonia', cursive;
  font-size: 60px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.blog-list {
  padding: 60px 0;
  background: var(--white);
}

.blog-card {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-card-img {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #1a1a1a, #E8E8E8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: 'Norwester', sans-serif;
  font-size: 14px;
  position: relative;
}

.blog-card-body {
  padding: 30px;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 28px;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.2;
}

.blog-card-excerpt {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 80px 0;
  text-align: center;
}

.contact-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.contact-hq {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 30px;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.contact-address {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: var(--text-body);
  margin-bottom: 40px;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-heading);
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  color: var(--text-heading);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--maroon);
  opacity: 0.5;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--silver-primary); }

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

.map-embed {
  max-width: 680px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  background: linear-gradient(135deg, #2d2d2d, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-deep);
  font-family: 'Norwester', sans-serif;
  font-size: 16px;
  opacity: 0.6;
  border: 1px solid #ddd;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-section {
  padding: 60px 0;
  background: var(--white);
}

.menu-img-block {
  max-width: 960px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2e;
  padding: 40px;
  position: relative;
}

.menu-img-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,50 Q30,10 50,50 Q70,90 90,50' stroke='rgba(192,192,192,0.08)' fill='none' stroke-width='2'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.menu-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.menu-logo-top {
  text-align: center;
  margin-bottom: 30px;
}

.menu-tagline {
  font-family: 'Arizonia', cursive;
  font-size: 40px;
  color: var(--silver-primary);
  text-align: center;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.menu-step-heading {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: var(--silver-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(192,192,192,0.3);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.menu-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-primary);
  flex-shrink: 0;
}

.menu-category {
  margin-bottom: 20px;
}

.menu-cat-title {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--silver-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============================================================
   LIVE MUSIC — Monthly Calendar Grid
   ============================================================ */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  max-width: 1000px;
  margin: 0 auto;
}
.cal-day-header {
  text-align: center;
  font-family: 'Norwester', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 4px;
}
.cal-cell {
  min-height: 110px;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.cal-cell-num {
  font-family: 'Norwester', sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 6px;
}
.cal-cell-empty {
  min-height: 110px;
  border-radius: 8px;
}
.cal-event-tag {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 4px 6px;
  border-radius: 4px;
  margin-top: auto;
}
.cal-event-time {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  margin-top: 2px;
}

/* Dark theme (April) */
.cal-dark .cal-day-header { color: var(--silver-primary); }
.cal-dark .cal-cell { background: rgba(192,192,192,0.04); }
.cal-dark .cal-cell-num { color: rgba(255,255,255,0.3); }
.cal-dark .cal-cell-empty { background: rgba(255,255,255,0.015); }
.cal-dark .cal-cell.has-event {
  background: rgba(192,192,192,0.12);
  border: 1px solid rgba(192,192,192,0.3);
}
.cal-dark .cal-cell.has-event .cal-cell-num { color: var(--silver-primary); }
.cal-dark .cal-event-tag { background: rgba(192,192,192,0.2); color: white; }
.cal-dark .cal-event-time { color: rgba(255,255,255,0.5); }

/* Light theme (May) */
.cal-light .cal-day-header { color: var(--dark-deep); }
.cal-light .cal-cell { background: #f5f5f5; }
.cal-light .cal-cell-num { color: #ccc; }
.cal-light .cal-cell-empty { background: #fafafa; }
.cal-light .cal-cell.has-event {
  background: rgba(232,232,232,0.08);
  border: 1px solid rgba(232,232,232,0.3);
}
.cal-light .cal-cell.has-event .cal-cell-num { color: var(--dark-deep); }
.cal-light .cal-event-tag { background: rgba(232,232,232,0.15); color: var(--dark-deep); }
.cal-light .cal-event-time { color: var(--text-body); }

/* Calendar responsive */
@media (max-width: 700px) {
  .cal-cell, .cal-cell-empty { min-height: 70px; padding: 5px; }
  .cal-cell-num { font-size: 14px; }
  .cal-event-tag { font-size: 9px; padding: 3px 4px; }
  .cal-event-time { font-size: 8px; }
  .cal-day-header { font-size: 10px; padding: 6px 2px; }
}
@media (max-width: 480px) {
  .cal-cell, .cal-cell-empty { min-height: 52px; padding: 3px; }
  .cal-cell-num { font-size: 12px; margin-bottom: 2px; }
  .cal-event-tag { font-size: 7px; padding: 2px 3px; letter-spacing: 0; }
  .cal-event-time { font-size: 7px; }
}

/* ============================================================
   MENU PAGE — Category Cards Layout
   ============================================================ */
.menu-cards-section {
  padding: 60px 0 40px;
  background: #f5f5f5;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.menu-card-header {
  background: var(--dark-deep);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-card-icon {
  font-size: 28px;
  line-height: 1;
}

.menu-card-title {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-card-subtitle {
  width: 100%;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  color: var(--silver-primary);
  letter-spacing: 0.05em;
  margin-top: -4px;
}

.menu-card-body {
  padding: 20px 24px;
}

.menu-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  gap: 12px;
}

.menu-card-row:last-child {
  border-bottom: none;
}

.menu-card-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  color: #333;
  flex: 1;
  min-width: 0;
}

.menu-card-desc {
  font-size: 12px;
  color: #888;
  font-style: italic;
}

.menu-card-price {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--dark-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card-note {
  padding: 14px 24px 20px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  border-top: 1px dashed var(--silver-primary);
  background: rgba(192, 192, 192, 0.06);
}

.menu-cards-footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  font-family: 'Norwester', sans-serif;
  font-size: 13px;
  color: var(--dark-deep);
  letter-spacing: 0.15em;
}

@media (min-width: 1100px) {
  .menu-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
}

@media (max-width: 700px) {
  .menu-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .menu-card-header {
    padding: 16px 20px;
  }

  .menu-card-body {
    padding: 16px 20px;
  }

  .menu-card-note {
    padding: 12px 20px 16px;
  }
}

/* ============================================================
   Desktop Navigation Bar (visible ≥901px, replaces hamburger)
   ============================================================ */
.desktop-nav {
  display: none;
}

@media (min-width: 901px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
  }
  .desktop-nav a {
    font-family: 'Norwester', Helvetica, Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-heading);
    padding: 8px 14px;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .desktop-nav a:hover {
    color: var(--maroon);
  }
  .desktop-nav a.active {
    background: linear-gradient(135deg, rgba(128,0,32,0.12) 0%, rgba(155,35,53,0.08) 100%);
    color: var(--maroon);
    border-radius: 6px;
  }
  .desktop-nav .nav-cta {
    font-size: 11px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--maroon);
    color: var(--white);
    margin-left: 10px;
    font-family: 'Norwester', Helvetica, Arial, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
  }
  .desktop-nav .nav-cta:hover {
    background: var(--maroon-light);
    color: var(--white);
  }
  .desktop-nav .nav-subscribe {
    font-size: 11px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--maroon);
    color: var(--white);
    margin-left: 6px;
    font-family: 'Norwester', Helvetica, Arial, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
  }
  .desktop-nav .nav-subscribe:hover {
    background: var(--maroon-light);
  }
  .hamburger {
    display: none !important;
  }
}

/* ============================================================
   Floating Newsletter CTA Bar (carousel text)
   ============================================================ */
.newsletter-float {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}
.newsletter-float:hover {
  background: linear-gradient(135deg, var(--maroon-light) 0%, var(--maroon) 100%);
}
.newsletter-float-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.newsletter-float-icon {
  width: 20px;
  height: 20px;
  fill: var(--silver-primary);
  flex-shrink: 0;
}
.newsletter-float-text {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4em;
  position: relative;
  min-width: 240px;
}
.newsletter-float-text span {
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.newsletter-float-text span.slide-up {
  transform: translateY(-100%);
  opacity: 0;
}
.newsletter-float-text span.slide-down {
  transform: translateY(100%);
  opacity: 0;
}
.newsletter-float-arrow {
  font-size: 16px;
  color: var(--silver-primary);
  flex-shrink: 0;
  animation: bounce-arrow 1.5s infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Give footer extra bottom padding so floating bar doesn't cover content */
.footer-dark {
  padding-bottom: 70px !important;
}

/* ============================================================
   Newsletter Popup Modal (slide-in from bottom)
   ============================================================ */
.nl-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.nl-popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.nl-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--maroon) 0%, #5a0015 100%);
  padding: 40px 24px 32px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  border-radius: 20px 20px 0 0;
}
.nl-popup.visible {
  transform: translateY(0);
}
.nl-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.nl-popup-close:hover {
  color: var(--white);
}
.nl-popup h3 {
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.nl-popup p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.nl-popup-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 8px;
}
.nl-popup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  outline: none;
}
.nl-popup-form button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: var(--white);
  color: var(--maroon);
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-popup-form button:hover {
  background: #f0f0f0;
}

/* Calendar mini Book a Spot CTA */
.cal-book-cta {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--maroon);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.cal-book-cta:hover {
  background: var(--maroon-light);
}

/* Calendar month navigation */
.cal-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  background: #fff;
}
.cal-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--maroon);
  background: transparent;
  color: var(--maroon);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cal-nav-btn:hover {
  background: var(--maroon);
  color: var(--white);
}
.cal-nav-arrow {
  font-size: 20px;
  line-height: 1;
}

/* Review platform icons row */
.review-cta-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.review-cta-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.review-cta-icon:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .elixir-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-col-grid { grid-template-columns: 1fr; }
  .footer-dark-grid { grid-template-columns: 1fr; }
  .store-locator-wrap { grid-template-columns: 1fr; height: auto; }
  .locator-map { height: 300px; }
  .franchise-intro-grid { grid-template-columns: 1fr; }
  .franchise-form-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell.tall { grid-row: auto; }
  .contact-cards-inner { grid-template-columns: 1fr !important; }
  /* Gallery layout on about page */
  .gallery-section > .container > div { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .section-pad { padding: 40px 0; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .elixir-grid { grid-template-columns: 1fr; }
  .typing-row { flex-direction: column; gap: 10px; }
  .typing-word { min-width: 180px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .insta-photo { width: 200px; height: 200px; }
  .instagram-photos { flex-direction: column; align-items: center; }
  .franchise-frames { grid-template-columns: 1fr !important; }
  .franchise-frame.tall { grid-row: auto !important; }
  .footer-col-grid { gap: 16px; }
  .hero-tribe { letter-spacing: -0.01em; }
}

/* ============================================================
   Print / Accessibility helpers
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .animate-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-slide { transition: none; }
}

/* Focus styles for keyboard nav */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--silver-primary);
  outline-offset: 2px;
}

/* Smooth hover on location cards */
.location-card:hover .location-name { color: var(--silver-primary); }

/* Franchise intro section needs relative positioning */
.franchise-intro { position: relative; overflow: hidden; }

/* ============================================================
   BOOK A SPOT PAGE
   ============================================================ */

/* Hero */
.booking-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.booking-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #2d2d2d 100%);
  z-index: 0;
}

.booking-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(192,192,192,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.booking-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 80px;
}

/* How It Works Steps */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.booking-step {
  text-align: center;
  position: relative;
}

.booking-step-number {
  font-family: 'Norwester', sans-serif;
  font-size: 56px;
  color: rgba(192,192,192,0.15);
  line-height: 1;
  margin-bottom: -10px;
}

.booking-step-icon {
  margin: 0 auto 16px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(192,192,192,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-step-title {
  font-family: 'Norwester', sans-serif;
  font-size: 20px;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.booking-step-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* Booking form dark-bg inputs */
.booking-input {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(192,192,192,0.25) !important;
  color: #fff !important;
}

.booking-input::placeholder {
  color: rgba(192,192,192,0.4) !important;
}

.booking-input:focus {
  border-color: var(--silver-primary) !important;
  background: rgba(255,255,255,0.1) !important;
}

.booking-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C0C0C0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  padding-right: 40px !important;
  cursor: pointer;
}

.booking-select option {
  background: #111111;
  color: #fff;
}

/* Venue Info Grid */
.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.booking-info-card {
  padding: 30px 24px;
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s;
}

.booking-info-card:hover {
  transform: translateY(-4px);
}

.booking-info-icon {
  margin: 0 auto 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(192,192,192,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-info-title {
  font-family: 'Norwester', sans-serif;
  font-size: 18px;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.booking-info-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Booking page responsive */
@media (max-width: 900px) {
  .booking-steps { grid-template-columns: 1fr; gap: 30px; }
  .booking-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .booking-hero { min-height: 400px; }
  .booking-hero-content { padding: 40px 20px 60px; }
}

/* ============================================================
   REVIEWS / SOCIAL PROOF SECTION
   ============================================================ */

.reviews-section {
  background: var(--dark-deep);
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}

/* Header */
.reviews-header {
  margin-bottom: 50px;
}

.reviews-heading-outline {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(36px, 7vw, 72px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 10px 0 16px;
}

.reviews-subheading {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.reviews-stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.review-star-lg {
  color: #FFD700;
  font-size: 32px;
  line-height: 1;
}

.reviews-badge {
  display: inline-block;
  font-family: 'Norwester', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--maroon);
  padding: 6px 20px;
  border-radius: 30px;
}

/* Carousel Container */
.review-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.review-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Review Cards */
.review-card {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 0 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card visual background via ::before pseudo-element */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  bottom: 0;
  background: #1a1a1a;
  border: 1px solid rgba(192,192,192,0.25);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
}

.review-card:hover::before {
  border-color: rgba(192,192,192,0.5);
  transform: translateY(-4px);
}

.review-card-stars {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  padding: 32px 24px 0;
}

.review-card-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.review-card-name {
  font-family: 'Norwester', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--maroon);
  position: relative;
  z-index: 1;
  padding: 0 24px 28px;
}

/* Carousel Arrows */
.review-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(192,192,192,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--silver-primary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.review-arrow:hover {
  background: rgba(192,192,192,0.15);
  border-color: var(--silver-primary);
}

/* Carousel Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(192,192,192,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.review-dot.active {
  background: var(--maroon);
  transform: scale(1.3);
}

/* Platform Badges */
.review-platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.review-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  border: 1px solid rgba(192,192,192,0.25);
  border-radius: 12px;
  padding: 20px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
  min-width: 170px;
}

.review-platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192,192,192,0.5);
  background: #2d2d2d;
}

.review-platform-name {
  font-family: 'Norwester', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.review-platform-rating {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-platform-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  color: #E8E8E8;
  letter-spacing: 0.5px;
}

/* CTA */
.reviews-cta {
  margin-top: 10px;
}

.reviews-cta .btn-teal {
  font-family: 'Norwester', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  padding: 14px 36px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Responsive: 2 cards on tablet */
@media (max-width: 900px) {
  .review-card {
    flex: 0 0 50%;
  }
  .review-platforms {
    gap: 14px;
  }
  .review-platform-card {
    padding: 16px 22px;
    min-width: 150px;
  }
}

/* Responsive: 1 card on mobile */
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
  }
  .reviews-section {
    padding: 60px 0 50px;
  }
  .review-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .review-platforms {
    flex-direction: column;
    align-items: center;
  }
  .review-platform-card {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================================
   MENU PAGE — Call to Order Buttons & Phone Banners
   ============================================================ */

/* Inline phone order button on each menu item row */
.menu-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--silver-link);
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.menu-order-btn:hover {
  transform: scale(1.15);
  background: var(--dark-deep);
}

.menu-order-btn:focus-visible {
  outline: 2px solid var(--silver-primary);
  outline-offset: 2px;
}

.menu-order-btn svg {
  display: block;
}

/* Full-width phone order banner */
.menu-phone-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: var(--dark-deep);
  color: var(--white);
  text-decoration: none;
  font-family: 'Norwester', Helvetica, Arial, sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.25s ease;
  position: relative;
  z-index: 1;
}

.menu-phone-banner:hover {
  background: #111111;
}

.menu-phone-banner svg {
  flex-shrink: 0;
}

/* Bottom banner variant — rounded corners inside the cards section */
.menu-phone-banner--bottom {
  margin-top: 32px;
  border-radius: 10px;
  background: var(--silver-link);
}

.menu-phone-banner--bottom:hover {
  background: var(--dark-deep);
}

/* Mobile: enlarge phone buttons for touch targets (min 44px) */
@media (max-width: 700px) {
  .menu-order-btn {
    width: 44px;
    height: 44px;
  }

  .menu-order-btn svg {
    width: 18px;
    height: 18px;
  }

  .menu-phone-banner {
    padding: 20px 16px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE IMPROVEMENTS
   Appended — do NOT modify rules above
   ============================================================ */

/* -------------------------------------------------------
   1. Global mobile foundations
   ------------------------------------------------------- */
@media (max-width: 768px) {
  /* Prevent pull-to-refresh jank on mobile Chrome */
  html {
    overscroll-behavior-y: contain;
  }

  /* Prevent horizontal overflow on ALL content */
  body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  /* Base font: 16px minimum to prevent iOS auto-zoom on inputs */
  body {
    font-size: 16px;
  }

  /* Container tighter padding on mobile */
  .container {
    padding: 0 16px;
  }

  /* Reduce section padding */
  .section-pad {
    padding: 48px 0;
  }

  .section-pad-sm {
    padding: 28px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section-pad {
    padding: 36px 0;
  }
}

/* -------------------------------------------------------
   2. Touch targets — minimum 44x44px on all interactive
   ------------------------------------------------------- */
@media (max-width: 768px) {
  /* Buttons */
  .btn {
    min-height: 44px;
    padding: 12px 28px;
    font-size: 15px;
  }

  /* Nav overlay links */
  .nav-overlay ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 14px 10px;
  }

  .nav-overlay .nav-dropdown-label {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-overlay .nav-sub li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hamburger: ensure adequate hit area */
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Slider arrows — 15% smaller on mobile */
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  /* Slider dots: enlarge hit area */
  .slider-dot {
    width: 14px;
    height: 14px;
    position: relative;
  }

  /* Social buttons */
  .social-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* Footer links: adequate line-height for tap */
  .footer-col ul li a,
  .footer-dark-col ul li a {
    display: inline-block;
    padding: 4px 0;
    min-height: 32px;
    line-height: 2;
  }

  /* State tags */
  .state-tag {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
  }

  /* Location view button */
  .location-view-btn {
    min-height: 36px;
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Location card: more tap area */
  .location-card {
    padding: 16px;
  }

  /* Review carousel arrows */
  .review-arrow {
    min-width: 44px;
    min-height: 44px;
  }

  /* Review dots */
  .review-dot {
    width: 14px;
    height: 14px;
  }
}

/* -------------------------------------------------------
   3. Typography scaling
   ------------------------------------------------------- */
@media (max-width: 768px) {
  /* Section labels */
  .section-label {
    font-size: 20px;
  }

  /* Mission section */
  .mission-label {
    font-size: 20px;
  }

  .mission-body {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 4px;
  }

  /* Botanicals */
  .botanicals-label {
    font-size: 24px;
  }

  .botanicals-body {
    font-size: 16px;
  }

  /* Elixir cards */
  .elixir-name {
    font-size: 24px;
  }

  .elixir-benefit {
    font-size: 15px;
  }

  .elixir-desc {
    font-size: 14px;
  }

  /* Story section (about page) */
  .story-heading {
    font-size: clamp(28px, 7vw, 50px);
  }

  .story-sub {
    font-size: 18px;
  }

  .story-body {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Core values */
  .core-values-heading {
    font-size: clamp(28px, 7vw, 50px);
  }

  /* Contact */
  .contact-heading {
    font-size: clamp(30px, 8vw, 60px);
  }

  .contact-hq {
    font-size: 22px;
  }

  .contact-address {
    font-size: 18px;
    margin-bottom: 24px;
  }

  /* Blog */
  .blog-title {
    font-size: 42px;
  }

  .blog-card-title {
    font-size: 22px;
  }

  .blog-card-img {
    height: 220px;
  }

  .blog-card-body {
    padding: 20px;
  }

  .blog-card-excerpt {
    font-size: 15px;
  }

  /* Footer */
  .footer-signup h3 {
    font-size: 18px;
  }

  .footer-copyright {
    font-size: 11px;
    line-height: 1.6;
    padding: 0 8px;
  }

  /* Reviews heading */
  .reviews-heading-outline {
    font-size: clamp(28px, 7vw, 48px);
  }
}

@media (max-width: 480px) {
  /* Tighter heading scaling for very small screens */
  .mission-label {
    font-size: 18px;
  }

  .botanicals-label {
    font-size: 20px;
  }

  .elixirs-sub {
    font-size: 20px;
    letter-spacing: 0.02em;
  }

  .story-heading {
    font-size: 26px;
  }

  .blog-title {
    font-size: 34px;
  }
}

/* -------------------------------------------------------
   4. Hero slider mobile improvements
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-slider {
    min-height: 500px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
    letter-spacing: 0.06em;
  }

  .hero-drink-btn {
    font-size: 15px;
    padding: 12px 28px;
    min-height: 44px;
  }

  /* Slider arrows pushed in slightly so they don't crowd content */
  .slider-arrow-prev {
    left: 10px;
  }

  .slider-arrow-next {
    right: 10px;
  }

  /* Slider dots repositioned */
  .slider-dots {
    bottom: 70px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 440px;
  }

  .hero-content {
    padding: 0 20px;
  }

  /* Fade drink illustration on very small screens */
  .hero-drink-img {
    opacity: 0.3;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  /* Tighten hero spacing */
  .slider-dots {
    bottom: 56px;
  }
}

@media (max-width: 360px) {
  .hero-drink-img {
    display: none;
  }

  .hero-slider {
    min-height: 400px;
  }
}

/* -------------------------------------------------------
   5. Gallery section — stacks on mobile
   ------------------------------------------------------- */
@media (max-width: 768px) {
  /* The gallery 2-column (text + grid) inline layout */
  .gallery-section > .container > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-cell {
    aspect-ratio: 1;
  }

  .gallery-cell.tall {
    grid-row: auto;
    aspect-ratio: 1;
    min-height: auto !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-cell {
    aspect-ratio: 4/3;
  }

  .gallery-cell.tall {
    aspect-ratio: 4/3;
    min-height: auto !important;
  }
}

/* -------------------------------------------------------
   6. Instagram photos — mobile layout
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .instagram-photos {
    gap: 16px;
  }

  .insta-photo {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .instagram-photos {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .insta-photo {
    width: clamp(200px, 60vw, 260px);
    height: clamp(200px, 60vw, 260px);
    flex-shrink: 0;
  }

  /* Remove rotation transforms that look odd when stacked */
  .insta-photo:nth-child(1),
  .insta-photo:nth-child(2),
  .insta-photo:nth-child(3) {
    transform: none !important;
  }

  .insta-photo:nth-child(2) {
    z-index: auto;
  }
}

/* -------------------------------------------------------
   7. Footer mobile stacking
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-dark-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-dark-col h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-dark-col ul li {
    margin-bottom: 8px;
  }

  .footer-dark-col ul li a {
    font-size: 14px;
  }

  .footer-dark {
    padding: 40px 0 80px !important;
  }

  .footer-email-form {
    padding: 0 8px;
  }

  .footer-email-form input {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 14px 20px;
    min-height: 44px;
  }

  .footer-logo-lg .logo-main {
    font-size: 22px;
  }

  .footer-logo-lg .logo-icon {
    width: 48px;
    height: 48px;
  }

  .social-row {
    gap: 16px;
    margin-top: 20px;
  }
}

/* -------------------------------------------------------
   8. Calendar grid — improved mobile
   ------------------------------------------------------- */
@media (max-width: 700px) {
  .cal-grid {
    gap: 2px;
  }

  .cal-cell,
  .cal-cell-empty {
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .cal-grid {
    gap: 1px;
  }

  .cal-cell,
  .cal-cell-empty {
    border-radius: 4px;
  }
}

/* At very narrow widths, tighten further */
@media (max-width: 360px) {
  .cal-cell,
  .cal-cell-empty {
    min-height: 42px;
    padding: 2px 1px;
  }

  .cal-cell-num {
    font-size: 10px;
  }

  .cal-event-tag {
    font-size: 5.5px;
    padding: 1px 2px;
  }
}

/* -------------------------------------------------------
   9. Menu cards — single column on mobile
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .menu-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
  }

  .menu-card-title {
    font-size: 20px;
  }

  .menu-card-name {
    font-size: 15px;
  }

  .menu-card-price {
    font-size: 15px;
  }

  .menu-cards-footer {
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 16px 8px;
  }
}

/* Menu grid (inside the dark menu-img-block on old layout) */
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-tagline {
    font-size: 28px;
  }

  .menu-img-block {
    padding: 24px 16px;
    border-radius: 8px;
  }
}

/* -------------------------------------------------------
   10. Forms — mobile friendly inputs
   ------------------------------------------------------- */
@media (max-width: 768px) {
  /* Prevent iOS zoom: all inputs must be >= 16px */
  .form-input,
  .form-textarea,
  .locator-search-input,
  .locator-filter,
  .booking-input,
  .booking-select {
    font-size: 16px !important;
    min-height: 44px;
  }

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

  /* Form rows stack on mobile */
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Form submit buttons full-width on mobile */
  .form-submit-btn,
  .contact-form .btn,
  #booking-submit-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .form-label {
    font-size: 12px;
  }

  /* Contact form spacing */
  .contact-form {
    padding: 0 4px;
  }

  .contact-section {
    padding: 48px 0;
  }
}

/* -------------------------------------------------------
   11. Location page — stacked sidebar + map
   ------------------------------------------------------- */
@media (max-width: 900px) {
  .store-locator-wrap {
    grid-template-columns: 1fr;
    height: auto;
  }

  .locator-sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    max-height: 350px;
  }

  .locator-map {
    height: 300px;
  }

  .locator-search-bar {
    padding: 12px;
  }

  .locator-search-input {
    font-size: 16px; /* Prevent iOS zoom */
    min-height: 44px;
  }

  .locator-filter {
    font-size: 14px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .locator-map {
    height: 240px;
  }

  .locator-sidebar {
    max-height: 280px;
  }

  .location-thumb {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .location-name {
    font-size: 14px;
  }

  .location-address {
    font-size: 12px;
  }
}

/* -------------------------------------------------------
   12. Newsletter float bar — mobile safe
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .newsletter-float {
    padding: 12px 14px;
  }

  .newsletter-float-text {
    font-size: 12px;
    min-width: 180px;
    letter-spacing: 0.08em;
  }

  .newsletter-float-icon {
    width: 16px;
    height: 16px;
  }

  .newsletter-float-arrow {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .newsletter-float-text {
    font-size: 10px;
    min-width: 140px;
    letter-spacing: 0.04em;
  }

  .newsletter-float-inner {
    gap: 6px;
  }
}

/* -------------------------------------------------------
   13. Elixir grid — single column on mobile
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .elixir-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .elixir-card {
    padding: 22px 18px;
    border-radius: 12px;
  }
}

/* -------------------------------------------------------
   14. Icon grid — 2 columns on mobile
   ------------------------------------------------------- */
@media (max-width: 480px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .icon-img {
    width: 80px;
    height: 80px;
  }

  .icon-circle {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .icon-label {
    font-size: 12px;
  }
}

/* -------------------------------------------------------
   15. Values grid (about page) — single column
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .value-blob-card {
    padding: 36px 24px;
    min-height: 220px;
    border-radius: 45% 40% 55% 45% / 45% 55% 40% 50%;
  }

  .value-icon {
    font-size: 40px;
  }

  .value-title {
    font-size: 18px;
  }

  .value-body {
    font-size: 14px;
  }

  .core-values-section {
    padding: 48px 0;
  }
}

/* -------------------------------------------------------
   16. Franchise / intro grids — stack on mobile
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .franchise-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .franchise-form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .franchise-frames {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .franchise-frame.tall {
    grid-row: auto;
  }

  .franchise-hero {
    min-height: 400px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .media-logos {
    gap: 20px;
    padding: 20px 0;
  }

  .media-logo {
    font-size: 18px;
  }
}

/* -------------------------------------------------------
   17. Booking page — mobile improvements
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .booking-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }

  .booking-step-number {
    font-size: 40px;
  }

  .booking-step-icon {
    width: 56px;
    height: 56px;
  }

  .booking-step-title {
    font-size: 18px;
  }

  .booking-step-desc {
    font-size: 14px;
  }

  .booking-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-info-card {
    padding: 24px 20px;
  }

  .booking-info-title {
    font-size: 16px;
  }

  .booking-info-desc {
    font-size: 14px;
  }
}

/* -------------------------------------------------------
   18. Typing row — wraps cleanly on small screens
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .typing-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .typing-block {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .typing-word {
    min-width: 150px;
  }
}

@media (max-width: 380px) {
  .typing-word {
    min-width: 120px;
  }

  .typing-prefix {
    font-size: clamp(22px, 5vw, 28px);
  }
}

/* -------------------------------------------------------
   19. Good vibes blob — smaller on mobile
   ------------------------------------------------------- */
@media (max-width: 480px) {
  .blob-placeholder,
  .blob-img {
    width: clamp(200px, 55vw, 260px);
    height: clamp(200px, 55vw, 260px);
  }

  .good-vibes {
    padding: 36px 0;
  }

  .good-vibes-heading {
    font-size: clamp(18px, 5vw, 22px);
  }
}

/* -------------------------------------------------------
   20. About hero — tighter on mobile
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .about-hero {
    height: auto;
    min-height: 320px;
    padding: 60px 0;
  }

  .about-hero-content {
    padding: 0 16px;
  }

  .about-hero-body {
    font-size: 15px;
  }

  .story-section {
    padding: 48px 0;
  }

  .visit-section {
    padding: 48px 0;
  }

  .visit-info {
    font-size: 16px;
  }

  .visit-social a {
    font-size: 28px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* -------------------------------------------------------
   21. Map section — mobile
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .us-map-wrap {
    margin: 20px auto;
    border-radius: 8px;
  }

  .state-tags {
    gap: 8px;
    padding: 20px 0;
  }

  .state-tag {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
  }

  .locations-tagline {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .locations-hero {
    padding: 40px 0 20px;
  }

  .locations-section {
    padding: 48px 0;
  }
}

/* -------------------------------------------------------
   22. Marquee strip — mobile
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .marquee-strip {
    padding: 10px 0;
  }

  .marquee-inner {
    font-size: 13px;
  }
}

/* -------------------------------------------------------
   23. Smooth overflow scrolling (iOS)
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-overlay,
  .locator-list,
  .locator-sidebar {
    -webkit-overflow-scrolling: touch;
  }
}

/* -------------------------------------------------------
   24. Blog card image — proportional on mobile
   ------------------------------------------------------- */
@media (max-width: 480px) {
  .blog-card-img {
    height: 180px;
  }

  .blog-card-body {
    padding: 16px;
  }

  .blog-card-title {
    font-size: 20px;
  }

  .blog-card-excerpt {
    font-size: 14px;
  }

  .blog-card {
    margin: 0 auto 24px;
  }
}

/* -------------------------------------------------------
   25. Header mobile refinements
   ------------------------------------------------------- */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 14px;
    height: 64px;
  }

  .page-wrap {
    padding-top: 64px;
  }

  .nav-overlay {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 8px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }
}

/* -------------------------------------------------------
   26. Contact cards (inline grid on contact.html)
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .contact-cards-inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 100% !important;
  }
}

/* -------------------------------------------------------
   27. Map embed (contact page)
   ------------------------------------------------------- */
@media (max-width: 600px) {
  .map-embed {
    height: 220px;
    margin: 24px auto 0;
    border-radius: 8px;
  }
}

/* -------------------------------------------------------
   28. Elixirs heading — wrap cleanly
   ------------------------------------------------------- */
@media (max-width: 480px) {
  .elixirs-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .elixirs-script {
    font-size: clamp(32px, 8vw, 40px);
  }

  .elixirs-outline {
    font-size: clamp(28px, 7vw, 36px);
    margin-left: 0;
  }
}

/* -------------------------------------------------------
   29. Menu phone banner — mobile touch target
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .menu-phone-banner {
    min-height: 44px;
    font-size: 15px;
    padding: 12px 16px;
  }
}

/* -------------------------------------------------------
   30. Wave dividers — prevent gap on mobile
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .wave-divider svg {
    height: auto;
    min-height: 40px;
  }
}

/* -------------------------------------------------------
   31. Prevent horizontal scroll from any wide element
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-slider,
  .franchise-hero,
  .booking-hero,
  .about-hero,
  .teal-section,
  .instagram-section,
  .blog-header,
  .reviews-section {
    overflow: hidden;
  }

  /* Force all images to respect container */
  img, svg, video, iframe {
    max-width: 100%;
    height: auto;
  }
}

/* -------------------------------------------------------
   32. Gallery heading text — scale on mobile
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .gallery-heading-script {
    font-size: clamp(36px, 8vw, 50px);
  }

  .gallery-heading-solid {
    font-size: clamp(28px, 7vw, 40px);
  }

  .gallery-section {
    padding: 48px 0;
  }
}

/* -------------------------------------------------------
   33. Reviews section — mobile card sizing
   ------------------------------------------------------- */
@media (max-width: 768px) {
  .review-card-text {
    font-size: 14px;
    padding: 0 18px;
  }

  .review-card-stars {
    padding: 24px 18px 0;
  }

  .review-card-name {
    padding: 0 18px 24px;
  }

  .review-platform-card {
    padding: 16px 20px;
    min-width: 140px;
  }

  .review-platform-name {
    font-size: 14px;
  }

  .reviews-badge {
    font-size: 12px;
    padding: 5px 16px;
  }
}

/* ============================================================
   CONTACT CHIPS (replaces inline onmouseover/onmouseout)
   ============================================================ */
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f4f4f4;
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-heading);
  transition: background 0.2s;
}
.contact-chip:hover {
  background: #2d2d2d;
}

/* ============================================================
   ANIMATION FALLBACK (moved from main.js)
   Ensures content is visible even if JS fails to load.
   JS adds .js-loaded to <html>, enabling animations.
   Without JS, content renders at full opacity.
   ============================================================ */
html.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js-loaded .animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Skip-to-content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--dark-deep);
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
}

/* ============================================================
   EXTRACTED UTILITY CLASSES (replacing inline styles)
   ============================================================ */

/* ----------------------------------------------------------
   Page titles — replaces font-family:'Norwester'... combos
   used in hero sections, form headings, section intros
   ---------------------------------------------------------- */
.page-title-white {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-title-dark {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-heading);
  text-transform: uppercase;
}

.page-title-teal {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--silver-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-title-xl {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(48px, 9vw, 100px);
  color: white;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------------
   Section headings — replaces inline Norwester + size combos
   on "THREE SIMPLE STEPS", "WHAT TO EXPECT", etc.
   ---------------------------------------------------------- */
.section-title {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.section-title-md {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(32px, 5vw, 50px);
  color: var(--text-heading);
  text-transform: uppercase;
}

.subsection-title {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  text-transform: uppercase;
  color: var(--text-heading);
  line-height: 1.2;
}

/* "Meet the Team" style — 42px dark Norwester */
.section-title-lg {
  font-family: 'Norwester', sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 8px;
}

/* "OTHER WAYS TO REACH US", "Message Sent!", "Request Submitted!" — 28px heading */
.section-title-sm {
  font-family: 'Norwester', sans-serif;
  font-size: 28px;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Same as above but teal — used for success state on dark BG */
.section-title-sm-teal {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--silver-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ----------------------------------------------------------
   Card / label headings — replaces inline card titles
   on contact cards, team cards, info cards
   ---------------------------------------------------------- */
.card-heading {
  font-family: 'Norwester', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.card-heading-lg {
  font-family: 'Norwester', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.card-heading-teal {
  font-family: 'Norwester', sans-serif;
  font-size: 22px;
  color: var(--silver-link);
  margin-bottom: 10px;
}

/* "HAVE QUESTIONS?" style — 24px dark heading */
.card-heading-md {
  font-family: 'Norwester', sans-serif;
  font-size: 24px;
  color: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ----------------------------------------------------------
   Script accent text — replaces Arizonia + size + color combos
   "Bring Your Sound to", "the people behind the spot"
   ---------------------------------------------------------- */
.script-accent {
  font-family: 'Arizonia', cursive;
  font-size: clamp(30px, 5vw, 60px);
  color: var(--silver-primary);
}

.script-accent-sm {
  font-family: 'Arizonia', cursive;
  font-size: 24px;
  color: var(--silver-link);
}

/* ----------------------------------------------------------
   Body text — replaces inline font-size + color + line-height
   ---------------------------------------------------------- */
.body-lg {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

.body-md {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

.body-sm {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.body-xs {
  font-size: 13px;
  color: var(--text-body);
}

/* White text on dark backgrounds */
.body-sm-white {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}

.body-sm-white-wide {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Roboto Condensed', sans-serif;
}

.body-xs-white {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-family: 'Roboto Condensed', sans-serif;
}

/* Subtitle / descriptive text below form section headings */
.body-subtitle-white {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-family: 'Roboto Condensed', sans-serif;
}

/* Centered body text with constrained width (visit-us paragraph, etc.) */
.body-lg-center {
  font-size: 18px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   Role / subtitle — replaces inline job title styling
   on team member cards (about.html)
   ---------------------------------------------------------- */
.role-subtitle {
  text-align: center;
  color: var(--silver-link);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------
   Spacing utilities — replaces inline margin-top / margin-bottom
   ---------------------------------------------------------- */
.mt-xs  { margin-top: 10px; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 20px; }
.mt-lg  { margin-top: 30px; }
.mt-xl  { margin-top: 40px; }
.mt-2xl { margin-top: 50px; }
.mt-3xl { margin-top: 60px; }
.mb-0   { margin-bottom: 0; }
.mb-xs  { margin-bottom: 8px; }
.mb-sm  { margin-bottom: 12px; }
.mb-md  { margin-bottom: 16px; }
.mb-lg  { margin-bottom: 24px; }
.mb-xl  { margin-bottom: 30px; }
.mb-2xl { margin-bottom: 40px; }
.mb-3xl { margin-bottom: 50px; }

/* ----------------------------------------------------------
   Layout helpers — replaces common inline display/flex/grid
   ---------------------------------------------------------- */
.d-block { display: block; }

.d-flex-center {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.d-flex-center-sm {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Auto-fit responsive grid (team cards, etc.) */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* 3-column grid (contact cards) */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 1fr + 2fr gallery-style split */
.grid-split-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

/* ----------------------------------------------------------
   Card containers — replaces inline bg + padding + shadow combos
   ---------------------------------------------------------- */
.card-white {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card-white-sm {
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Callout / highlight card — "HAVE QUESTIONS?", "OTHER WAYS TO REACH US" */
.callout-card {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 16px;
  text-align: center;
}

/* ----------------------------------------------------------
   Section background helpers — replaces inline background on
   wave dividers and section wrappers
   ---------------------------------------------------------- */
.bg-white       { background: #fff; }
.bg-light       { background: #f9f9f9; }
.bg-dark        { background: var(--dark-bg); }
.bg-teal-deep   { background: var(--dark-deep); }
.bg-teal        { background: var(--silver-primary); }


/* ----------------------------------------------------------
   Avatar / icon circles — replaces inline width + height +
   border-radius + background + flex on team cards, success states
   ---------------------------------------------------------- */
.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--silver-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.success-icon-circle-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--silver-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* ----------------------------------------------------------
   Form label on dark background — replaces inline
   color:rgba(255,255,255,0.7) on booking form labels
   ---------------------------------------------------------- */
.form-label-light {
  color: rgba(255,255,255,0.7);
}

/* Form group with no bottom margin — replaces inline margin-bottom:0
   on .form-group inside .form-row */
.form-group-flush {
  margin-bottom: 0;
}

/* Larger submit button — replaces inline font-size + padding + min-width */
.btn-lg {
  font-size: 18px;
  padding: 14px 48px;
  min-width: 200px;
}

/* Small button — replaces inline font-size + padding overrides on card CTAs */
.btn-sm {
  font-size: 12px;
  padding: 6px 16px;
}

/* ----------------------------------------------------------
   Emoji icon — replaces inline font-size:32px on emoji "icons"
   in contact card grid
   ---------------------------------------------------------- */
.emoji-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* ----------------------------------------------------------
   Error / alert box — replaces inline display + background +
   border + padding on form error messages
   ---------------------------------------------------------- */
.form-error-box {
  display: none;
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #d32f2f;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  text-align: center;
}

/* Error on dark bg (booking form) — slightly different opacity */
.form-error-box-dark {
  display: none;
  background: rgba(220,50,50,0.15);
  border: 1px solid rgba(220,50,50,0.4);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  text-align: center;
}

/* ----------------------------------------------------------
   Success state panel — replaces inline display:none + text-align
   + padding on form success message wrappers
   ---------------------------------------------------------- */
.form-success-panel {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-panel-dark {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

/* ----------------------------------------------------------
   Section intro wrapper — replaces inline text-align:center +
   margin-bottom on heading groups above grids
   ---------------------------------------------------------- */
.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-intro-lg {
  text-align: center;
  margin-bottom: 50px;
}

/* ----------------------------------------------------------
   Hours heading — replaces inline Norwester 22px teal-link
   on contact page hours display
   ---------------------------------------------------------- */
.hours-heading {
  font-family: 'Norwester', sans-serif;
  font-size: 22px;
  color: var(--silver-link);
  margin-bottom: 10px;
}

/* ----------------------------------------------------------
   Instagram badge text — replaces inline strong + font-size
   ---------------------------------------------------------- */
.instagram-handle {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  color: var(--black);
  font-weight: 700;
}

.instagram-hashtag {
  font-size: 18px;
  color: var(--black);
}

/* ----------------------------------------------------------
   Insta photo card inner — replaces inline text-align + padding
   on polaroid-style instagram placeholders
   ---------------------------------------------------------- */
.insta-photo-inner {
  text-align: center;
  padding: 16px;
}

.insta-photo-label {
  font-family: 'Norwester', sans-serif;
  font-size: 13px;
  margin-top: 6px;
}

/* ----------------------------------------------------------
   Container max-width overrides — replaces inline max-width
   on section containers
   ---------------------------------------------------------- */
.container-sm  { max-width: 700px; }
.container-md  { max-width: 760px; }
.container-lg  { max-width: 800px; }
.container-xl  { max-width: 900px; }

/* ----------------------------------------------------------
   Footer faded text — replaces inline color on privacy/admin links
   ---------------------------------------------------------- */
.footer-faded       { color: rgba(255,255,255,0.4); }
.footer-faded-link  { color: rgba(255,255,255,0.35); }

/* ----------------------------------------------------------
   Relative z-index wrapper — replaces inline
   position:relative;z-index:1 on footer containers
   ---------------------------------------------------------- */
.pos-relative-z1 {
  position: relative;
  z-index: 1;
}

/* Dynamic calendar additions */
.cal-today { outline: 2px solid var(--silver-primary); outline-offset: -2px; }
.cal-past { opacity: 0.4; }
.cal-month-title {
  font-family: 'Norwester', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.cal-dark .cal-month-title { color: var(--silver-primary); }
.cal-light .cal-month-title { color: var(--dark-deep); }

/* ============================================================
   MAPS + REVIEWS COMBINED SECTION
   ============================================================ */

.maps-reviews-section {
  padding: 80px 0 70px;
}

.maps-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.maps-reviews-grid > * {
  min-width: 0;
  overflow: hidden;
}

.maps-reviews-grid > .review-carousel-column {
  overflow: visible;
}

.map-directions-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  background: #1a1a1a;
  border: 1px solid rgba(192,192,192,0.2);
}

.map-directions-card iframe {
  display: block;
  width: 100%;
  height: 350px;
  min-height: 350px;
  border: 0;
}

.map-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #1a1a1a;
  text-decoration: none;
  transition: background 0.3s ease;
}

.map-info-bar:hover {
  background: #2d2d2d;
}

.map-address {
  font-family: 'Roboto Condensed', sans-serif;
  color: #E8E8E8;
  font-size: 14px;
}

.map-cta {
  font-family: 'Norwester', sans-serif;
  color: var(--red-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.map-info-bar:hover .map-cta {
  color: #fff;
}

.review-carousel-column {
  position: relative;
  outline: none;
}

.review-carousel-column:focus-visible {
  outline: 2px solid var(--silver-primary);
  outline-offset: 4px;
  border-radius: 8px;
}

.maps-reviews-grid .review-carousel-wrap {
  max-width: 100%;
}

.maps-reviews-grid .review-card {
  flex: 0 0 100%;
}

.review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(30,30,30,0.95);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.review-nav-btn:hover {
  background: rgba(128,0,32,0.85);
  border-color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.review-nav-prev { left: -22px; }
.review-nav-next { right: -22px; }

.review-card-source {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.review-source-google {
  background: rgba(66,133,244,0.2);
  color: #8ab4f8;
}

.review-source-yelp {
  background: rgba(211,35,35,0.2);
  color: #f87171;
}

.review-source-facebook {
  background: rgba(24,119,242,0.2);
  color: #60a5fa;
}

@media (max-width: 900px) {
  .maps-reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-directions-card iframe {
    height: 280px;
  }

  .review-nav-prev { left: -10px; }
  .review-nav-next { right: -10px; }
}

@media (max-width: 600px) {
  .maps-reviews-section {
    padding: 60px 0 50px;
  }

  .map-directions-card iframe {
    height: 240px;
  }

  .map-info-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .review-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .review-nav-prev { left: -8px; }
  .review-nav-next { right: -8px; }
}

/* ============================================================
   MOBILE OPTIMIZATION & STICKY NAV
   ============================================================ */

@media (max-width: 900px) {
  .site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: background 0.3s ease;
  }

  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-overlay {
    z-index: 1001;
  }

  .nav-overlay-backdrop {
    z-index: 1000;
  }
}

/* Tap targets */
@media (max-width: 900px) {
  button, input[type="submit"], .btn, .nav-cta {
    min-height: 44px;
  }

  .nav-overlay a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
  }

  footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 8px;
  }

  .social-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  input, select, textarea {
    min-height: 44px;
    font-size: 16px;
  }
}

/* Responsive images */
.hero-slide img,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img,
.gallery-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .gallery-img,
  .gallery-thumb {
    height: 160px;
  }
}

/* Small screen polish */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .section-pad,
  .section-pad-sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 375px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 { font-size: 1.75rem; }

  .header-inner {
    padding: 0 10px;
    height: 60px;
  }

  .page-wrap {
    padding-top: 60px;
  }

  .nav-overlay {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .logo-main { font-size: 15px; }
  .logo-sub { font-size: 7px; }
  .logo-icon { width: 34px; height: 34px; }

  .hero-content { padding: 0 12px; }

  .footer-email-form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-email-form input,
  .footer-email-form button {
    width: 100%;
  }

  .review-card-text { font-size: 13px; padding: 0 14px; }
  .review-card-name { font-size: 13px; padding: 0 14px 20px; }

  .review-platforms {
    flex-direction: column;
    align-items: center;
  }

  .review-platform-card {
    width: 100%;
    max-width: 260px;
  }

  .elixir-card { padding: 18px 14px; }
  .elixir-desc { font-size: 13px; }

  .icon-grid { gap: 12px; }
  .icon-label { font-size: 11px; }

  .us-map-wrap {
    margin: 16px -12px 0;
    border-radius: 0;
  }

  .state-tags { gap: 6px; }
  .state-tag { font-size: 11px; padding: 6px 12px; min-height: 36px; }

  .marquee-inner { font-size: 12px; }
}

/* Overflow prevention */
@media (max-width: 900px) {
  html, body {
    overflow-x: hidden;
  }

  [style*="grid-template-columns"] {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ============================================================
   Reduced Motion Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide { transition: none !important; }
  .review-carousel-track { transition: none !important; }
  .newsletter-float-text span { transition: none !important; }
  .animate-on-scroll { opacity: 1 !important; transform: none !important; }
}
