/* =============================================
   HIGHWAY DISPO — MAIN STYLESHEET
   ============================================= */

/* --- Fonts --- */
@font-face {
  font-family: 'ActayWide';
  src: url('../assets/fonts/ActayWide-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'HusconSans';
  src: url('../assets/fonts/HusconSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'HusconHand';
  src: url('../assets/fonts/HusconHand.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Knockout';
  src: url('../assets/fonts/Knockout-HTF27-JuniorBantamwt.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Oswald';
  src: url('../assets/fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* --- Design Tokens --- */
:root {
  --color-bg: #0D0D0D;
  --color-surface: #181818;
  --color-surface-raised: #222222;
  --color-border: #2a2a2a;
  --color-text: #F0EDE6;
  --color-text-muted: #9a9690;
  --color-accent: #D4A017;
  --color-accent-glow: rgba(212, 160, 23, 0.15);
  --color-green: #2D6A3F;
  --color-green-dark: #1d4429;
  --color-white: #ffffff;

  --font-display: 'ActayWide', 'Knockout', sans-serif;
  --font-heading: 'Knockout', 'Oswald', sans-serif;
  --font-body: 'HusconSans', 'Oswald', sans-serif;
  --font-accent: 'HusconHand', cursive;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --shadow-glow: 0 0 30px rgba(212, 160, 23, 0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);

  --nav-height: 72px;
  --max-width: 1200px;
  --section-padding: 100px 24px;
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-heading); }

.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); }
.section-sm { padding: 60px 24px; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #000;
}
.btn-primary:hover {
  background: #e8b520;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--color-green);
  color: var(--color-white);
}
.btn-green:hover {
  background: #3a8050;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 63, 0.4);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--color-accent); }
.nav-mobile .btn { align-self: flex-start; margin-top: 8px; }

/* Page offset for fixed nav */
.page-content { padding-top: var(--nav-height); }

/* =============================================
   AGE GATE
   ============================================= */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.age-gate-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.age-gate-box {
  text-align: center;
  max-width: 480px;
  padding: 48px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.5s ease;
}
.age-gate-box img {
  width: 160px;
  margin: 0 auto 32px;
}
.age-gate-box h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.age-gate-box p {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.age-gate-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.age-gate-legal {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  line-height: 1.5;
}
.age-gate-denied {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--color-text-muted);
}
.age-gate-denied img {
  width: 100px;
  opacity: 0.4;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(45, 106, 63, 0.06) 0%, transparent 60%);
}
.hero-road-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(212, 160, 23, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-logo {
  width: clamp(260px, 50vw, 480px);
  margin: 0 auto 32px;
  animation: fadeUp 0.8s ease;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* =============================================
   LOCATION STRIP (mini on homepage)
   ============================================= */
.location-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
}
.location-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.location-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  text-align: center;
}
.location-pill-hours {
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-accent);
}
/* Green — open */
.location-pill-dot.dot-open {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  animation: pulse-green 2s ease-in-out infinite;
}
/* Yellow — closing soon */
.location-pill-dot.dot-closing {
  background: #eab308;
  box-shadow: 0 0 6px rgba(234, 179, 8, 0.7);
  animation: pulse-yellow 1.2s ease-in-out infinite;
}
/* Red — closed */
.location-pill-dot.dot-closed {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
  animation: none;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 4px rgba(34, 197, 94, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 12px rgba(34, 197, 94, 0.9); transform: scale(1.25); }
}
@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 4px rgba(234, 179, 8, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 14px rgba(234, 179, 8, 1); transform: scale(1.3); }
}
.location-pill-name {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}
.location-pill-city {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}
/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}
.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 320px;
  opacity: 0.9;
  animation: float 6s ease-in-out infinite;
}
.about-image::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
}

/* =============================================
   LOCATIONS SECTION (homepage cards)
   ============================================= */
