/* ==========================================================================
   MACKENZIE'S TUNES & TONICS - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Custom Variables */
:root {
  /* Colors */
  --bg-espresso: #1a1412;       /* Soft warm dark brown background */
  --bg-charcoal: #261f1c;       /* Warm dark charcoal card background */
  --bg-walnut: #382a24;         /* Rich dark wood details */
  --color-bronze: #5f2508;      /* Aged dark copper/bronze */
  --color-amber: #d97706;       /* Candlelit amber glow */
  --color-candle: #f59e0b;      /* Warm golden-orange flame light */
  --color-gold: #b59250;        /* Antique serif gold highlights */
  --text-cream: #faf6ee;        /* Soft readable warm cream */
  --text-cream-dim: #c2b7ab;    /* Brighter subdued description text */
  --text-light: #faf6ee;        /* Soft readable warm cream for elements on dark backgrounds */
  --border-dim: rgba(217, 119, 6, 0.22); /* Translucent amber border */
  --border-focus: rgba(245, 158, 11, 0.4); /* Candle glow focus border */
  --glass-overlay: rgba(26, 20, 18, 0.9); /* Warm dark translucent glass */

  /* Fonts */
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-espresso);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  color: var(--text-cream-dim);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.d-none { display: none !important; }

/* Grid Systems */
.grid-container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .discover-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .visit-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-bronze);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(120, 53, 15, 0.25);
  border-color: rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-amber);
  box-shadow: 0 6px 25px rgba(217, 119, 6, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-cream);
  border-color: var(--border-dim);
}

.btn-secondary:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
  background-color: rgba(217, 119, 6, 0.05);
  transform: translateY(-2px);
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  /* Dark subtle gradient overlay at the top to protect navbar text readability */
  background: linear-gradient(to bottom, rgba(6, 4, 3, 0.8) 0%, rgba(6, 4, 3, 0.4) 60%, rgba(6, 4, 3, 0) 100%);
}

.navbar.navbar-scrolled {
  background: var(--glass-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
  height: 70px;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-cream);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo-subtext {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-amber);
  margin-top: -3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2.2rem;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #dfd7cc; /* Brighter cream for high contrast */
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-candle); /* Brighter warm amber flame glow */
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.35), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-amber);
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-reserve-btn {
  display: none;
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
}

@media (min-width: 576px) {
  .nav-reserve-btn {
    display: block;
  }
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-cream);
  transition: var(--transition-smooth);
}

.mobile-nav-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-charcoal);
  border-left: 1px solid var(--border-dim);
  z-index: 99;
  padding: 6rem 2.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: var(--text-cream-dim);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--text-cream);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-amber);
  padding-left: 8px;
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid var(--border-dim);
  padding-top: 2rem;
}

.drawer-contact-info {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 1;
  animation: teleport-zoom 35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes teleport-zoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

/* Vintage Architectural Frame */
.hero-frame {
  position: absolute;
  top: 3.5rem;
  left: 3.5rem;
  right: 3.5rem;
  bottom: 3.5rem;
  border: 1px solid rgba(181, 146, 80, 0.15);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fade-in-frame 3s ease-in forwards 1s;
}

@keyframes fade-in-frame {
  to { opacity: 1; }
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(181, 146, 80, 0.4);
}
.frame-corner.top-left { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.frame-corner.top-right { top: -6px; right: -6px; border-left: none; border-bottom: none; }
.frame-corner.bottom-left { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.frame-corner.bottom-right { bottom: -6px; right: -6px; border-left: none; border-top: none; }

.hero-embers-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: 60px;
}

.hero-inner.cinematic-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: cinematic-fade-up 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.5s;
}

@keyframes cinematic-fade-up {
  0% { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-pre-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 0 15px rgba(0, 0, 0, 0.9);
}

.tagline-divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-bronze);
}

.hero-title.cinematic-title {
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-cream);
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.05);
  animation: cinematic-title-reveal 3s cubic-bezier(0.19, 1, 0.22, 1) forwards 1s;
}

