:root {
  --bg-primary: #FFFFFF;
  --bg-surface: #F7F7F7;
  --color-magenta: #CD0282;
  --color-magenta-dark: #A00065;
  --color-teal: #87D6D3;
  --color-teal-dark: #5bbab6;
  --color-text: #000000;
  --color-text-muted: #555555;
  --border-soft: #E0E0E0;
  
  --font-sans: 'DM Sans', sans-serif;
  --font-heading: 'Corben', serif;
  --font-mono: 'DM Mono', monospace;
  --font-hand: 'Caveat', cursive;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;

  /* Fluid spacing using clamp */
  --section-padding: clamp(3rem, 7vw, 6rem);
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);
  --gap-md: clamp(1rem, 3vw, 2rem);
  --gap-lg: clamp(2rem, 5vw, 4rem);

  /* Safe area insets for notched devices */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);

  /* Groovy easing curves */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ════════════════════════════════════════════════════════════
   BASE STYLES
   ════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-height, 70px); }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease-smooth); }
a, button { -webkit-tap-highlight-color: rgba(135, 214, 211, 0.3); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography (fluid) ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; color: var(--color-text); }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); margin-bottom: var(--space-sm); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p  { font-size: clamp(0.95rem, 1.5vw, 1.1rem); }

h1 em {
  font-family: var(--font-hand); color: var(--color-magenta); font-style: normal;
  font-size: 1.2em; display: inline-block;
  transform: rotate(-3deg);
  margin-left: 0.2em; margin-right: 0.1em;
  transition: transform 0.4s var(--ease-bounce);
}
h1:hover em { transform: rotate(-6deg) scale(1.08); }

.label {
  font-family: var(--font-mono); text-transform: uppercase;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  letter-spacing: 1.8px; color: var(--color-magenta); font-weight: 500;
  display: block; margin-bottom: var(--space-xs);
}

/* ── Layout ── */
.section--surface { background: var(--bg-surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  text-transform: uppercase; border: 2px solid var(--color-text);
  background: var(--bg-primary);
  padding: clamp(0.85rem, 2vw, 0.95rem) clamp(1.5rem, 3vw, 2.4rem);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-smooth), background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.2s ease;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,0.13); }
