/* ========================================
   THE NASH KEYS — On-Brand Website Styles
   Brand Colors: Black #0E151C | Red #A62C2A | Orange #F89522 | Yellow #F9D074
   Fonts: Bebas Neue (display), Oswald (headings), Lato (body)
   ======================================== */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Palette — exact Pantone matches */
  --nash-black: #0E151C;
  --nash-black-light: #182230;
  --nash-black-lighter: #1e2d3d;
  --nash-red: #A62C2A;
  --nash-red-light: #c43b39;
  --nash-red-dark: #8a2220;
  --nash-red-glow: rgba(166, 44, 42, 0.3);
  --nash-orange: #F89522;
  --nash-orange-light: #faa94e;
  --nash-orange-glow: rgba(248, 149, 34, 0.15);
  --nash-yellow: #F9D074;
  --nash-yellow-light: #fae0a0;
  --nash-yellow-glow: rgba(249, 208, 116, 0.1);
  --gold: #F9D074;

  /* Alternate section palette — warm charcoal, not bright */
  --cream-dark: #161210;
  --nash-black-text: #e8dfd4;

  /* Neutrals */
  --white: #EDE6DB;
  --cream: #12100d;
  --gray-100: #1c1915;
  --gray-200: #2e2923;
  --gray-300: #b8b0a4;
  --gray-500: #7a7265;
  --gray-700: #3d3830;
  --gray-900: #1a1714;

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --nav-height: 80px;
  --section-padding: 120px;
  --container-max: 1200px;

  /* Motion */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--nash-black);
  color: rgba(237, 230, 219, 0.88);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nash-orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--nash-yellow) 40%, var(--nash-orange) 70%, var(--nash-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: titleGradientShift 4s ease-in-out infinite alternate;
}

@keyframes titleGradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Alternate Section System ---------- */
.section--light {
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.section--light .section-label {
  color: var(--nash-orange);
}

.section--light .section-title {
  background: linear-gradient(135deg, var(--nash-black) 0%, var(--nash-red) 40%, var(--nash-orange) 70%, var(--nash-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: titleGradientShift 4s ease-in-out infinite alternate;
}

.section--light .section-desc {
  color: var(--gray-300);
}

.section--light h3,
.section--light h4 {
  color: var(--nash-yellow);
}

.section--light p {
  color: var(--gray-300);
}

/* ---------- Red Section System ---------- */
.section--red {
  background: var(--nash-red);
  position: relative;
  overflow: hidden;
}

.section--red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 20px,
    rgba(0,0,0,0.05) 20px,
    rgba(0,0,0,0.05) 22px
  );
  pointer-events: none;
}

.section--red .btn-primary {
  background: var(--white);
  color: var(--nash-red);
}

.section--red .btn-primary:hover {
  background: var(--nash-yellow);
  color: var(--nash-black);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.section--red .btn-outline {
  border-color: rgba(237,230,219,0.4);
  color: var(--white);
}

.section--red .btn-outline:hover {
  background: var(--white);
  color: var(--nash-red);
}

/* ---------- Piano Key Divider ---------- */
.piano-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--nash-red) 0%, var(--nash-orange) 50%, var(--nash-yellow) 100%);
  position: relative;
}

/* piano-divider ::after removed — now a clean gradient bar */

/* ---------- Mid-Page CTA ---------- */
.mid-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.mid-cta-lead {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(237,230,219,0.72);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mid-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.mid-cta .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Type Break ---------- */
.type-break {
  padding: 48px 24px;
  text-align: center;
  background: var(--nash-black);
  overflow: hidden;
}

.type-break-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  color: rgba(248, 149, 34, 0.35);
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
}

.type-break-text.glow {
  animation: hiddenDoorGlow 5s ease-in-out;
}

@keyframes hiddenDoorGlow {
  0%   { color: rgba(248, 149, 34, 0.35); }
  40%  { color: rgba(248, 149, 34, 0.6); text-shadow: 0 0 40px rgba(248, 149, 34, 0.12); }
  60%  { color: rgba(248, 149, 34, 0.6); text-shadow: 0 0 40px rgba(248, 149, 34, 0.12); }
  100% { color: rgba(248, 149, 34, 0.35); text-shadow: none; }
}

.type-break-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gray-500);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ---------- Inline Style Replacement Classes ---------- */
.menu-note {
  text-align: center;
  color: var(--nash-orange);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.event-time-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section--light .event-time-label {
  color: var(--nash-orange);
}

.event-time-label {
  color: var(--nash-orange);
}

.experience-aside {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 16px;
  font-style: italic;
}

.section--light .experience-aside {
  color: var(--gray-500);
}

.speakeasy-activism-note {
  font-size: 0.82rem;
  color: var(--gray-300);
  margin: 16px 0;
}

.speakeasy-activism-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aside-muted {
  color: var(--gray-500);
  font-style: italic;
}

.speakeasy-preview-note {
  font-size: 0.88rem;
  color: var(--nash-yellow);
  margin-bottom: 20px;
}

.save-garden-box {
  margin-top: 32px;
  padding: 16px 24px;
  border: 1px solid rgba(248, 149, 34, 0.15);
  border-radius: 8px;
  background: rgba(248, 149, 34, 0.03);
  text-align: center;
}

.save-garden-title {
  font-size: 0.82rem;
  color: var(--nash-orange);
  margin-bottom: 8px;
}

.save-garden-desc {
  font-size: 0.78rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.save-garden-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.speakeasy-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--nash-yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(249, 208, 116, 0.3);
}

.speakeasy-card-subtitle {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.speakeasy-card-preorder {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nash-orange);
  margin-bottom: 16px;
}

.speakeasy-card-preview {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 16px;
  text-align: center;
}

.speakeasy-card-preview a {
  color: var(--nash-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.captain-tier {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(249, 208, 116, 0.1);
  text-align: center;
}

.captain-tier-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nash-yellow);
  opacity: 0.7;
  font-style: italic;
}

.speakeasy-card-process {
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(249, 208, 116, 0.1);
  border-bottom: 1px solid rgba(249, 208, 116, 0.1);
}

.process-step {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
  color: var(--nash-yellow);
  font-weight: 600;
}

.process-num {
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--nash-orange);
  opacity: 0.7;
}