@keyframes cinematic-title-reveal {
  0% { opacity: 0; filter: blur(8px); transform: scale(1.05); }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

.hero-script-accent {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-candle);
  margin-top: -1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95), 0 0 20px rgba(245, 158, 11, 0.6);
  transform: rotate(-3deg);
  opacity: 0;
  animation: cinematic-fade-up 2s ease-out forwards 1.8s;
  z-index: 2;
}

.font-cinematic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 4px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: cinematic-fade-up 2s ease-out forwards 2.2s;
}

.hero-location {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: #dfd7cc; /* Brighter readable cream */
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-cream-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: var(--border-dim);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: var(--color-amber);
  animation: scroll-pulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes scroll-pulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* Sections Base */
section {
  padding: 6.5rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-amber);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  margin-bottom: 1.8rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
}

/* Section Discover */
.section-discover {
  background-color: var(--bg-espresso);
  border-bottom: 1px solid var(--border-dim);
}

.discover-content {
  padding-right: 0;
}

@media (min-width: 992px) {
  .discover-content {
    padding-right: 2rem;
  }
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-cream);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.discover-signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

.signature-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  position: relative;
  padding-right: 2rem;
}

.signature-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 1px;
  background-color: var(--color-gold);
}

.discover-visual {
  position: relative;
}

.image-wrapper-parallax {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  aspect-ratio: 4/5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.5s ease-out;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  padding: 1.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  max-width: 200px;
}

@media (max-width: 576px) {
  .floating-badge {
    bottom: 15px;
    left: 15px;
    padding: 1rem;
  }
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-amber);
}

.badge-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-cream-dim);
}

/* Section Experience */
.section-experience {
  background-color: var(--bg-charcoal);
  border-bottom: 1px solid var(--border-dim);
}

.experience-header {
  margin-bottom: 5rem;
}

.experience-row {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 5.5rem;
  align-items: center;
}

.experience-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .experience-row {
    grid-template-columns: 1fr 1fr;
  }
}

.experience-image {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  aspect-ratio: 16/10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.experience-row:hover .experience-image img {
  transform: scale(1.03);
}

.experience-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.row-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(217, 119, 6, 0.5);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.experience-row-title {
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.experience-row-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-bronze);
}

@media (min-width: 768px) {
  .experience-row.alt-layout .experience-image {
    order: 2;
  }
  .experience-row.alt-layout .experience-details {
    order: 1;
    padding-right: 2rem;
  }
}

/* Section Menu Showcase */
.section-menu {
  background-color: var(--bg-espresso);
  border-bottom: 1px solid var(--border-dim);
}

.menu-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.menu-tabs {
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  padding: 0.4rem;
  border-radius: 4px;
  display: flex;
  gap: 0.2rem;
}

.menu-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-cream-dim);
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu-tab-btn:hover {
  color: var(--text-cream);
}

.menu-tab-btn.active {
  background-color: var(--color-bronze);
  color: var(--text-cream);
}

.menu-tab-pane {
  display: none;
  animation: fade-in-tab 0.5s ease-out forwards;
}

.menu-tab-pane.active {
  display: block;
}

@keyframes fade-in-tab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-showcase-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .menu-showcase-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.menu-image-showcase {
  position: relative;
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.9) 0%, rgba(12, 10, 9, 0) 100%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-cream-dim);
  font-style: italic;
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.menu-item {
  border-bottom: 1px dashed rgba(120, 53, 15, 0.15);
  padding-bottom: 1.5rem;
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-size: 1.15rem;
  color: var(--text-cream);
}