.btn:active { transform: scale(0.97); box-shadow: none; }
.btn-primary { background: var(--color-magenta); color: #fff; border-color: var(--color-magenta); }
.btn-primary:hover { background: var(--color-magenta-dark); border-color: var(--color-magenta-dark); box-shadow: 0 10px 28px rgba(205,2,130,0.35); }
.btn-white { background: #fff; color: #000; border-color: #fff; }
.btn-outline { border-color: var(--border-soft); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth), box-shadow 0.4s ease;
  padding-top: max(1.25rem, var(--safe-top));
  animation: navSlideDown 0.6s var(--ease-smooth) both;
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  padding-top: max(0.65rem, var(--safe-top));
  padding-bottom: 0.65rem;
}
.nav .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-logo img { height: clamp(28px, 4vw, 38px); width: auto; transition: transform 0.35s var(--ease-bounce); }
.nav-logo:hover img { transform: rotate(-8deg) scale(1.08); }
.nav-logo-text { font-family: var(--font-heading); font-weight: 700; color: #000; font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
.nav-cta { color: var(--color-magenta) !important; font-weight: 700; }

/* ── Hamburger pill button (mobile only, hidden on desktop) ── */
.nav-hamburger {
  display: none; /* shown via mobile media query */
  align-items: center; gap: 0.5rem;
  background: #000; color: #fff;
  border: none; border-radius: 999px;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.3s var(--ease-bounce);
}
.nav-hamburger:hover { background: #222; transform: scale(1.04); }
.nav-hamburger:active { transform: scale(0.96); }
.nav-hamburger-lines {
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px; width: 16px;
}
.nav-hamburger-lines span {
  display: block; height: 1.5px; background: #fff; border-radius: 2px;
  transition: width 0.3s var(--ease-bounce), transform 0.35s var(--ease-bounce), opacity 0.25s ease;
  transform-origin: left center;
}
.nav-hamburger-lines span:nth-child(1) { width: 16px; }
.nav-hamburger-lines span:nth-child(2) { width: 10px; }
.nav-hamburger-label {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px; color: #fff;
  transition: opacity 0.2s ease;
}
/* Open state — lines become X, label fades */
.nav-hamburger.open { background: #fff; border: 1.5px solid #000; }
.nav-hamburger.open .nav-hamburger-lines span { background: #000; }
.nav-hamburger.open .nav-hamburger-lines span:nth-child(1) {
  width: 16px; transform: translateY(2.75px) rotate(45deg);
}
.nav-hamburger.open .nav-hamburger-lines span:nth-child(2) {
  width: 16px; transform: translateY(-2.75px) rotate(-45deg);
}
.nav-hamburger.open .nav-hamburger-label { opacity: 0; width: 0; overflow: hidden; padding: 0; }

/* ── Mobile backdrop ── */
.mobile-backdrop {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 98;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

/* ── Mobile drawer ── */
.mobile-menu {
  display: none; /* shown via mobile media query */
  position: fixed; top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  z-index: 102;
  background: #0a0a0a;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease-bounce);
  overflow-x: hidden;
  overflow-y: auto;
}
.mobile-menu::before {
  /* Teal left accent line */
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-teal), transparent);
}
.mobile-menu.open { transform: translateX(0); }

/* Drawer header — top padding matches nav bar height so the close
   button sits exactly where the hamburger pill was */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: max(1.1rem, var(--nav-height, 64px)) 1.75rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mobile-menu-eyebrow {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--color-teal);
}
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease-bounce);
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}
.mobile-menu-close svg { width: 15px; height: 15px; }

/* Nav links */
.mobile-menu-nav {
  display: flex; flex-direction: column;
  padding: 1.5rem 1.75rem;
  gap: 0;
}
.mobile-menu-link {
  display: flex; align-items: baseline; gap: 0.75rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.85rem, 7vw, 2.4rem);
  color: rgba(255,255,255,0.9); line-height: 1;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease, padding-left 0.3s var(--ease-bounce);
}
.mobile-menu-link:last-child { border-bottom: none; }
.mobile-menu-link:hover { color: #fff; padding-left: 0.5rem; }
.mobile-menu-link:active { color: var(--color-teal); }
.mobile-menu-num {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400;
  color: rgba(255,255,255,0.3); letter-spacing: 1px;
  flex-shrink: 0; margin-bottom: 0.2rem;
}

/* Stagger links in */
.mobile-menu.open .mobile-menu-link:nth-child(1) { animation: drawerLink 0.45s var(--ease-bounce) 0.1s both; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { animation: drawerLink 0.45s var(--ease-bounce) 0.16s both; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { animation: drawerLink 0.45s var(--ease-bounce) 0.22s both; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { animation: drawerLink 0.45s var(--ease-bounce) 0.28s both; }
@keyframes drawerLink {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Discogs CTA */
.mobile-menu-cta {
  display: flex; align-items: center; justify-content: center;
  margin: 0 1.75rem;
  padding: 0.9rem 1.5rem;
  background: var(--color-magenta); color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  transition: background 0.25s ease, transform 0.3s var(--ease-bounce);
}
.mobile-menu-cta:hover { background: var(--color-magenta-dark); transform: translateY(-2px); }
.mobile-menu-cta:active { transform: scale(0.97); }

/* Info strip at bottom */
.mobile-menu-info {
  margin: 1.25rem 1.75rem max(1.5rem, calc(var(--safe-bottom) + 1.25rem));
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.mobile-menu-info-label {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--color-teal); display: block; margin-bottom: 0.4rem;
}
.mobile-menu-address {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  line-height: 1.5; margin-bottom: 0.65rem;
}
.mobile-menu-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.67rem; font-weight: 500;
}
.mobile-menu-status-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  animation: qcPulse 2s ease-in-out infinite;
}
.mobile-menu-status--open .mobile-menu-status-dot { background: var(--color-teal); }
.mobile-menu-status--open .mobile-menu-status-text { color: var(--color-teal); }
.mobile-menu-status--closed .mobile-menu-status-dot { background: var(--color-magenta); }
.mobile-menu-status--closed .mobile-menu-status-text { color: var(--color-magenta); }

/* Desktop nav link hover underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--color-magenta);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease-bounce);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ── Record animation ── */
.record {
  width: 100%; height: 100%; border-radius: 50%; background: #111;
  background-image: repeating-radial-gradient(#111 0px, #1a1a1a 2px, #0a0a0a 4px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 0 rgba(135,214,211,0);
  display: flex; align-items: center; justify-content: center;
  position: relative; border: 4px solid #000;
  transition: box-shadow 0.5s var(--ease-smooth), transform 0.5s var(--ease-bounce);
}
.record-wrap:hover .record {
  box-shadow: 0 35px 70px rgba(0,0,0,0.45), 0 0 0 12px rgba(135,214,211,0.25);
  transform: translateY(-6px);
}
.spinning { animation: spin 3.2s linear infinite; }
.record-wrap:hover .spinning { animation-duration: 2.2s; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.record-label {
  width: 34%; height: 34%; background: #fff; border-radius: 50%;
  border: 3px solid #000; display: flex; align-items: center;
  justify-content: center; position: relative;
}
.record-label img { width: 75%; height: auto; object-fit: contain; }
.record-hole {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
  background: var(--color-teal); border-radius: 50%;
}

/* Hero record entry animation */
.hero-visual { animation: recordFloat 0.9s var(--ease-bounce) 0.4s both; }
@keyframes recordFloat {
  from { opacity: 0; transform: translateY(40px) scale(0.88) rotate(-8deg); }
  to   { opacity: 1; transform: translateY(0)  scale(1)    rotate(0deg); }
}
/* Hero text stagger */
.hero-text .label   { animation: heroFadeUp 0.6s var(--ease-smooth) 0.1s both; }
.hero-text h1       { animation: heroFadeUp 0.7s var(--ease-smooth) 0.2s both; }
.hero-text .hero-info { animation: heroFadeUp 0.7s var(--ease-smooth) 0.35s both; }
.hero-text p        { animation: heroFadeUp 0.7s var(--ease-smooth) 0.45s both; }
.hero-text .hero-btns { animation: heroFadeUp 0.7s var(--ease-smooth) 0.55s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.info-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-magenta);
  display: block;
  margin-bottom: 0.4rem;
}

.info-details span {
  font-family: var(--font-sans);
  font-size: h1;
  font-weight: 400;
  color: #000;
}

/* ── Ticker ── */
.ticker { background: #000; color: #fff; overflow: hidden; font-family: var(--font-mono); text-transform: uppercase; border-bottom: 2px solid #000; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { white-space: nowrap; }

/* ── Cards & components ── */
.quick-card {
  background: #fff; border-radius: 18px; border: 2px solid var(--border-soft);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-bounce), border-color 0.25s ease, box-shadow 0.35s var(--ease-smooth);
}
.quick-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--color-teal);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.quick-card-link {
  font-family: var(--font-mono); font-weight: 700; color: var(--color-magenta); font-size: 0.8rem;
  transition: letter-spacing 0.3s var(--ease-smooth);
}
.quick-card:hover .quick-card-link { letter-spacing: 0.06em; }

/* ── Quick Card internals ── */
.quick-card h3 { margin-bottom: 0.6rem; }
.qc-body { display: flex; flex-direction: column; gap: 0.6rem; }

.qc-address {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--color-text-muted); line-height: 1.4;
}

/* Hours mini-table */
.qc-hours { width: 100%; border-collapse: collapse; font-size: 0.75rem; }
.qc-hours td { padding: 0.22rem 0; vertical-align: top; }
.qc-hours td:first-child { color: var(--color-text-muted); font-family: var(--font-mono); padding-right: 0.6rem; white-space: nowrap; }
.qc-hours td:last-child { font-family: var(--font-mono); font-weight: 500; text-align: right; white-space: nowrap; }
.qc-hours tr.qc-today td { color: var(--color-magenta); font-weight: 700; }

/* Feature rows (bullet-style) */
.qc-feature-rows { display: flex; flex-direction: column; gap: 0.35rem; padding: 0; }
.qc-feature-rows li {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.3;
}
.qc-row-glyph { color: var(--color-teal-dark); font-size: 0.65rem; flex-shrink: 0; line-height: 1; }
.qc-detail-line {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.74rem; color: var(--color-text-muted); font-family: var(--font-mono);
}

/* Event rows */
.qc-event-rows { display: flex; flex-direction: column; gap: 0.45rem; padding: 0; }
.qc-event-rows li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 500; line-height: 1.3; }
.qc-event-icon { font-size: 0.85rem; color: var(--color-magenta); flex-shrink: 0; line-height: 1; }

/* Live badge — base */
.qc-live-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.28rem 0.6rem; border-radius: 999px; border: 1px solid;
  font-family: var(--font-mono); font-size: 0.67rem; font-weight: 500;
  width: fit-content; margin-top: 0.2rem; white-space: nowrap;
}
.qc-badge--teal { background: rgba(135,214,211,0.1); color: var(--color-teal-dark); border-color: rgba(135,214,211,0.35); }
.qc-badge--magenta { background: rgba(205,2,130,0.08); color: var(--color-magenta); border-color: rgba(205,2,130,0.25); }
.qc-badge--open { background: rgba(135,214,211,0.1); color: var(--color-teal-dark); border-color: rgba(135,214,211,0.35); }
.qc-badge--closed { background: rgba(205,2,130,0.08); color: var(--color-magenta); border-color: rgba(205,2,130,0.25); }

/* Pulsing dot */
.qc-pulse-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; animation: qcPulse 2s ease-in-out infinite; }
.qc-pulse-dot--teal  { background: var(--color-teal-dark); }
.qc-pulse-dot--magenta { background: var(--color-magenta); }
@keyframes qcPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.7); }
}