.time--highlight {
  color: var(--nash-yellow-light);
}

.footer-activism-link {
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-header--spaced {
  margin-top: 80px;
}

.menu-pdf-link {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 149, 34, 0.08);
}

.menu-pdf-link a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nash-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Password Reveal Classes ---------- */
.pw-reveal-whisper {
  font-size: 0.72rem;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pw-reveal-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--nash-yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pw-reveal-recruited {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--nash-orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pw-reveal-instruction {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 8px;
}

.pw-reveal-password {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 20px 0;
  padding: 16px 24px;
  border: 1px solid rgba(249, 208, 116, 0.25);
  border-radius: 8px;
  background: rgba(249, 208, 116, 0.05);
  animation: passwordGlow 2s ease-in-out infinite;
}

.pw-reveal-outro {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 16px;
}

.pw-reveal-rewards {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(249, 208, 116, 0.1);
}

.pw-reveal-rewards-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.pw-reveal-rewards-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--nash-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.pw-reveal-signup {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nash-orange);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(248, 149, 34, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pw-reveal-signup:hover {
  background: rgba(248, 149, 34, 0.1);
  border-color: var(--nash-orange);
  color: var(--nash-yellow);
}

/* ---------- FAQ Section ---------- */
.faq-section {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(248, 149, 34, 0.08);
}

.faq-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--nash-orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ---------- Neighborhood / Nearby ---------- */
.neighborhood-section {
  margin-top: 64px;
  padding: 40px;
  background: rgba(248, 149, 34, 0.04);
  border: 1px solid rgba(248, 149, 34, 0.1);
  border-radius: 12px;
}

.neighborhood-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--nash-orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.neighborhood-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.8;
}

.neighborhood-desc strong {
  color: var(--white);
  font-weight: 500;
}

.map-container iframe {
  border: 0;
  border-radius: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--nash-red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--nash-red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--nash-red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--nash-orange);
  border: 1.5px solid var(--nash-orange);
}

.btn-outline:hover {
  background: var(--nash-orange);
  color: var(--nash-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--nash-orange-glow);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(14, 21, 28, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(248, 149, 34, 0.1);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  z-index: 1001;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), height var(--transition);
  transform-origin: left center;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.18) translateX(-4px);
}

.nav-logo:active .nav-logo-img {
  transform: scale(1.1) translateX(-8px);
  transition: transform 0.15s ease;
}

.navbar.scrolled .nav-logo-img {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nash-orange);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--nash-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--nash-red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 3px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--nash-red-light) !important;
  color: var(--white) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nash-orange);
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nash-black);
  overflow: hidden;
}

/* Blurred bg video — covers full hero, color-matched fill above & below */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(35px) brightness(0.55) saturate(1.5);
  transform: scale(1.2);
}

/* Sharp video — full size, no blur, fades only at the very edges */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 4%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 4%,
    black 92%,
    transparent 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(166, 44, 42, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(248, 149, 34, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(14, 21, 28, 1) 0%, transparent 50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 21, 28, 0.6) 0%,
    rgba(14, 21, 28, 0.35) 40%,
    rgba(14, 21, 28, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--nash-orange);
  border: 1px solid rgba(248, 149, 34, 0.3);
  padding: 8px 28px;
  border-radius: 30px;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.hero-logo {
  margin: 0 auto 24px;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-logo-img {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 8px 40px rgba(166, 44, 42, 0.3));
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  animation: fadeIn 1s ease-out 0.6s both;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nash-orange));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--nash-orange), transparent);
}

.divider-icon {
  color: var(--nash-yellow);
  font-size: 1.3rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--nash-yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeIn 1s ease-out 0.8s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-300);
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  animation: fadeIn 1s ease-out 1s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-scroll-inline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--nash-orange);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out 1.5s both;
}

.hero-scroll-inline .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--nash-orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll {
  display: none;
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--nash-orange);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--nash-orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   EXPERIENCE
   ======================================== */
.experience {
  border-top: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.experience-card {
  background: linear-gradient(160deg, var(--nash-black-light) 0%, var(--nash-black) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: left;
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.experience-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 48px 40px;
  align-items: center;
}

.experience-card:first-child .card-number {
  margin-bottom: 0;
}

.experience-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-card:hover {
  border-color: var(--nash-orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(248, 149, 34, 0.12);
}

.card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--nash-red);
  opacity: 0.6;
  margin-bottom: 16px;
}

.card-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nash-yellow);
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(237, 230, 219, 0.62);
  line-height: 1.7;
}

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

.experience-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--nash-red);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ========================================
   MENU
   ======================================== */
.menu-section {
  background: var(--nash-black);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(248, 149, 34, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.menu-section .section-header {
  text-align: left;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(248, 149, 34, 0.12);
}

.menu-section .section-desc {
  margin: 0;
  max-width: 700px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  background: transparent;
  border: 1.5px solid rgba(248, 149, 34, 0.2);
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--nash-orange);
  color: var(--nash-orange);
}

.menu-tab.active {
  background: var(--nash-red);
  border-color: var(--nash-red);
  color: var(--white);
}

.menu-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-content.active {
  display: block;
}

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

.menu-item {
  background: rgba(24, 34, 48, 0.6);
  border: 1px solid rgba(248, 149, 34, 0.06);
  border-radius: 8px;
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}

.menu-item:hover {
  border-color: rgba(248, 149, 34, 0.2);
  background: rgba(24, 34, 48, 0.9);
}

.menu-item.featured {
  border-color: rgba(166, 44, 42, 0.3);
}

.menu-item.featured:hover {
  border-color: rgba(166, 44, 42, 0.5);
}

.menu-item-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nash-red);
  background: rgba(166, 44, 42, 0.12);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 16px;
}