.menu-item-price {
  font-family: var(--font-heading);
  color: var(--color-amber);
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  color: var(--color-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.menu-actions {
  margin-top: 4rem;
}

/* Section Sessions (Events) */
.section-sessions {
  background-color: var(--bg-charcoal);
  border-bottom: 1px solid var(--border-dim);
}

.section-sessions .section-title {
  color: var(--color-amber);
}

.calendar-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .calendar-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Calendar Container (Left Column Panel) */
.calendar-container {
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Calendar View Toggle */
.calendar-view-toggle {
  display: flex;
  background-color: rgba(6, 4, 3, 0.4);
  border: 1px solid var(--border-dim);
  padding: 0.25rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  align-self: center;
  width: 100%;
  max-width: 340px;
}

.calendar-view-toggle .toggle-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-cream-dim);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calendar-view-toggle .toggle-btn:hover {
  color: var(--text-cream);
}

.calendar-view-toggle .toggle-btn.active {
  background-color: var(--color-gold);
  color: var(--bg-espresso);
  box-shadow: 0 4px 15px rgba(181, 146, 80, 0.2);
}

/* View Switcher Panes */
.calendar-view-pane {
  display: none;
  width: 100%;
}

.calendar-view-pane.active {
  display: flex;
  flex-direction: column;
}

/* View 1: Weekly Schedule List */
.weekly-days-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.weekly-day-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(6, 4, 3, 0.25);
  border: 1px solid rgba(217, 119, 6, 0.06);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.weekly-day-row:hover {
  background-color: rgba(217, 119, 6, 0.05);
  border-color: rgba(217, 119, 6, 0.2);
  transform: translateX(4px);
}

.weekly-day-row.active {
  background-color: rgba(181, 146, 80, 0.1) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 15px rgba(181, 146, 80, 0.1);
}

.weekly-date-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 105px;
}

.weekly-day-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.weekly-day-name.is-today {
  color: var(--color-candle);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.weekly-day-name.is-today::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-candle);
  box-shadow: 0 0 6px var(--color-candle);
}

.weekly-date-num {
  font-size: 0.7rem;
  color: var(--text-cream-dim);
  margin-top: 0.1rem;
}

.weekly-day-row.active .weekly-date-num {
  color: var(--text-cream);
}

.weekly-day-event-meta {
  flex-grow: 1;
  padding: 0 1.2rem;
}

.weekly-day-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.weekly-day-time {
  font-size: 0.75rem;
  color: var(--text-cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 120px;
  text-align: right;
}

.weekly-day-row.active .weekly-day-time {
  color: var(--color-candle);
}

/* Closed state row modifier */
.weekly-day-row.closed-day {
  opacity: 0.5;
  border-color: transparent;
  background-color: rgba(6, 4, 3, 0.1);
}

.weekly-day-row.closed-day .weekly-day-title {
  color: var(--text-cream-dim);
  font-style: italic;
}

.weekly-day-row.closed-day .weekly-day-time {
  opacity: 0.6;
}

.weekly-day-row.closed-day:hover {
  opacity: 0.8;
}

/* View 2: Monthly Calendar Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
}

.calendar-month-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(181, 146, 80, 0.15);
  letter-spacing: 0.05em;
  margin: 0;
}

.calendar-nav-btn {
  background: none;
  border: 1px solid var(--border-dim);
  color: var(--color-gold);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
  border-color: var(--color-candle);
  background-color: rgba(217, 119, 6, 0.08);
  color: var(--color-candle);
  transform: scale(1.05);
}

.calendar-nav-btn:active {
  transform: scale(0.95);
}

/* Weekday Labels */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.calendar-weekdays span {
  padding-bottom: 0.5rem;
}

/* Calendar Day Cells Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  flex-grow: 1;
}

/* Calendar Day Cell */
.calendar-day {
  aspect-ratio: 1.1;
  border: 1px solid rgba(217, 119, 6, 0.06);
  border-radius: 4px;
  background-color: rgba(6, 4, 3, 0.25);
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  user-select: none;
}

.calendar-day:hover {
  background-color: rgba(217, 119, 6, 0.06);
  border-color: rgba(217, 119, 6, 0.25);
  transform: translateY(-2px);
}

.calendar-day.empty-day {
  background-color: transparent;
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}

.calendar-day.other-month {
  opacity: 0.2;
  cursor: pointer;
}

.calendar-day.other-month:hover {
  opacity: 0.4;
}

/* Number in day cell */
.calendar-day-num {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-cream-dim);
}

.calendar-day:hover .calendar-day-num {
  color: var(--text-cream);
}

/* Today highlight */
.calendar-day.today {
  background-color: rgba(217, 119, 6, 0.08);
  border: 1px solid var(--border-focus);
}

.calendar-day.today .calendar-day-num {
  color: var(--color-candle);
  font-weight: bold;
}

/* Active selection */
.calendar-day.active {
  background-color: rgba(181, 146, 80, 0.12) !important;
  border: 1px solid var(--color-gold) !important;
  box-shadow: 0 0 15px rgba(181, 146, 80, 0.12);
  transform: scale(1.02);
}