/* Spacer pushes CTA to bottom */
.qc-spacer { flex: 1; min-height: 0.5rem; }

.highlight-item {
  border-left: 4px solid var(--color-teal); padding-left: 1.5rem; margin-bottom: 2rem;
  transition: transform 0.35s var(--ease-bounce), border-left-color 0.25s ease;
}
.highlight-item:hover { transform: translateX(10px); border-left-color: var(--color-magenta); }
.highlight-price { font-family: var(--font-mono); color: var(--color-magenta); font-weight: 700; }

.mascot-strip .container { display: flex; align-items: center; }

.mascot-image {
  width: clamp(100px, 14vw, 180px);
  height: clamp(100px, 14vw, 180px);
  object-fit: contain;
  padding: clamp(8px, 2vw, 15px);
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-bounce), box-shadow 0.4s var(--ease-smooth);
}
.mascot-strip:hover .mascot-image {
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 6px 6px 0 var(--color-teal);
}

.info-card {
  background: #fff; border-radius: 18px; border: 2px solid var(--border-soft);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.3s var(--ease-smooth);
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.08); }

.community-link-item {
  display: flex; align-items: center; background: #fff;
  border: 2px solid var(--border-soft); border-radius: 14px; margin-bottom: 1rem;
  transition: transform 0.3s var(--ease-bounce), border-color 0.25s ease, box-shadow 0.3s ease;
}
.community-link-item:hover {
  transform: translateX(6px);
  border-color: var(--color-teal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.community-link-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ── Form Styles ── */
.form-input {
  padding: clamp(0.8rem, 2vw, 0.95rem) clamp(1rem, 2.5vw, 1.25rem);
  border: 2px solid var(--border-soft); border-radius: 999px;
  font-family: var(--font-sans); font-size: 1rem; width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 4px rgba(135,214,211,0.2); }

/* ══════════════════════════════════════════════
   FOOTER 
══════════════════════════════════════════════ */

/* ── Main footer ── */
.footer { background: #0a0a0a; color: #fff; position: relative; }
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(
    circle at 50% 0%, transparent 0, transparent 48px,
    rgba(255,255,255,0.015) 48px, rgba(255,255,255,0.015) 50px
  );
  pointer-events: none;
}
.footer-container {
  max-width: min(1200px, 92vw); margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}
/* Top: brand + social */
.footer-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; max-width: 340px; }
.footer-logo-row { display: flex; align-items: center; gap: 0.6rem; }
.footer-record-icon { width: 44px; height: 44px; flex-shrink: 0; }
.footer-logo-wordmark { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.4rem); color: #fff; line-height: 1; }
.footer-logo-wordmark span { color: var(--color-magenta); }
.footer-tagline { font-family: var(--font-hand); font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--color-teal); line-height: 1.3; opacity: 0.9; }
.footer-address-mini { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); line-height: 1.7; }
/* Social pills */
.footer-social { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.social-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 0.55rem 1rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.7);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s var(--ease-bounce);
  min-height: 44px;
}
.social-pill:hover { background: rgba(135,214,211,0.12); border-color: var(--color-teal); color: var(--color-teal); transform: translateY(-2px); }
.social-pill:active { transform: scale(0.96); }
.social-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Light-background variant — used inside white cards (e.g. About contact card) */
.social-pill--light {
  background: var(--bg-surface);
  border-color: var(--border-soft);
  color: var(--color-text);
}
.social-pill--light:hover {
  background: rgba(205,2,130,0.06);
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}
/* Grid */
.footer-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-title {
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.7rem; color: var(--color-teal);
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem;
}
.footer-col-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
/* Address */
.footer-addr { font-style: normal; font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.9; margin-bottom: 1.25rem; }
.footer-addr strong { color: #fff; display: block; font-size: 1.05rem; margin-bottom: 0.2rem; }
.footer-map-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-teal); border-bottom: 1px solid rgba(135,214,211,0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, gap 0.3s var(--ease-bounce);
}
.footer-map-link:hover { border-color: var(--color-teal); gap: 0.7rem; }
.footer-map-link svg { width: 12px; height: 12px; flex-shrink: 0; }
/* Hours */
.footer-hours-table { width: 100%; font-size: 0.88rem; border-collapse: collapse; }
.footer-hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-hours-table tr:last-child { border-bottom: none; }
.footer-hours-table td { padding: 0.55rem 0; color: rgba(255,255,255,0.6); vertical-align: middle; }
.footer-hours-table td:first-child { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); width: 5.5rem; }
.footer-hours-table td:last-child { font-weight: 500; color: rgba(255,255,255,0.8); text-align: right; }
.hours-open-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(135,214,211,0.12); color: var(--color-teal);
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.2rem 0.6rem; border-radius: 999px;
  border: 1px solid rgba(135,214,211,0.25); margin-bottom: 1rem;
}
.hours-open-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--color-teal); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
/* Nav links */
.footer-links-list { display: flex; flex-direction: column; gap: 0; }
.footer-link-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  transition: color 0.25s ease, padding-left 0.3s var(--ease-bounce);
  min-height: 44px;
}
.footer-link-item:last-child { border-bottom: none; }
.footer-link-item:hover { color: #fff; padding-left: 6px; }
.footer-link-item:hover .link-arrow { transform: translateX(4px); color: var(--color-teal); }
.link-arrow { color: rgba(255,255,255,0.25); font-family: var(--font-mono); font-size: 0.75rem; transition: transform 0.3s var(--ease-bounce), color 0.25s ease; flex-shrink: 0; }
.footer-link-item.external .link-arrow::after { content: ' ↗'; }
.footer-link-item:not(.external) .link-arrow::after { content: ' →'; }
/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  padding-bottom: max(clamp(1.25rem, 3vw, 2rem), var(--safe-bottom));
}
.footer-copyright { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.3); }
.footer-copyright a { color: rgba(255,255,255,0.3); border-bottom: 1px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; }
.footer-copyright a:hover { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.3); }
.footer-made-with { font-family: var(--font-hand); font-size: 1rem; color: rgba(255,255,255,0.25); display: flex; align-items: center; gap: 0.3rem; transition: color 0.3s ease; }
.footer-made-with:hover { color: var(--color-magenta); }
.footer-made-with .heart { display: inline-block; transition: transform 0.3s var(--ease-bounce); }
.footer-made-with:hover .heart { transform: scale(1.3); }
.footer-back-to-top {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 0.45rem 0.9rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease-bounce), background 0.25s ease;
}
.footer-back-to-top:hover { color: var(--color-teal); border-color: var(--color-teal); background: rgba(135,214,211,0.08); transform: translateY(-3px); }
.footer-back-to-top svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease-bounce); }
.footer-back-to-top:hover svg { transform: translateY(-2px); }