.menu-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--nash-orange);
  white-space: nowrap;
  letter-spacing: 1px;
}

.menu-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.6;
}

.menu-buckets {
  margin-top: 40px;
  text-align: center;
  padding: 36px;
  background: rgba(24, 34, 48, 0.6);
  border: 1px solid rgba(248, 149, 34, 0.08);
  border-radius: 8px;
}

.buckets-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--nash-yellow);
  margin-bottom: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.buckets-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.bucket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.bucket-tag {
  background: rgba(166, 44, 42, 0.12);
  border: 1px solid rgba(166, 44, 42, 0.25);
  color: var(--nash-red-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   ENTERTAINMENT
   ======================================== */
.entertainment {
  position: relative;
  overflow: hidden;
}

.entertainment-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(166, 44, 42, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(248, 149, 34, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--nash-red-dark) 0%, #4a1615 40%, var(--nash-black) 100%);
}

/* Marquee light strip at top — animated */
.entertainment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--nash-orange) 0px,
    var(--nash-orange) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 2;
  animation: marqueeScroll 1.5s linear infinite;
}

@keyframes marqueeScroll {
  0% { background-position: 0 0; }
  100% { background-position: 16px 0; }
}

.entertainment .container {
  position: relative;
  z-index: 2;
}

.section-header.light .section-label {
  color: var(--nash-yellow);
}

.section-header.light .section-title {
  color: var(--white);
}

.section-header.light .section-desc {
  color: rgba(237, 230, 219, 0.68);
}

.entertainment-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

.ent-feature {
  opacity: 0;
  transform: translateY(30px);
}

.ent-feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(248, 149, 34, 0.6);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.ent-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nash-yellow);
  margin-bottom: 10px;
}

.ent-feature p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(237, 230, 219, 0.62);
  line-height: 1.7;
}

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

.entertainment-schedule h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--nash-orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.schedule-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-day {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.schedule-time {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--nash-yellow-light);
}

.schedule-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--nash-orange);
  margin-top: 4px;
}

/* ========================================
   EVENTS
   ======================================== */
.events {
  background: var(--nash-black);
}

/* Light bg overrides for events section */
.events.section--light {
  background: var(--cream);
}

.events.section--light .event-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--gray-200);
  border-radius: 0;
  padding: 28px 20px;
  text-align: center;
  opacity: 1;
  transform: none;
}

.events.section--light .event-card:last-child {
  border-right: none;
}

.events.section--light .event-card:hover {
  background: rgba(248, 149, 34, 0.05);
  transform: none;
  box-shadow: none;
}

.events.section--light .event-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--nash-yellow);
  letter-spacing: 2px;
}

.events.section--light .event-card p {
  color: rgba(237, 230, 219, 0.62);
}

.events.section--light .event-icon {
  display: none;
}

.events.section--light .weekly-grid {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.events.section--light .schedule-toggle {
  background: rgba(14, 21, 28, 0.5);
  border: 1px solid var(--gray-200);
}

.events.section--light .schedule-toggle-btn {
  color: var(--gray-300);
}

.events.section--light .schedule-toggle-btn.active {
  background: var(--nash-red);
  color: var(--white);
}

/* Private events dark band within light events section */
.private-events-band {
  background: var(--nash-black);
  margin: 80px -24px 0;
  padding: 80px 24px;
}

.private-events-band .section-header {
  margin-top: 0;
}

.private-events-band .section-label {
  color: var(--nash-orange);
}

.private-events-band .section-title {
  color: var(--white);
}

.private-events-band .section-desc {
  color: var(--gray-300);
}

.private-events-band .event-card {
  background: linear-gradient(160deg, var(--nash-black-light) 0%, var(--nash-black) 100%);
  border: 1px solid rgba(248, 149, 34, 0.1);
  border-radius: 8px;
  border-right: 1px solid rgba(248, 149, 34, 0.1);
  padding: 40px 32px;
  text-align: left;
}

.private-events-band .event-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--nash-yellow);
}

.private-events-band .event-card p {
  color: var(--gray-300);
}

.private-events-band .event-icon {
  display: block;
}

.private-events-band .events-cta {
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.event-card {
  border: 1px solid rgba(248, 149, 34, 0.1);
  border-radius: 8px;
  padding: 40px 32px;
  background: linear-gradient(160deg, var(--nash-black-light) 0%, var(--nash-black) 100%);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(30px);
}

.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card:hover {
  border-color: var(--nash-orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.event-icon {
  margin-bottom: 20px;
}

.event-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nash-yellow);
  margin-bottom: 10px;
}

.event-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.7;
}

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

.events-cta-menu {
  margin-top: 16px;
}

/* ========================================
   SCHEDULE TOGGLE & VIEWS
   ======================================== */
.schedule-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: rgba(24, 34, 48, 0.5);
  border-radius: 6px;
  padding: 4px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.schedule-toggle-btn:hover {
  color: var(--nash-orange);
}

.schedule-toggle-btn.active {
  background: var(--nash-red);
  color: var(--white);
}

.schedule-view {
  display: none;
}

.schedule-view.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.weekly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.weekly-grid .event-card:nth-child(4),
.weekly-grid .event-card:nth-child(5) {
  /* Center the last row of 2 cards */
}