.calendar-day.active .calendar-day-num {
  color: var(--text-cream);
  font-weight: 700;
}

/* Event Dot Indicator */
.calendar-day-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-candle);
  align-self: center;
  margin-bottom: 0.1rem;
  box-shadow: 0 0 6px var(--color-candle);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.calendar-day:hover .calendar-day-dot {
  opacity: 1;
  transform: scale(1.2);
}

.calendar-day.active .calendar-day-dot {
  background-color: var(--text-cream);
  box-shadow: 0 0 8px var(--text-cream);
}

/* Details Pane (Without Image Aspect) */
.calendar-details {
  background-image: linear-gradient(135deg, var(--bg-walnut) 0%, var(--bg-charcoal) 100%);
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  min-height: 400px;
}

.calendar-details-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.calendar-details-inner.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

.calendar-details-inner.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Event Details Content Section */
.event-details-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.event-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-amber);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-cream);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(217, 119, 6, 0.15);
}

.event-time-span {
  font-size: 0.85rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.icon-clock {
  color: var(--color-gold);
}

.event-description {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-cream-dim);
  margin-bottom: 2rem;
}

.btn-reserve-session {
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  justify-content: center;
}

/* Closed state details panel overrides */
.calendar-details.closed-details .event-badge {
  color: var(--text-cream-dim);
}

.calendar-details.closed-details .event-title {
  color: var(--text-cream-dim);
}

.calendar-details.closed-details .event-time-span {
  color: var(--text-cream-dim);
}

@media (max-width: 767px) {
  .weekly-day-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.1rem;
  }
  
  .weekly-day-event-meta {
    padding: 0;
  }
  
  .weekly-day-time {
    text-align: left;
    min-width: auto;
  }
}

/* Section Visit & Parking */
.section-visit {
  background-color: var(--bg-espresso);
  border-bottom: 1px solid var(--border-dim);
}