/* ── Scroll Reveal animations (staggered) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Stagger siblings */
.grid-4 .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-4 .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-4 .reveal:nth-child(4) { transition-delay: 0.24s; }
.highlight-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.highlight-item.reveal:nth-child(3) { transition-delay: 0.2s; }


/* ── Reduced motion safety net ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track, .spinning { animation: none; }
  .reveal, .hero-text .label, .hero-text h1, .hero-text .hero-info,
  .hero-text p, .hero-text .hero-btns, .hero-visual { 
    animation: none; opacity: 1; transform: none; transition: none;
  }
}


/* ════════════════════════════════════════════════════════════
   DESKTOP
   ════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .container { max-width: min(1200px, 92vw); margin: 0 auto; padding: 0 var(--container-padding); }
  .section { padding: var(--section-padding) 0; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }

  .btn:hover { transform: translateY(-3px) scale(1.02); }

  .nav { padding: 1.25rem 0; }
  .nav-links { display: flex; gap: clamp(1rem, 2vw, 1.75rem); font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; align-items: center; }
  .nav-links a { color: #000; }
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .mobile-backdrop { display: none !important; }

  /* Reduced hero height for better fold visibility */
  .hero { background-color: var(--color-teal); padding: clamp(7rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 7rem); border-bottom: 2px solid #000; display: flex; align-items: center; min-height: 80vh; }
  .hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--gap-lg); align-items: center; }
  .hero h1, .hero p { color: #000; }
  .hero .label { color: #000; border-bottom: 1.5px solid #000; display: inline-block; width: fit-content; margin-bottom: 1rem; }
  .hero-text p { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 500; margin-bottom: 2.5rem; max-width: 500px; }
  .hero-btns { display: flex; gap: 1rem; }

  .record-wrap { position: relative; width: clamp(280px, 30vw, 380px); height: clamp(280px, 30vw, 380px); display: flex; align-items: center; justify-content: center; }

  .ticker { padding: 1.2rem 0; font-size: 0.85rem; }
  .ticker-item { padding: 0 2rem; }

  .quick-card { padding: clamp(1.25rem, 2vw, 1.75rem); }
  .quick-card h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); margin-bottom: 0.5rem; }
  .quick-card .label { font-size: 0.7rem; margin-bottom: 0.35rem; }
  .qc-body { gap: 0.5rem; }
  .qc-address { font-size: 0.72rem; }
  .qc-hours { font-size: 0.7rem; }
  .qc-hours td { padding: 0.18rem 0; }
  .qc-hours td:first-child { padding-right: 0.4rem; }
  .qc-feature-rows li { font-size: 0.72rem; }
  .qc-detail-line { font-size: 0.68rem; }
  .qc-event-rows li { font-size: 0.74rem; }
  .qc-live-badge { font-size: 0.62rem; padding: 0.22rem 0.5rem; }
  .quick-card-link { margin-top: 1rem; font-size: 0.75rem; }
  .highlight-price { font-size: clamp(1.3rem, 2vw, 1.6rem); }

  .mascot-strip { padding: var(--section-padding) 0; }
  .mascot-strip .container { gap: clamp(2rem, 4vw, 3.5rem); }

  .info-card { padding: clamp(2rem, 4vw, 3.25rem); }

  .community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; }
  .community-link-item { gap: 1.5rem; padding: 1.5rem; min-height: 70px; }

  /* Footer desktop overrides */
  .footer-cta-actions .footer-cta-btn { min-width: 160px; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-accordion-trigger { display: none; }
  .footer-accordion-content { max-height: none !important; overflow: visible !important; padding-bottom: 0 !important; }
  .footer-col-title { display: flex; }
} /* end @media (min-width: 769px) */