.cal-nav-btn {
  background: none;
  border: 1px solid rgba(237, 230, 219, 0.2);
  color: var(--nash-orange);
  font-family: var(--font-display);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  background: var(--nash-red);
  border-color: var(--nash-red);
  color: var(--white);
}

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

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

  .schedule-toggle {
    max-width: 100%;
  }
}

/* ========================================
   MONTHLY CALENDAR
   ======================================== */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.cal-month {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--nash-orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  min-width: 180px;
  text-align: center;
}

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

.cal-head {
  text-align: center;
  padding: 10px 4px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nash-orange);
}

.cal-cell {
  min-height: 80px;
  background: rgba(24, 34, 48, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 8px 6px;
  position: relative;
}

.cal-cell.empty {
  background: transparent;
  border-color: transparent;
}

.cal-cell.has-events {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cal-cell.has-events:hover {
  background: rgba(24, 34, 48, 0.8);
  border-color: rgba(248, 149, 34, 0.3);
}

.cal-cell.today {
  border-color: var(--nash-orange);
}

.cal-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-400);
  display: block;
  margin-bottom: 6px;
}

.cal-cell.today .cal-num {
  color: var(--nash-orange);
}

.cal-cell.has-events .cal-num {
  color: var(--white);
}

.cal-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.cal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.cal-dot.pianos { background: var(--nash-red); }
.cal-dot.special { background: var(--nash-orange); }
.cal-dot.brunch { background: var(--nash-yellow); }
.cal-dot.private { background: var(--gray-500); }
.cal-dot.community { background: #6b9edd; }

.cal-dot-more {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  color: var(--gray-400);
  line-height: 7px;
}

.cal-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
  grid-column: 1 / -1;
}

/* Mobile calendar */
@media (max-width: 768px) {
  .cal-cell {
    min-height: 52px;
    padding: 5px 4px;
  }

  .cal-num {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .cal-head {
    font-size: 0.55rem;
    padding: 6px 2px;
    letter-spacing: 0;
  }

  .cal-dot {
    width: 5px;
    height: 5px;
  }
}

/* ---------- Event Popup ---------- */
.cal-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cal-popup.show {
  display: flex;
}

.cal-popup-body {
  background: var(--nash-black);
  border: 1px solid rgba(248, 149, 34, 0.25);
  border-radius: 10px;
  padding: 28px 24px;
  max-width: 440px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cal-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
}

.cal-popup-close:hover {
  color: var(--nash-orange);
}

.cal-popup-date {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nash-orange);
  margin-bottom: 16px;
  padding-right: 40px;
}

.cal-popup-event {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cal-popup-event:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cal-popup-event.community {
  opacity: 0.6;
}

.cal-popup-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cal-popup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.cal-popup-dot.pianos { background: var(--nash-red); }
.cal-popup-dot.special { background: var(--nash-orange); }
.cal-popup-dot.brunch { background: var(--nash-yellow); }
.cal-popup-dot.private { background: var(--gray-500); }
.cal-popup-dot.community { background: #6b9edd; }

.cal-popup-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cal-popup-time {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--nash-yellow);
  margin-top: 2px;
}

.cal-popup-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.6;
  margin-top: 6px;
}

/* ========================================
   VIP
   ======================================== */
.vip-section {
  background: var(--nash-black);
}

.vip-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.vip-content .section-title {
  text-align: left;
}

.vip-content .section-label {
  display: block;
  text-align: left;
}

.vip-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-300);
  margin-bottom: 32px;
  line-height: 1.7;
}

.vip-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vip-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(237, 230, 219, 0.78);
  padding: 14px 16px;
  background: rgba(248, 149, 34, 0.04);
  border-left: 3px solid var(--nash-orange);
  border-radius: 0 4px 4px 0;
}

.perk-icon {
  color: var(--nash-orange);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.vip-form-container {
  background: linear-gradient(160deg, var(--nash-black-lighter) 0%, var(--nash-black) 100%);
  border: 1px solid rgba(248, 149, 34, 0.12);
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

/* Subtle marquee dots on form */
.vip-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--nash-red) 0px,
    var(--nash-red) 6px,
    transparent 6px,
    transparent 12px
  );
}

.vip-form-logo {
  text-align: center;
  margin-bottom: 16px;
}

.form-brandmark {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  object-fit: contain;
}

.vip-form h3,
.vip-booking-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.vip-booking-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-300);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 28px;
}

.vip-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(14, 21, 28, 0.8);
  border: 1.5px solid rgba(248, 149, 34, 0.12);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--gray-500);
}

.form-group input:focus {
  border-color: var(--nash-orange);
  box-shadow: 0 0 0 3px var(--nash-orange-glow);
}

.form-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 4px;
  font-style: italic;
}

.vip-form .btn {
  margin-top: 8px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 12px;
}

.speakeasy-form .form-group input {
  background: rgba(20, 28, 38, 0.9);
  border: 1px solid rgba(249, 208, 116, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: all var(--transition);
}

.speakeasy-form .form-group input:focus,
.speakeasy-form .form-group select:focus,
.speakeasy-form .form-group textarea:focus {
  border-color: var(--nash-orange);
  box-shadow: 0 0 0 3px var(--nash-orange-glow);
}

.speakeasy-form .form-group select,
.speakeasy-form .form-group textarea {
  background: rgba(20, 28, 38, 0.9);
  border: 1px solid rgba(249, 208, 116, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: all var(--transition);
}

.speakeasy-form .form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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 fill='%23F89522' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.speakeasy-form .form-group select option {
  background: var(--nash-black);
  color: var(--white);
}

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

.speakeasy-form .form-row {
  display: flex;
  gap: 12px;
}

.speakeasy-form .form-row select,
.speakeasy-form .form-row input {
  flex: 1;
}

.speakeasy-form .btn {
  margin-top: 8px;
}

/* ========================================
   BOURBON
   ======================================== */
.bourbon-section {
  background: var(--nash-black);
  border-top: 1px solid rgba(248, 149, 34, 0.04);
}

.bourbon-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.bourbon-content .section-label {
  display: block;
  text-align: left;
}

.bourbon-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.bourbon-content > p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 32px;
}

.bourbon-tiers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bourbon-tier {
  padding: 20px 24px;
  background: rgba(24, 34, 48, 0.5);
  border-left: 3px solid var(--nash-orange);
  border-radius: 0 6px 6px 0;
}

.bourbon-tier h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nash-orange);
  margin-bottom: 4px;
}