.address-card {
  display: flex;
  gap: 1.2rem;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  padding: 1.8rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.address-icon {
  color: var(--color-amber);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.svg-icon {
  width: 28px;
  height: 28px;
}

.svg-icon-small {
  width: 18px;
  height: 18px;
}

.address-details h4 {
  font-size: 1.1rem;
  color: var(--text-cream);
  margin-bottom: 0.3rem;
}

.address-details p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.hospitality-logistics h3 {
  font-size: 1.35rem;
  color: var(--text-cream);
  margin-bottom: 1rem;
}

.parking-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.parking-list li {
  display: flex;
  gap: 1rem;
}

.list-bullet-icon {
  color: var(--color-amber);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.parking-list div {
  font-size: 0.9rem;
  color: var(--text-cream-dim);
  line-height: 1.5;
}

.parking-list div strong {
  color: var(--text-cream);
}

/* Simulated Vector Map */
.visit-map-card {
  display: flex;
  justify-content: center;
}

.styled-map-container {
  width: 100%;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.simulated-map {
  width: 100%;
  height: 320px;
  background-color: var(--bg-espresso);
  border: 1px solid var(--border-dim);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.map-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(120, 53, 15, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 53, 15, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-route {
  position: absolute;
  top: 130px;
  left: -20px;
  width: 120%;
  height: 4px;
  background-color: rgba(120, 53, 15, 0.25);
  transform: rotate(-10deg);
}

.map-route::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 55%;
  width: 4px;
  height: 200px;
  background-color: rgba(120, 53, 15, 0.25);
  transform: rotate(20deg);
}

.map-landmark {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
  opacity: 0.5;
}

.university-dr {
  top: 105px;
  left: 20px;
  transform: rotate(-10deg);
}

.parking-deck {
  top: 230px;
  left: 40px;
  border: 1px dashed var(--border-dim);
  padding: 0.5rem;
}

.wine-house {
  top: 75px;
  right: 50px;
  color: var(--text-cream);
}

.map-pin-pulse {
  position: absolute;
  top: 125px;
  right: 125px;
  width: 16px;
  height: 16px;
  background-color: var(--color-amber);
  border-radius: 50%;
  transform: translate(50%, -50%);
  box-shadow: 0 0 15px var(--color-amber);
}

.map-pin-pulse::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-amber);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-out 2s infinite ease-out;
}

@keyframes pulse-out {
  0% { transform: scale(0.3); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 0; }
}

.map-pin-label {
  position: absolute;
  top: 155px;
  right: 125px;
  transform: translate(50%, -50%);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-cream);
  background-color: var(--bg-charcoal);
  border: 1px solid var(--color-amber);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Footer Styles */
.footer {
  background-color: var(--bg-espresso);
  border-top: 1px solid var(--border-dim);
  padding: 5rem 0 2.5rem 0;
}

.footer-top-grid {
  display: grid;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-brand-desc {
  max-width: 320px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-top-grid h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 1.8rem;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(120, 53, 15, 0.08);
  padding-bottom: 0.4rem;
}

.hours-list li span:last-child {
  color: var(--text-cream);
  font-weight: 500;
}

.hours-list li span.closed-label {
  color: var(--text-cream-dim);
  font-style: italic;
  font-weight: 300;
}

.footer-contact-detail {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--text-cream);
}

.footer-contact-detail a:hover {
  color: var(--color-amber);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 20px;
  height: 20px;
  color: var(--text-cream-dim);
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--color-amber);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-cream-dim);
  text-align: center;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.footer-bottom-links button.text-link {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.footer-bottom-links button.text-link:hover {
  color: var(--color-amber);
}

/* Modals Overlay (Speakeasy Booking & Full Menu) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 600px;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-cream-dim);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--color-amber);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-amber);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--text-cream);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Forms */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-cream-dim);
  font-weight: 500;
}

.form-group input, 
.form-group select {
  background-color: var(--bg-espresso);
  border: 1px solid var(--border-dim);
  padding: 0.85rem 1rem;
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.15);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-amber);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* Reservation Ticket Screen */
.confirm-card-wrapper {
  animation: slide-in-confirm 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

.vintage-ticket {
  width: 100%;
  background-color: #fffae8; /* Off-white premium ticket stock */
  color: #2b251f; /* Charcoal ink */
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  margin-bottom: 2.5rem;
  position: relative;
  border: 1px solid #e3dcbf;
}

/* Ticket dashed separator simulation */
.vintage-ticket::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1.5px dashed #cfc7a7;
}

.ticket-header {
  background-color: #2e251f; /* Dark wood header block */
  color: #fffae8;
  padding: 1.5rem 2rem;
  text-align: center;
}

.ticket-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ticket-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ca8a04;
}

.ticket-body {
  padding: 2rem;
  position: relative;
}

.ticket-row {
  margin-bottom: 1.2rem;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.ticket-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #7b7264;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.ticket-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #2e251f;
}

.ticket-parking-note p {
  font-size: 0.8rem;
  color: #575249;
  line-height: 1.4;
  margin-bottom: 0;
}

.ticket-seal {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 70px;
  height: 70px;
  border: 2px double rgba(120, 53, 15, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transform: rotate(-12deg);
}

.seal-inner {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(120, 53, 15, 0.18);
}

.ticket-footer {
  padding: 1.2rem 2rem;
  text-align: center;
  background-color: #f7f1db;
}

.ticket-code {
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.ticket-note {
  font-size: 0.7rem;
  color: #7b7264;
  margin-bottom: 0;
}

/* Full Menu Modal Custom Card */
.menu-modal-card {
  max-width: 800px;
}

.full-menu-scrollable {
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 1rem;
  margin: 1.5rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Custom Scrollbar for Menu */
.full-menu-scrollable::-webkit-scrollbar {
  width: 4px;
}
.full-menu-scrollable::-webkit-scrollbar-track {
  background: var(--bg-espresso);
}
.full-menu-scrollable::-webkit-scrollbar-thumb {
  background: var(--color-bronze);
  border-radius: 2px;
}

.full-menu-section {
  margin-bottom: 2.5rem;
}

.full-menu-section:last-child {
  margin-bottom: 0;
}

.full-menu-sec-title {
  font-size: 1.35rem;
  color: var(--color-gold);
  border-bottom: 1px solid var(--border-dim);
  padding-bottom: 0.5rem;
  margin-bottom: 1.2rem;
}

.full-menu-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .full-menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.full-menu-item {
  margin-bottom: 0.5rem;
}

.item-meta {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-cream);
  margin-bottom: 0.25rem;
}

.full-menu-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.ledger-footnote {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-cream-dim);
}

/* ==========================================================================
   CINEMATIC SPEAKEASY OVERLAYS & EFFECTS
   ========================================================================== */

/* Film Grain Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035; /* Subtle grain texture */
}