/* ── Ultrawide cap ── */
@media (min-width: 1600px) {
  .container { max-width: 1280px; }
}
@media (min-width: 2000px) {
  .container { max-width: 1440px; }
  html { font-size: 18px; }
}


/* ════════════════════════════════════════════════════════════
   MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  p { font-size: 1rem; }
  .label { font-size: 0.82rem; }

  .container {
    max-width: 100%;
    padding: 0 var(--container-padding);
    padding-left: max(var(--container-padding), calc(var(--safe-left) + 1.25rem));
    padding-right: max(var(--container-padding), calc(var(--safe-right) + 1.25rem));
  }
  .section { padding: clamp(2.5rem, 6vw, 3.5rem) 0; }
  
  /* Optimized 2x2 mobile grid */
  .grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.75rem, 3vw, 1rem); }
  
  .grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--gap-md); }

  .btn { padding: 1rem 2rem; font-size: 0.82rem; min-height: 52px; width: 100%; justify-content: center; }

  .nav { padding: 1rem 0; padding-top: max(1rem, var(--safe-top)); }
  .nav-links { display: none; }

  /* Show hamburger pill on mobile */
  .nav-hamburger { display: flex; }

  /* Show backdrop and drawer on mobile */
  .mobile-backdrop { display: block; }
  .mobile-menu { display: flex; }

  /* Reduced hero for mobile */
  .hero {
    background-color: var(--color-teal);
    padding: max(6rem, calc(var(--safe-top) + 6rem)) 0 5rem;
    border-bottom: 2px solid #000; display: flex; align-items: center;
    min-height: 80svh;
  }
  .hero .container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.5rem; }
  .hero h1, .hero p { color: #000; }
  .hero .label { color: #000; border-bottom: 1.5px solid #000; display: inline-block; width: fit-content; margin-bottom: 0.75rem; }
  .hero-text { width: 100%; }
  .hero-text p { font-size: 1.1rem; font-weight: 500; margin-bottom: 2rem; }
  .hero-btns { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }

  .record-wrap { position: relative; width: min(300px, 80vw); height: min(300px, 80vw); display: flex; align-items: center; justify-content: center; }

  .ticker { padding: 0.9rem 0; font-size: 0.78rem; }
  .ticker-item { padding: 0 1.5rem; }

  .quick-card { padding: clamp(1rem, 4vw, 1.5rem); }
  .quick-card h3 { margin-bottom: 0.4rem; font-size: 1rem; }
  .quick-card .label { font-size: 0.68rem; margin-bottom: 0.25rem; }
  .qc-body { gap: 0.45rem; }
  .grid-4 .qc-hours { font-size: 0.67rem; }
  .grid-4 .qc-hours td { padding: 0.15rem 0; }
  .grid-4 .qc-feature-rows li,
  .grid-4 .qc-event-rows li { font-size: 0.7rem; }
  .grid-4 .qc-detail-line { font-size: 0.65rem; }
  .grid-4 .qc-live-badge { font-size: 0.6rem; padding: 0.2rem 0.45rem; }
  .quick-card-link { margin-top: 1rem; font-size: 0.72rem; }
  .highlight-price { font-size: 1.3rem; }

  .mascot-strip { padding: 3rem 0; }
  .mascot-strip .container { flex-direction: column; text-align: center; align-items: center; gap: 1.5rem; }

  .info-card { padding: 1.75rem; }

  .community-inner { display: flex; flex-direction: column; gap: 2rem; }
  .community-link-item { gap: 1rem; padding: 1.25rem; min-height: 68px; }
  .community-link-item:active { background: var(--bg-surface); }

  /* Footer mobile overrides */
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 2.5rem clamp(1.25rem,5vw,2rem); }
  .footer-cta-actions { width: 100%; flex-direction: column; }
  .footer-cta-actions .footer-cta-btn { width: 100%; justify-content: center; min-height: 52px; font-size: 0.85rem; }
  .footer-top { flex-direction: column; gap: 1.75rem; }
  .footer-brand { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding: 0; border-bottom: none; }
  .footer-accordion-item { border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-accordion-trigger {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 1.1rem 0; background: none;
    color: var(--color-teal); font-family: var(--font-mono);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
    min-height: 52px; cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(135,214,211,0.15);
  }
  .footer-accordion-trigger .acc-chevron { color: rgba(255,255,255,0.3); font-size: 0.9rem; transition: transform 0.3s var(--ease-bounce); flex-shrink: 0; }
  .footer-accordion-trigger[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); }
  .footer-accordion-content {
    overflow: hidden;
    max-height: 0;
    padding-bottom: 0;
    transition: max-height 0.4s var(--ease-smooth), padding-bottom 0.4s var(--ease-smooth);
  }
  .footer-accordion-content.open {
    max-height: 600px;
    padding-bottom: 1.5rem;
  }
  .footer-col-title { display: none; }
  .footer-bottom { flex-direction: column-reverse; align-items: center; text-align: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1.5rem; }
  .footer-link-item { min-height: 50px; }
  .social-pill { padding: 0.7rem 1.1rem; }

  .newsletter-form { flex-direction: column; }
}