.bourbon-tier p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-300);
}

.bourbon-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(30px);
}

.bourbon-visual.visible {
  opacity: 1;
  transform: translateX(0);
}

.bourbon-stat-card {
  background: linear-gradient(145deg, rgba(166, 44, 42, 0.08), rgba(24, 34, 48, 0.6));
  border: 1px solid rgba(248, 149, 34, 0.08);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--nash-orange);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray-300);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========================================
   ASH & ALCHEMY SPEAKEASY
   ======================================== */
.speakeasy-section {
  background: var(--nash-black);
  position: relative;
  overflow: hidden;
}

.speakeasy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(166, 44, 42, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(248, 149, 34, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 90%, rgba(249, 208, 116, 0.05) 0%, transparent 40%);
}

.speakeasy-logo-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.aa-logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(249, 208, 116, 0.3));
  animation: aaGlow 4s ease-in-out infinite;
}

@keyframes aaGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(249, 208, 116, 0.2)); }
  50% { filter: drop-shadow(0 0 40px rgba(249, 208, 116, 0.5)); }
}

@keyframes passwordGlow {
  0%, 100% { border-color: rgba(249, 208, 116, 0.2); box-shadow: 0 0 0 rgba(249, 208, 116, 0); }
  50% { border-color: rgba(249, 208, 116, 0.5); box-shadow: 0 0 25px rgba(249, 208, 116, 0.1); }
}

.speakeasy-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.speakeasy-content .section-label {
  display: block;
  text-align: left;
}

.speakeasy-content .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.speakeasy-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nash-yellow);
  margin-bottom: 20px;
}

.speakeasy-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
}

.speakeasy-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speakeasy-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(237, 230, 219, 0.88);
}

.speakeasy-card {
  background: linear-gradient(165deg, rgba(24, 32, 42, 1) 0%, rgba(14, 21, 28, 1) 100%);
  border: 1px solid rgba(249, 208, 116, 0.2);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(249, 208, 116, 0.08);
}

.speakeasy-card-inner {
  padding: 48px 40px;
  position: relative;
  z-index: 1;
}

/* Subtle gold accent line at top */
.speakeasy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nash-yellow), transparent);
  opacity: 0.5;
}

/* Soft glow behind the card */
.speakeasy-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(249, 208, 116, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .aa-logo-img {
    width: 80px;
  }

  .speakeasy-logo-header {
    margin-bottom: 32px;
  }

  .speakeasy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .speakeasy-content .section-title,
  .speakeasy-content .section-label {
    text-align: center;
  }

  .speakeasy-tagline,
  .speakeasy-desc {
    text-align: center;
  }

  .speakeasy-features {
    align-items: center;
  }

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

/* ========================================
   VISIT / HOURS
   ======================================== */
.visit-section {
  background: linear-gradient(180deg, var(--nash-black-light) 0%, var(--nash-black) 100%);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--nash-orange);
  margin-bottom: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(248, 149, 34, 0.06);
}

.day {
  font-size: 0.88rem;
  color: rgba(237, 230, 219, 0.88);
}

.time {
  font-size: 0.88rem;
  color: var(--gray-300);
}

.time.closed {
  color: var(--nash-red-light);
  font-style: italic;
}

.address {
  font-size: 1rem;
  color: rgba(237, 230, 219, 0.88);
  line-height: 1.6;
}

.address-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  cursor: pointer;
}

.address-link:hover {
  color: var(--nash-orange);
}

.directions-btn {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(248, 149, 34, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.directions-btn:hover {
  color: var(--nash-orange);
  border-bottom-color: var(--nash-orange);
}

.footer-address.address-link:hover {
  color: var(--nash-orange);
}

.location-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.6;
}

.tips-list li {
  font-size: 0.88rem;
  color: var(--gray-300);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}

.tips-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--nash-orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(248, 149, 34, 0.08);
}