/* Soft Viewport Vignette */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.85); /* Soft cinematic vignette */
}

/* Speakeasy Welcome Gate */
/* Speakeasy Digital Installation Gate */
.speakeasy-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  transition: visibility 0.75s;
}

@keyframes ambient-glow {
  0% { 
    filter: hue-rotate(-3deg) brightness(0.95); 
  }
  100% { 
    filter: hue-rotate(3deg) brightness(1.05); 
  }
}

/* Door Split Panels */
.gate-door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.95);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  animation: ambient-glow 10s ease-in-out infinite alternate;
}

.gate-door-left {
  left: 0;
  background: radial-gradient(circle at 100% 50%, rgba(181, 146, 80, 0.08) 0%, rgba(95, 37, 8, 0.12) 35%, #060403 70%, #020101 100%);
}

.gate-door-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(207, 166, 112, 0.35); /* Subtle, elegant bronze */
  box-shadow: -2px 0 10px rgba(217, 119, 6, 0.15), -4px 0 20px rgba(95, 37, 8, 0.25);
  z-index: 5;
}

.gate-door-right {
  right: 0;
  background: radial-gradient(circle at 0% 50%, rgba(181, 146, 80, 0.08) 0%, rgba(95, 37, 8, 0.12) 35%, #060403 70%, #020101 100%);
}

.gate-door-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(207, 166, 112, 0.35);
  box-shadow: 2px 0 10px rgba(217, 119, 6, 0.15), 4px 0 20px rgba(95, 37, 8, 0.25);
  z-index: 5;
}

/* Background Speakeasy Reveal inside Spotlight Mask split across doors */
.gate-reveal-backdrop {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
  mix-blend-mode: screen;
  /* Interactive spotlight mask */
  -webkit-mask-image: radial-gradient(circle 280px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle 280px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.gate-door-left .gate-reveal-backdrop {
  left: 0;
}

.gate-door-right .gate-reveal-backdrop {
  left: -50vw;
}

/* Velvet Black Veil inside doors */
.gate-velvet-overlay {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #020101;
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 1.8s ease;
}

.gate-door-left .gate-velvet-overlay {
  left: 0;
}

.gate-door-right .gate-velvet-overlay {
  left: -50vw;
}

/* Canvas/Embers Container */
.embers-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 1.2s ease;
}

.ember {
  position: absolute;
  bottom: -10px;
  background-color: var(--color-amber);
  border-radius: 50%;
  filter: drop-shadow(0 0 3px var(--color-gold)) blur(0.5px);
  animation-name: ember-rise;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-iteration-count: infinite;
  opacity: 0;
}

@keyframes ember-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  15% { opacity: 0.75; }
  85% { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(45px); opacity: 0; }
}

/* Digital Installation Typography */
.installation-container {
  position: relative;
  z-index: 4;
  width: 90%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transition: transform 1.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.4s ease;
}

.installation-tagline-top {
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  color: var(--color-gold);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  align-self: flex-start;
  margin-left: 5%;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* Enormous Luxury Architectural Wordmark */
.installation-wordmark {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 13.5vw, 9.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.85;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
  pointer-events: none;
  
  /* Bold legible cream color with soft moody drop shadow */
  color: #f4efe9;
  text-shadow: 0 4px 25px rgba(0,0,0,0.85), 0 0 45px rgba(245, 158, 11, 0.2);

  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  will-change: transform;
}

.installation-tagline-bottom {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  color: var(--color-amber);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  opacity: 0.55;
  align-self: flex-end;
  margin-right: 5%;
  transition: opacity 1.2s ease, transform 1.2s ease;
  margin-bottom: 3.5rem;
}

/* Centered Signature Entrance Button & Illuminated Threshold */
.threshold-cta-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto; /* Allow clicking! */
}