/* ── Small phone (≤480px): stack grid-4 to single column ── */
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── Tablet tweaks (769–1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero .container { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-accordion-trigger { display: none; }
  .footer-accordion-content { max-height: none !important; overflow: visible !important; padding-bottom: 0 !important; }
  .footer-col-title { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   INTERIOR PAGES — shared & page-specific styles
   ════════════════════════════════════════════════════════════ */

/* ── Active nav link ── */
.nav-links a[aria-current="page"] { color: var(--color-magenta); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* ── Page hero (teal variant — Shop, Events, About) ── */
.page-hero {
  background: var(--color-teal);
  padding: max(6rem, calc(var(--nav-height, 72px) + 2.5rem)) 0 3.5rem;
  border-bottom: 2px solid #000;
}
.page-hero .reveal {
  opacity: 1;
  transform: none;
}
.page-hero .label {
  color: #000;
  border-bottom: 1.5px solid #000;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  color: #000;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: #000;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* ════════════════════════════════════════════
   SHOP PAGE
════════════════════════════════════════════ */

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-card {
  background: #fff;
  border: 2px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-bounce), border-color 0.25s ease, box-shadow 0.35s var(--ease-smooth);
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--color-teal);
  box-shadow: 0 16px 36px rgba(0,0,0,0.09);
}
.product-card-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: var(--bg-surface);
  border-bottom: 1.5px solid var(--border-soft);
  display: block;
}
.product-card-img-placeholder {
  width: 100%; aspect-ratio: 1/1;
  background: var(--bg-surface);
  border-bottom: 1.5px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hand); font-size: 2rem; color: var(--color-text-muted);
}
.product-card-body { padding: 1rem 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.product-card-format {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-teal-dark);
}
.product-card-title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; line-height: 1.2; }
.product-card-artist { font-size: 0.8rem; color: var(--color-text-muted); }
.product-card-price {
  font-family: var(--font-mono); font-weight: 700; color: var(--color-magenta);
  font-size: 0.9rem; margin-top: auto; padding-top: 0.5rem;
}
.product-card-link {
  display: block; margin-top: 0.75rem;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--color-magenta);
  transition: letter-spacing 0.3s var(--ease-smooth);
}
.product-card:hover .product-card-link { letter-spacing: 0.1em; }