.map-streetview {
  margin-top: 16px;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-section {
  position: relative;
  padding: 80px 0;
  border-top: none;
  border-bottom: none;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 32px;
}

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

.stars {
  font-size: 1.5rem;
  color: var(--nash-orange);
  margin-bottom: 6px;
  letter-spacing: 4px;
}

.stat-platform {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-300);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reviews-badge {
  text-align: center;
  margin-bottom: 48px;
  padding: 24px 32px;
  border: 1px solid rgba(248, 149, 34, 0.15);
  border-radius: 8px;
  background: rgba(248, 149, 34, 0.03);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.highest-rated {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 8px;
}

.highest-rated-sub {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reviews-quotes {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Frommer's quote (first now) spans full left column */
.review-quote:first-child {
  grid-row: 1 / 3;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}

.review-quote:first-child p {
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.review-quote {
  text-align: left;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: linear-gradient(160deg, var(--nash-black-light) 0%, var(--nash-black) 100%);
}

.review-quote p {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(237, 230, 219, 0.72);
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-source {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--nash-red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reviews-press {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.press-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.press-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

/* Tampa Bay Times — Pantone 342 dark green, serif */
.press--tbt {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #006F51;
  font-style: italic;
}

/* Frommer's — red brand */
.press--frommers {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #CC0000;
}

/* TripAdvisor — official green */
.press--tripadvisor {
  font-family: 'Lato', -apple-system, sans-serif;
  color: #00AF87;
  letter-spacing: -0.3px;
}

/* Florida Redevelopment Assoc. — professional blue */
.press--fra {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  color: #4A90C4;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

a.press-name {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a.press-name:hover {
  opacity: 0.7;
}

.press--fox13 {
  font-family: 'Oswald', sans-serif;
  color: #0066CC;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press--wfla {
  font-family: 'Oswald', sans-serif;
  color: #D32F2F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press--baynews9 {
  font-family: 'Lato', sans-serif;
  color: #1E88E5;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.press--floridatrend {
  font-family: 'Georgia', serif;
  color: #2E7D32;
  font-weight: 700;
  font-style: italic;
}

.press--83degrees {
  font-family: 'Lato', sans-serif;
  color: #FF8F00;
  font-weight: 700;
}

.press--youtube {
  font-family: 'Oswald', sans-serif;
  color: #FF0000;
  font-weight: 600;
}

.press--podcast {
  font-family: 'Lato', sans-serif;
  color: #8E24AA;
  font-weight: 700;
}

.press--tb28 {
  font-family: 'Lato', sans-serif;
  color: #1565C0;
  font-weight: 700;
}

.press--tbn {
  font-family: 'Georgia', serif;
  color: #37474F;
  font-weight: 700;
}

/* ---------- Featured In Section ---------- */
.featured-in-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(14, 21, 28, 0.08);
}

.featured-in-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--nash-black, #0E151C);
  text-align: center;
  margin-bottom: 28px;
}

.featured-logos {
  margin-bottom: 40px;
}

/* ---------- Find Us On (Socials) ---------- */
.find-us-on {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(14, 21, 28, 0.08);
  text-align: center;
}

.find-us-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nash-black, #0E151C);
  margin-bottom: 20px;
}

.find-us-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.find-us-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nash-black, #0E151C);
  padding: 12px 24px;
  border: 1px solid rgba(14, 21, 28, 0.12);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.find-us-link:hover {
  border-color: var(--nash-orange, #F89522);
  color: var(--nash-orange, #F89522);
}

.find-us-link svg {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.find-us-link:hover svg {
  opacity: 1;
}

/* Instagram — gradient brand colors */
.find-us--instagram {
  border-color: #E4405F;
  color: #E4405F;
}
.find-us--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}
.find-us--instagram:hover svg {
  fill: #fff;
}

/* Facebook — brand blue */
.find-us--facebook {
  border-color: #1877F2;
  color: #1877F2;
}
.find-us--facebook:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}
.find-us--facebook:hover svg {
  fill: #fff;
}

/* TikTok — brand pink/red */
.find-us--tiktok {
  border-color: #fe2c55;
  color: #fe2c55;
}
.find-us--tiktok:hover {
  background: #fe2c55;
  color: #fff;
  border-color: #fe2c55;
}
.find-us--tiktok:hover svg {
  fill: #fff;
}

@media (max-width: 480px) {
  .find-us-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .find-us-link {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
}

/* ---------- Press Quotes ---------- */
.press-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 48px 0;
}

.press-quote-item {
  background: rgba(14, 21, 28, 0.04);
  border: 1px solid rgba(14, 21, 28, 0.08);
  border-radius: 12px;
  padding: 32px;
}

.press-quote-item blockquote {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--nash-black, #0E151C);
  line-height: 1.7;
  margin-bottom: 16px;
}

.press-quote-source {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nash-red, #A62C2A);
  text-decoration: none;
  transition: color 0.3s ease;
}

.press-quote-source:hover {
  color: var(--nash-orange, #F89522);
}

.press-read-more {
  font-size: 0.9em;
  margin-left: 4px;
}

/* ---------- Tommy G Feature ---------- */
.tommy-g-feature {
  margin: 48px 0;
  padding: 40px;
  background: rgba(14, 21, 28, 0.06);
  border: 1px solid rgba(14, 21, 28, 0.08);
  border-radius: 12px;
}

.tommy-g-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tommy-g-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--nash-red, #A62C2A);
  white-space: nowrap;
  line-height: 1;
}

.tommy-g-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--nash-black, #0E151C);
  margin-bottom: 8px;
}

.tommy-g-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.tommy-g-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF0000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tommy-g-link:hover {
  opacity: 0.7;
}

/* ---------- In the News ---------- */
.in-the-news {
  margin: 48px 0 40px;
}

.news-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nash-black, #0E151C);
  margin-bottom: 24px;
  text-align: center;
}

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

.news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(14, 21, 28, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(14, 21, 28, 0.02);
}

.news-item:hover {
  background: rgba(14, 21, 28, 0.06);
  border-color: rgba(14, 21, 28, 0.12);
}

.news-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-headline {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

/* Responsive: press/news */
@media (max-width: 768px) {
  .press-quotes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tommy-g-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

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

  .press-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
  }
}

.press-divider {
  color: rgba(248, 149, 34, 0.3);
  font-size: 0.6rem;
}

/* ========================================
   RESERVE CTA
   ======================================== */
.reserve-section {
  text-align: center;
  padding: 120px 0;
}

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

.reserve-section .reserve-desc {
  color: rgba(237,230,219,0.82);
}

.reserve-content {
  position: relative;
  z-index: 2;
}

.reserve-brandmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(248, 149, 34, 0.2));
}

.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.reserve-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #080c11;
  border-top: 3px solid var(--nash-red);
  padding: 40px 0 20px;
}

/* Mobile-first: stacked, centered */
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  order: 1;
}

.footer-col--hours {
  order: 2;
}

.footer-col--social {
  order: 3;
}

.footer-logo-img {
  width: 80px;
  height: auto;
}

.footer-address {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address:hover {
  color: var(--nash-orange);
}

.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.social-links {
  justify-content: center;
}

/* Desktop: single row */
@media (min-width: 769px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }

  .footer-col {
    flex: 1;
  }

  .footer-col--hours {
    order: 1;
    text-align: left;
  }

  .footer-col--brand {
    order: 2;
  }

  .footer-col--social {
    order: 3;
  }

  .social-links {
    justify-content: flex-end;
  }
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(248, 149, 34, 0.2);
  border-radius: 50%;
  color: var(--gray-300);
  transition: all var(--transition);
}

.social-link svg {
  flex-shrink: 0;
}

.social-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.social-link:hover {
  border-color: var(--nash-orange);
  color: var(--nash-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 149, 34, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.footer-credit {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  color: var(--nash-orange) !important;
  letter-spacing: 1px;
}

/* ---------- Powered By Bar ---------- */
.powered-by {
  background: linear-gradient(180deg, #080c11 0%, #0a0a0a 100%);
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(99, 102, 241, 0.08);
}

.powered-by-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
}

.powered-by-text {
  color: #777;
  font-weight: 300;
}

.powered-by-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #6366f1 0%, #a78bfa 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.powered-by-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.powered-by-link:hover {
  color: #a78bfa;
}

.powered-by-link:hover .powered-by-name {
  background: linear-gradient(135deg, #818cf8 0%, #c4b5fd 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.powered-by-link:hover .powered-by-text {
  color: #8b5cf6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleReveal {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---------- Scroll-Triggered Animation Classes ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="slide-left"] {
  transform: translateX(-60px);
}

[data-animate="slide-left"].visible {
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(60px);
}

[data-animate="slide-right"].visible {
  transform: translateX(0);
}

[data-animate="scale"] {
  transform: scale(0.85);
}

[data-animate="scale"].visible {
  transform: scale(1);
}

/* --- Header reveal — clean bounce in --- */
[data-animate="header-punch"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="header-punch"].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-up"].visible {
  transform: translateY(0);
}

/* --- Dopamine: new animation variants --- */

[data-animate="zoom-in"] {
  transform: scale(0.6);
  opacity: 0;
  filter: blur(8px);
}

[data-animate="zoom-in"].visible {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

[data-animate="pop"] {
  transform: scale(0.3);
  opacity: 0;
}

[data-animate="pop"].visible {
  transform: scale(1);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* overshoot bounce */
}

[data-animate="blur-up"] {
  transform: translateY(30px);
  opacity: 0;
  filter: blur(12px);
}

[data-animate="blur-up"].visible {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

[data-animate="flip-up"] {
  transform: perspective(800px) rotateX(20deg) translateY(40px);
  opacity: 0;
}

[data-animate="flip-up"].visible {
  transform: perspective(800px) rotateX(0deg) translateY(0);
  opacity: 1;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--nash-red) 0%, var(--nash-orange) 50%, var(--nash-yellow) 100%);
  z-index: 10000;
  transition: none;
}

/* --- Counter animation (stats) --- */
.stat-counter {
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat-counter.counting {
  animation: counterPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes counterPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* shimmer replaced by gradient shift on .section-title */

/* --- Card hover micro-interaction for touch (tap feedback) --- */
@media (hover: none) {
  .experience-card:active,
  .event-card:active,
  .menu-item:active,
  .faq-item:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
}

/* --- Pulsing glow on buttons when section is in view --- */
.btn-primary.in-view {
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(166, 44, 42, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(166, 44, 42, 0.5), 0 0 60px rgba(166, 44, 42, 0.15); }
}

/* ---------- Button Polish ---------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(166, 44, 42, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(166, 44, 42, 0.4);
}

.btn-outline:hover {
  box-shadow: 0 8px 30px rgba(248, 149, 34, 0.3);
}

/* ---------- Card Hover Lift ---------- */
.event-card,
.experience-card,
.review-quote {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card:hover,
.review-quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(248, 149, 34, 0.2);
}

/* ---------- Menu Tab Transitions ---------- */
.menu-tab {
  position: relative;
  overflow: hidden;
}

.menu-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--nash-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu-tab:hover::after,
.menu-tab.active::after {
  width: 100%;
}

/* ---------- Schedule Toggle Transitions ---------- */
.schedule-toggle-btn {
  position: relative;
  overflow: hidden;
}

.schedule-toggle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 149, 34, 0.08), transparent);
  transition: left 0.5s ease;
}

.schedule-toggle-btn:hover::before {
  left: 100%;
}

/* ---------- Menu Content Fade ---------- */
.menu-content {
  animation: menuFadeIn 0.3s ease;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Schedule View Transition ---------- */
.schedule-view {
  animation: viewSlide 0.35s ease;
}

@keyframes viewSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Section Headers Entrance ---------- */
.section-header {
  animation: sectionReveal 0.6s ease both;
}

@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Nav CTA Pulse ---------- */
.nav-cta {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(166, 44, 42, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(166, 44, 42, 0); }
}

/* ---------- Star Rating Shimmer ---------- */
.stars {
  background: linear-gradient(90deg, var(--nash-orange) 0%, var(--nash-yellow) 50%, var(--nash-orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: starShimmer 3s linear infinite;
}

@keyframes starShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---------- Reviews Badge Glow ---------- */
.reviews-badge {
  animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(248, 149, 34, 0.15); box-shadow: 0 0 0 0 rgba(248, 149, 34, 0); }
  50% { border-color: rgba(248, 149, 34, 0.3); box-shadow: 0 0 30px rgba(248, 149, 34, 0.08); }
}

/* ---------- Speakeasy Card Hover ---------- */
.speakeasy-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.speakeasy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 208, 116, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(249, 208, 116, 0.08), inset 0 1px 0 rgba(249, 208, 116, 0.12);
}

/* ---------- VIP Card Marquee Glow ---------- */
.vip-form-container {
  transition: all 0.4s ease;
}

.vip-form-container:hover {
  border-color: rgba(248, 149, 34, 0.25);
  box-shadow: 0 0 40px rgba(248, 149, 34, 0.06);
}

/* ---------- Smooth Focus Glow on Inputs ---------- */
.form-group input {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group input:focus {
  transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

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

  .experience-card:first-child {
    grid-column: 1 / -1;
  }

  .entertainment-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bourbon-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .events.section--light .weekly-grid {
    flex-wrap: wrap;
  }

  .events.section--light .event-card {
    flex: 1 1 calc(33.333% - 0px);
    border-bottom: 1px solid var(--gray-200);
  }

  .vip-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vip-perks {
    grid-template-columns: 1fr 1fr;
  }

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

  .mid-cta {
    padding: 60px 0;
  }

}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
    --nav-height: 64px;
  }

  /* --- Performance: kill backdrop-filter on mobile --- */
  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14, 21, 28, 0.98);
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 21, 28, 0.99);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 2px;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
  }

  .nav-cta {
    margin-top: 16px;
    padding: 14px 22px;
  }

  /* --- Performance: kill expensive filters on mobile --- */
  .speakeasy-card-inner {
    padding: 36px 24px;
  }


  .aa-logo-img {
    animation: none;
    filter: drop-shadow(0 0 20px rgba(249, 208, 116, 0.25));
  }

  /* --- Tighter vertical rhythm --- */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header--spaced {
    margin-top: 48px;
  }

  .mid-cta {
    padding: 48px 0;
  }

  .type-break {
    padding: 32px 24px;
  }

  .tommy-g-feature {
    padding: 28px;
  }

  /* --- Touch targets: all 44px minimum --- */
  .nav-toggle {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  .menu-tab {
    padding: 14px 24px;
    min-height: 44px;
  }

  .schedule-toggle-btn {
    padding: 14px 20px;
    min-height: 44px;
  }

  /* --- Font size fixes --- */
  .hero-badge {
    font-size: 0.78rem;
    padding: 10px 24px;
    letter-spacing: 3px;
  }

  .hero-scroll-inline {
    font-size: 0.72rem;
  }

  /* --- Faster, snappier reveal animations --- */
  [data-animate] {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.0);
    transform: translateY(20px);
  }

  [data-animate="fade-up"] {
    transform: translateY(24px);
  }

  [data-animate="slide-left"] {
    transform: translateX(-30px);
  }

  [data-animate="slide-right"] {
    transform: translateX(30px);
  }

  /* Header punch must NOT be flattened by the mobile override above */
  .nav-toggle {
    display: flex;
  }

  .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);
  }

  .hero-logo-img {
    max-width: 300px;
  }

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

  .experience-card:first-child {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .menu-section .section-header {
    text-align: center;
  }

  .menu-section .section-desc {
    margin: 0 auto;
  }

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

  .events.section--light .weekly-grid {
    flex-direction: column;
  }

  .events.section--light .event-card {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .events.section--light .event-card:last-child {
    border-bottom: none;
  }

  .private-events-band {
    margin: 48px -24px 0;
    padding: 64px 24px;
  }

  .vip-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vip-content .section-title,
  .vip-content .section-label {
    text-align: center;
  }

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

  .vip-perks {
    grid-template-columns: 1fr;
  }

  .reviews-quotes {
    grid-template-columns: 1fr;
  }

  .review-quote:first-child {
    grid-row: auto;
    grid-column: auto;
  }

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

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 24px;
  }

  .reviews-quotes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .press-logos {
    flex-direction: column;
    gap: 12px;
  }

  .press-divider {
    display: none;
  }

  .schedule-grid {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 0.65rem;
  }

  .bourbon-content .section-title,
  .bourbon-content .section-label {
    text-align: center;
  }

  .bourbon-content > p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 40px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header--spaced {
    margin-top: 40px;
  }

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

  .reserve-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .vip-form-container {
    padding: 32px 20px;
  }

  .menu-item {
    padding: 20px;
  }

  .hero-logo-img {
    max-width: 260px;
  }

  /* Fix form rows stacking */
  .speakeasy-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Fix hours row wrapping */
  .hours-row {
    flex-wrap: wrap;
    gap: 2px;
  }

  .hours-row .time {
    font-size: 0.82rem;
  }
}

/* ========================================
   PERFORMANCE: GPU HINTS & PAINT CONTAINMENT
   ======================================== */

/* Promote animated elements to GPU layer */
[data-animate] {
  will-change: transform, opacity;
}

[data-animate].visible {
  will-change: auto;
}

.hero-content {
  will-change: transform, opacity;
}

/* Skip rendering for below-fold sections */
section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ========================================
   TOUCH DEVICE: DISABLE STICKY HOVER
   ======================================== */
@media (hover: none) {
  .experience-card:hover,
  .event-card:hover,
  .review-quote:hover,
  .speakeasy-card:hover,
  .menu-item:hover,
  .vip-form-container:hover {
    transform: none !important;
    box-shadow: inherit !important;
  }
}

/* ========================================
   ACCESSIBILITY: REDUCED MOTION
   ======================================== */
@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;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-badge,
  .hero-logo,
  .hero-divider,
  .hero-subtitle,
  .hero-tagline,
  .hero-actions,
  .hero-scroll-inline {
    animation: none !important;
    opacity: 1 !important;
  }
}