.threshold-glow-pulse {
  position: absolute;
  width: 130%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.22) 0%, rgba(245, 158, 11, 0) 70%);
  filter: blur(12px);
  opacity: 0.85;
  animation: threshold-pulse 3s infinite ease-in-out;
  pointer-events: none;
}

.threshold-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  background-color: rgba(6, 4, 3, 0.75);
  border: 1px solid rgba(207, 166, 112, 0.38);
  padding: 1.2rem 3.5rem;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 25px rgba(0,0,0,0.6), inset 0 0 10px rgba(245, 158, 11, 0.05);
}

.threshold-btn:hover, .threshold-btn:focus {
  color: #020101;
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.btn-line-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.threshold-btn:hover .btn-line-glow {
  left: 150%;
  transition: left 1.2s ease-in-out;
}

@keyframes threshold-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50% { opacity: 0.95; transform: scale(1.08); }
}

/* ==========================================================================
   CINEMATIC DOUBLE-DOOR SPLIT TRANSITION (THE REVEAL)
   ========================================================================== */
.speakeasy-gate.gate-reveal-zoom {
  pointer-events: none;
  visibility: hidden;
  transition-delay: 0.75s;
}

/* Slide Open the Doors along the vertical seam */
.speakeasy-gate.gate-reveal-zoom .gate-door-left {
  transform: translateX(-100%);
}

.speakeasy-gate.gate-reveal-zoom .gate-door-right {
  transform: translateX(100%);
}

/* UI Elements inside fade out gracefully */
.speakeasy-gate.gate-reveal-zoom .installation-container,
.speakeasy-gate.gate-reveal-zoom .keyhole-container,
.speakeasy-gate.gate-reveal-zoom .gate-text-bottom,
.speakeasy-gate.gate-reveal-zoom .embers-container {
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.96);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Homepage Wrapper Transitions for Gate Entrance */
body > *:not(.speakeasy-gate) {
  transition: filter 1.8s cubic-bezier(0.25, 1, 0.5, 1), transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: filter, transform;
}

body.gate-active > *:not(.speakeasy-gate) {
  filter: blur(15px);
  transform: scale(0.96);
  pointer-events: none;
}

/* Candlelit Flicker & Glow pulse animations */
@keyframes candle-flicker {
  0%, 100% { opacity: 0.95; filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.15)); }
  25% { opacity: 0.85; filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.15)); }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.25)); }
  75% { opacity: 0.90; filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.15)); }
}

.candle-glow-active {
  animation: candle-flicker 5s infinite ease-in-out;
}

/* Layered depth styles */
.layered-container {
  position: relative;
  z-index: 2;
}

.parallax-layer-slow {
  will-change: transform;
}

.parallax-layer-fast {
  will-change: transform;
}

/* Quote Block Styles */
.quote-block {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  line-height: 1.35;
  color: var(--color-candle);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-bronze);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: candle-flicker 6s infinite ease-in-out;
}

/* Experience Layered Offsets */
@media (min-width: 768px) {
  .experience-row {
    margin-bottom: 8rem;
  }
  
  .experience-row .experience-image {
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .experience-row:hover .experience-image {
    transform: scale(1.02) translateY(-5px);
  }
  
  /* Create staggered offset visual spacing */
  .experience-row:nth-child(odd) .experience-image {
    transform: translateY(-20px);
  }
  .experience-row:nth-child(even) .experience-image {
    transform: translateY(20px);
  }
  .experience-row:nth-child(odd) .experience-details {
    transform: translateY(15px);
  }
  .experience-row:nth-child(even) .experience-details {
    transform: translateY(-15px);
  }
}

/* Sessions Card Glowing Poster Styling */
.session-card {
  background-color: #0b0908;
  border: 1px solid rgba(217, 119, 6, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.session-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(217, 119, 6, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.session-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.08);
}

.session-card:hover::after {
  opacity: 0.8;
}

.featured-session {
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.04);
}

.featured-session::after {
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, rgba(0, 0, 0, 0) 65%);
}

.featured-session::before {
  background-color: var(--color-candle);
  color: #060403;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.session-vibe {
  border-top: 1px dashed rgba(217, 119, 6, 0.08);
  color: var(--color-gold);
}