/* Skeleton loader */
.skeleton-card {
  background: #fff; border: 2px solid var(--border-soft); border-radius: 16px; overflow: hidden;
}
.skeleton-img { width: 100%; aspect-ratio: 1/1; }
.skeleton-body { padding: 1rem 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.skeleton-line {
  height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-line.tall { height: 16px; width: 80%; }
.skeleton-line.short { width: 50%; }
.skeleton-line.price {
  width: 35%;
  background: linear-gradient(90deg, #fce4f4 25%, #f5b8e0 50%, #fce4f4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.category-card {
  background: #fff; border: 2px solid var(--border-soft); border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform 0.35s var(--ease-bounce), border-color 0.25s ease, box-shadow 0.35s var(--ease-smooth);
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-teal);
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
}
.category-icon { font-size: 2rem; line-height: 1; }
.category-card h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 0; }
.category-card p  { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

/* Gift certificate banner */
.gift-banner {
  background: rgba(135,214,211,0.1);
  border: 1.5px solid var(--color-teal);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.gift-banner h2 { margin-bottom: 0.5rem; font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.gift-banner p  { color: var(--color-text-muted); max-width: 480px; margin: 0; }

/* API fallback notice */
.api-notice {
  grid-column: 1 / -1; text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-surface); border-radius: 16px;
  border: 1.5px dashed var(--border-soft);
}
.api-notice p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

/* ════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════ */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-visual {
  border-radius: 20px;
  border: 2px solid var(--border-soft);
  overflow: hidden;
}
.service-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
}
.service-placeholder-icon { font-size: 3.5rem; line-height: 1; }
.service-placeholder-text {
  font-family: var(--font-hand); font-size: 1.1rem;
  color: var(--color-text-muted); text-align: center; padding: 0 1.5rem;
}

/* Forms */
.service-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group   { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-mono); font-size: 0.73rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-text);
}
.form-field {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-family: var(--font-sans); font-size: 0.95rem;
  background: #fff; color: var(--color-text);
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none; -webkit-appearance: none;
}
.form-field:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(135,214,211,0.25);
}
select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
textarea.form-field { resize: vertical; min-height: 100px; border-radius: 10px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-confirm {
  display: none; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
  color: var(--color-teal-dark); text-transform: uppercase; letter-spacing: 1px;
}
.form-confirm.visible { display: flex; }
.form-confirm-icon { font-size: 1.1rem; }

/* Benefit pills */
.benefit-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.benefit-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.8px;
  background: rgba(135,214,211,0.1); color: var(--color-teal-dark);
  border: 1px solid rgba(135,214,211,0.3);
}

.form-accordion {
  background: var(--color-surface, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.1));
  border-radius: 8px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.form-accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  outline: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Pushes the icon to the right */
  gap: 0.5rem;
  list-style: none; /* Hides default marker in most browsers */
}
/* Hides default marker in WebKit browsers (Chrome/Safari) */
.form-accordion summary::-webkit-details-marker {
  display: none;
}
/* Hides default marker in Firefox and all other non-WebKit browsers */
.form-accordion summary::marker {
  display: none;
}
.form-accordion summary:hover {
  color: var(--color-magenta, #D53A6B);
}
.accordion-icon {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem;
  max-width: 1.25rem;
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}

.form-accordion summary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.form-accordion[open] summary {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border, rgba(0, 0, 0, 0.1));
  padding-bottom: 0.75rem;
}
/* Rotate the icon when the accordion is open */
.form-accordion[open] .accordion-icon {
  transform: rotate(180deg);
}

/* ════════════════════════════════════════════
   EVENTS PAGE
════════════════════════════════════════════ */

 /* ── Market section layout ────────────────────────────────── */
 .market-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* ── Photo grid ───────────────────────────────────────────── */
.market-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1.25vw, 0.75rem);
}

.market-gallery__img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

/* 2-col on small screens */
@media (max-width: 600px) {
  .market-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-gallery__item:last-child {
    display: none;
  }
}

@media (max-width: 360px) {
  .market-gallery {
    grid-template-columns: 1fr;
  }
  .market-gallery__item:last-child {
    display: block;
  }
}

/* ── Tighten gap between market section and TBA section ───── */
.section--tba {
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* ── Instagram embed: mobile-clean overrides ── */
.gallery-item.instagram-embed {
  /* Let height be driven by content, not a fixed aspect ratio */
  aspect-ratio: unset;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}
/* Pre-load placeholder height so there's no layout jump */
.gallery-item.instagram-embed:not(:has(iframe)) {
  min-height: 480px;
  background: #f7f7f7;
  border-radius: 12px;
}
/* The blockquote itself must never overflow its container */
.instagram-media {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}
/* The iframe Instagram injects */
.instagram-media iframe,
.gallery-item.instagram-embed iframe {
  max-width: 100% !important;
  width: 100% !important;
}
/* On mobile, stack gallery to single column so each embed gets full width */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
  .gallery-item.instagram-embed {
    border-radius: 12px;
    overflow: hidden;
  }
}
/* On tablet (2 cols), ensure no overflow */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.market-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--section-padding) 0;
}
.market-section .label { color: var(--color-magenta); }
.market-section h2 {
  color: var(--color-text);
  font-size: clamp(2rem, 5vw, 3.8rem);
}
.market-section p {
  color: var(--color-text-muted);
  max-width: 600px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}

/* — Badges & Pills — */
.market-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(135, 214, 211, 0.15);
  border: 1px solid rgba(135, 214, 211, 0.4);
  color: var(--color-teal-dark);
}
.market-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.next-market-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-magenta);
  color: #fff;
  width: fit-content;
}

/* — Gallery Grid — */

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: start;
  margin-top: 2.5rem;
}