.locations-section {
  padding: var(--section-padding);
  background: var(--color-surface);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.locations-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.location-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.location-card:hover::before { transform: scaleX(1); }

.location-card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  user-select: none;
}
.location-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-text);
}
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-glow);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
  transition: color 0.3s, background 0.3s;
}
.location-tag.status-open {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
}
.location-tag.status-closing {
  color: #eab308;
  background: rgba(234, 179, 8, 0.12);
}
.location-tag.status-closed {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
}
.location-tag.status-open svg   { fill: #22c55e; }
.location-tag.status-closing svg { fill: #eab308; }
.location-tag.status-closed svg  { fill: #ef4444; }
.location-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.location-info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}
.location-info-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.location-info-value {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.5;
}
.location-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.location-card-actions .btn { flex: 1; justify-content: center; }

/* =============================================
   LOYALTY SECTION
   ============================================= */
.loyalty-section {
  padding: var(--section-padding);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.loyalty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(45, 106, 63, 0.06) 0%, transparent 70%);
}
.loyalty-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.loyalty-content .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 16px;
}
.loyalty-content h2 { margin-bottom: 20px; }
.loyalty-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.loyalty-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.loyalty-perk {
  display: flex;
  align-items: center;
  gap: 16px;
}
.perk-icon {
  width: 40px;
  height: 40px;
  background: rgba(45, 106, 63, 0.15);
  border: 1px solid rgba(45, 106, 63, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.perk-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
}
.loyalty-form-frame {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.loyalty-form-frame iframe {
  width: 100%;
  min-height: 600px;
  display: block;
  border: none;
}

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-page-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 24px 0;
  text-align: center;
}
.shop-page-header h1 { margin-bottom: 8px; }
.shop-page-header p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}
.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: none;
}
.shop-tab {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
}
.shop-tab:hover { color: var(--color-text); }
.shop-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.shop-embed-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}
.shop-embed-placeholder {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
}
.shop-embed-placeholder .m420-icon {
  width: 80px;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1) opacity(0.3);
}
.shop-embed-placeholder h3 {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.shop-embed-placeholder p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  opacity: 0.7;
}
.shop-embed-frame {
  width: 100%;
  min-height: 800px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

/* =============================================
   LOCATIONS PAGE
   ============================================= */
.locations-page-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 24px 60px;
  text-align: center;
}
.locations-page-hero p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 16px auto 0;
}
.locations-page-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.location-detail-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color 0.3s;
}
.location-detail-card:hover { border-color: rgba(212, 160, 23, 0.3); }
.location-detail-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-number-badge {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.location-detail-info h2 { font-size: 2rem; }
.location-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.location-detail-info .location-card-actions { margin-top: auto; }
.location-map {
  border-left: 1px solid var(--color-border);
  background: var(--color-surface-raised);
  min-height: 320px;
  overflow: hidden;
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.8);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 80px 24px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a, .footer-col li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 40px;
}
.footer-legal {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 600px;
}
.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 968px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-inner,
  .loyalty-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { display: none; }

  .locations-grid { grid-template-columns: 1fr; }
  .location-detail-card { grid-template-columns: 1fr; }
  .location-map { min-height: 220px; border-left: none; border-top: 1px solid var(--color-border); }

  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --section-padding: 64px 16px; }

  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; align-items: center; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-number { font-size: 1.8rem; }

  .location-strip-inner { gap: 24px; }
  .location-info-grid { grid-template-columns: 1fr; }
  .location-detail-info { padding: 32px 24px; }

  .footer-top { grid-template-columns: 1fr; }
  .loyalty-form-frame iframe { min-height: 700px; }

  .age-gate-btns { flex-direction: column; }
}

/* =============================================
   SKIP LINK (Accessibility)
   ============================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-accent);
  color: #000;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 99999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* =============================================
   COOKIE NOTICE
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: slideUp 0.4s ease;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}
.cookie-banner p a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* =============================================
   DUTCHIE LOADING SPINNER
   ============================================= */
.dutchie-menu-container {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dutchie-menu-container:empty::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.dutchie-menu-container.loaded {
  min-height: unset;
  display: block;
}
.dutchie-menu-container.loaded::after { display: none; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