/* Static image items */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  aspect-ratio: 1 / 1;
}
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item.instagram-embed {
  aspect-ratio: unset;
  border: none;
  background: transparent;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.gallery-item.instagram-embed .instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Clickable Instagram-style image item */
.gallery-item.instagram-style {
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.gallery-item.instagram-style:hover .instagram-overlay { opacity: 1; }
.instagram-overlay span {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Placeholder items */
.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--bg-surface);
  border: 1.5px dashed var(--border-soft);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.gallery-placeholder:hover {
  background: rgba(135, 214, 211, 0.08);
  border-color: var(--color-teal);
}
.gallery-placeholder-icon { font-size: 1.6rem; opacity: 0.4; }
.gallery-placeholder-text {
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0 1rem;
}
.gallery-placeholder--light { background: var(--bg-surface); border-color: var(--border-soft); }
.gallery-placeholder--light:hover { background: rgba(135, 214, 211, 0.08); border-color: var(--color-teal); }
.gallery-placeholder--light .gallery-placeholder-text { color: var(--color-text-muted); }

/* — TBA Event Cards — */
.tba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 2.5rem;
}
.tba-card {
  background: #fff;
  border: 2px dashed var(--border-soft);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-bounce);
}
.tba-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-4px);
}
.tba-card-icon  { font-size: 2rem; line-height: 1; }
.tba-card-icon svg { width: 2rem; height: 2rem; color: var(--color-teal-dark); }
.tba-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.tba-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}
.tba-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(135, 214, 211, 0.1);
  color: var(--color-teal-dark);
  border: 1px solid rgba(135, 214, 211, 0.3);
  width: fit-content;
}

/* — Responsive — */
@media (max-width: 900px) {
  .tba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tba-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */

.story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.story-photo {
  aspect-ratio: 3/4;
  object-fit: cover; 
  object-position: bottom;
  background: var(--bg-surface);
  border: 1.5px dashed var(--border-soft);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.visit-card {
  background: #fff; border: 2px solid var(--border-soft); border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.35s var(--ease-bounce), border-color 0.25s ease, box-shadow 0.35s var(--ease-smooth);
}
.visit-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-teal);
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
}
.visit-card-icon { font-size: 1.75rem; line-height: 1; }
.visit-card h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 0; }

.about-hours-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; margin-top: 0.25rem; }
.about-hours-table td { padding: 0.22rem 0; vertical-align: top; }
.about-hours-table td:first-child {
  color: var(--color-text-muted); font-family: var(--font-mono);
  padding-right: 0.6rem; white-space: nowrap;
}
.about-hours-table td:last-child { font-family: var(--font-mono); font-weight: 500; text-align: right; }
.about-hours-table tr.today td { color: var(--color-magenta); font-weight: 700; }

.about-open-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.28rem 0.65rem; border-radius: 999px; border: 1px solid;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  width: fit-content; margin-bottom: 0.5rem;
}
.about-open-badge.is-open  { background: rgba(135,214,211,0.1);  color: var(--color-teal-dark); border-color: rgba(135,214,211,0.35); }
.about-open-badge.is-closed { background: rgba(205,2,130,0.08); color: var(--color-magenta);   border-color: rgba(205,2,130,0.25); }
.about-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; animation: qcPulse 2s ease-in-out infinite; }

.map-link-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  background: #000; color: #fff;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 0.5rem; width: fit-content;
  transition: background 0.25s ease, transform 0.3s var(--ease-bounce);
}
.map-link-btn:hover { background: #333; transform: translateY(-2px); color: #fff; }
.map-link-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.direction-card {
  background: #fff; border: 2px solid var(--border-soft); border-radius: 16px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.3s var(--ease-bounce), border-color 0.25s ease;
}
.direction-card:hover { transform: translateX(6px); border-color: var(--color-teal); }
.direction-card-icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.direction-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 0.3rem; }
.direction-card p  { font-size: 0.83rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }



/* ════════════════════════════════════════════
   INTERIOR PAGE RESPONSIVE OVERRIDES
════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .visit-grid     { grid-template-columns: 1fr 1fr; }
  .about-gallery  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-grid          { grid-template-columns: repeat(2, 1fr); }
  .category-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid          { grid-template-columns: repeat(2, 1fr); }
  .tba-grid              { grid-template-columns: 1fr; }
  .service-block         { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .story-grid            { grid-template-columns: 1fr; }
  .story-photo-placeholder { aspect-ratio: 4/3; order: -1; }
}

@media (max-width: 540px) {
  .visit-grid       { grid-template-columns: 1fr; }
  .directions-grid  { grid-template-columns: 1fr; }
  .form-grid-2      { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .product-grid   { grid-template-columns: 1fr; }
  .category-grid  { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .about-gallery  { grid-template-columns: 1fr; }
}

/* ── SVG icon sizing in component contexts ── */
.category-icon svg,
.visit-card-icon svg,
.direction-card-icon svg,
.tba-card-icon svg,
.service-placeholder-icon svg {
  width: 2rem; height: 2rem;
  display: block;
  color: var(--color-magenta);
}
.benefit-pill svg {
  width: 0.85rem; height: 0.85rem; flex-shrink: 0;
}
.market-badge svg {
  width: 0.9rem; height: 0.9rem; flex-shrink: 0;
}
.direction-card-icon svg { color: var(--color-teal-dark); }
.visit-card-icon svg     { color: var(--color-magenta); }
.tba-card-icon svg       { color: var(--color-teal-dark); }