/* ============================================================
   HUAKAʻI LŪʻAU — Cinematic Scroll-Driven Landing Page
   ============================================================ */

:root {
  --bg: #000000;
  --text-primary: #F5E6C8;
  --text-secondary: #C4A882;
  --text-muted: #8B7355;
  --accent-gold: #D4A843;
  --accent-fire: #FF6600;
  --section-label-color: #9B7A2E;
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
}

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

html {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.7;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── Fire Gradient Text ── */
.fire-text {
  background: linear-gradient(
    to top,
    #5C0000 0%,
    #8B0000 10%,
    #C01500 22%,
    #E03000 35%,
    #FF5500 50%,
    #FF7700 65%,
    #FFA500 78%,
    #FFD000 90%,
    #FFE566 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.3) saturate(1.5) contrast(1.1);
}

/* ── Stars Layer ── */
.stars-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: var(--max-opacity, 0.6); transform: scale(1); }
  50% { opacity: 0.1; transform: scale(0.5); }
}

/* ── Intro Splash ── */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* no interaction — fully automatic */
  transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.4, 0, 0.15, 1);
}

/* Dissolves upward into the top third */
#intro-splash.leaving {
  opacity: 0;
  transform: translateY(-33vh) scale(0.55);
}

#intro-logo {
  width: clamp(200px, 62vmin, 680px);
  opacity: 0;
  animation: intro-zoom 2.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes intro-zoom {
  0%   { opacity: 0; transform: scale(0.07); }
  12%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 100, 0, 0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(255, 160, 0, 0.7)); }
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.loader-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 280px;
}

#loader-bar {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

#loader-bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #8B0000, #FF6600, #FFD700);
  transition: width 0.1s linear;
}

#loader-percent {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ── Fixed Header ── */
/* ── Google Trust Bar ── */
#trust-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 44px;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 8, 22, 0.90);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 18px 5px 14px;
  border: 1.5px solid rgba(210, 162, 55, 0.75);
  border-radius: 3px;
  background: rgba(8, 14, 40, 0.92);
  box-shadow: 0 0 18px rgba(180, 130, 30, 0.18);
}

.trust-flower {
  color: #C8A030;
  font-size: 0.85rem;
  line-height: 1;
}

.trust-google-logo {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.trust-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(210, 162, 55, 0.45);
  margin: 0 2px;
  flex-shrink: 0;
}

.trust-stars {
  color: #F5C518;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}

.trust-text {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8A840;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 100;
  padding: 10px 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.82) 70%, rgba(0,0,0,0.5) 100%);
  transition: background 0.3s ease;
}

/* Solid fade mask — content dissolves below the header, not into it */
.header-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.95)  0%,
    rgba(0,0,0,0.95) 55%,   /* solid through ~99px (header zone) */
    rgba(0,0,0,0.5)  75%,   /* partial fade ~135px */
    rgba(0,0,0,0)   100%    /* transparent at 180px */
  );
  z-index: 12;              /* above sections (3) + hero-overlay (10), below banner (15) + header (100) */
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  gap: 20px;
}

/* Logo + address block */
.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 120, 0, 0.55)) drop-shadow(0 0 40px rgba(200, 80, 0, 0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.header-logo:hover img {
  filter: drop-shadow(0 0 28px rgba(255, 180, 0, 0.8)) drop-shadow(0 0 60px rgba(255, 100, 0, 0.4));
  transform: scale(1.04);
}

.header-address {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header-address-venue {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFD580;
  line-height: 1.3;
}

.header-address-street {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  color: #D4C4A0;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover { color: var(--accent-gold); }

.nav-link.nav-cta {
  color: #000;
  background: linear-gradient(to right, #FF6600, #FFD000);
  padding: 11px 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: filter 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.35);
}

.nav-link.nav-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 160, 0, 0.55);
}

/* ── Header phone — large flashing CTA ── */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  animation: phone-flash 2s ease-in-out infinite;
  pointer-events: auto;
  flex-shrink: 0;
}

.header-phone-icon {
  font-size: 1.1rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 160, 0, 0.7));
}

.header-phone-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(to right, #FF6600, #FFD000, #FF6600);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes phone-flash {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 200, 0, 0.9)) drop-shadow(0 0 28px rgba(255, 80, 0, 0.5));
    transform: scale(1.04);
  }
}

/* ── Scene Marquee Banner — fixed strip below header, above canvas ── */
.scene-marquee-banner {
  position: fixed;
  top: 154px;          /* below trust bar (44px) + header (~110px) */
  left: 0; right: 0;
  z-index: 15;         /* above canvas (z1), above hero-overlay (z10) */
  height: 30vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.0) 100%
  );
  border-bottom: 1px solid rgba(212, 168, 67, 0.20);
  will-change: opacity, transform;
  pointer-events: none;
}

/* Top row — scrolls right to left */
.scene-marquee-row {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scene-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  will-change: transform;
}

.smr-track-fwd { animation: smr-fwd 26s linear infinite; }
.smr-track-rev { animation: smr-rev 32s linear infinite; }

@keyframes smr-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes smr-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.smr-item {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 7.5vw, 10rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 0.45em;
  background: linear-gradient(to top,
    #7A0000  0%,
    #CC1500 18%,
    #F03500 36%,
    #FF6600 55%,
    #FFA500 75%,
    #FFE033 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.3) saturate(1.6) drop-shadow(0 0 18px rgba(255, 100, 0, 0.55));
}

.smr-item-alt {
  font-family: 'Cormorant Garamond', Georgia, 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  background: linear-gradient(to top,
    #8B4500  0%,
    #CC6000 28%,
    #F09000 55%,
    #FFC800 78%,
    #FFE566 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.2) saturate(1.4) drop-shadow(0 0 12px rgba(255, 140, 0, 0.45));
}

.smr-sep {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  color: rgba(255, 140, 30, 0.6);
  -webkit-text-fill-color: rgba(255, 140, 30, 0.6);
  padding: 0 0.3em;
  filter: drop-shadow(0 0 6px rgba(255, 120, 0, 0.4));
}
.smr-sep-alt {
  font-size: clamp(1.2rem, 2.5vw, 2.8rem);
  color: rgba(200, 140, 40, 0.5);
  -webkit-text-fill-color: rgba(200, 140, 40, 0.5);
  filter: drop-shadow(0 0 4px rgba(200, 120, 0, 0.3));
}

/* ── Hero Overlay — fixed, floats over video from page load ── */
.hero-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.30) 45%,
    rgba(0,0,0,0.12) 60%,
    rgba(0,0,0,0) 80%
  );
  will-change: opacity, transform;
}

.hero-inner {
  text-align: center;
  padding: 0 40px;
  max-width: 1040px;
  pointer-events: none;
  margin-top: 26vh; /* push title below marquee banner */
}

.hero-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-in-up 1s ease 0.3s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}

.hero-heading .word {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-rise 1.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-heading .word:nth-child(1) { animation-delay: 0.5s; }
.hero-heading .word:nth-child(2) { animation-delay: 0.65s; }
.hero-heading .word:nth-child(3) { animation-delay: 0.8s; }
.hero-heading .word:nth-child(4) { animation-delay: 0.95s; }

@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); }
}

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

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-in-up 1s ease 1.3s forwards;
}

/* ── Hero Booking Widget — visual styles ── */
.hero-booking {
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(212, 168, 67, 0.38);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(255, 90, 0, 0.07),
    0 8px 60px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(255, 80, 0, 0.05),
    inset 0 1px 0 rgba(255, 200, 80, 0.08);
}

/* ── Booking Panel — static right-side widget, always visible ── */
#booking-panel {
  position: fixed;
  right: 2vw;
  left: auto;
  top: 162px;           /* sits just below the trust bar (44px) + header (~118px) */
  transform: none;
  width: min(420px, 34vw);
  overflow: visible;    /* no inner scrolling — full calendar visible */
  z-index: 50;          /* above marquee banner (15) and header mask (12) */
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-booking-header {
  padding: 18px 28px 14px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: linear-gradient(to bottom, rgba(212, 168, 67, 0.04), transparent);
}

.hero-booking-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-booking-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-booking-embed {
  padding: 6px 0 2px;
}

/* FareHarbor calendar overrides — match dark fire theme */
.hero-booking-embed .fh-cal-wrapper,
.hero-booking-embed .fh-cal-table,
.hero-booking-embed table {
  background: transparent !important;
  width: 100% !important;
}

.hero-booking-embed .fh-cal-header,
.hero-booking-embed .fh-cal-nav {
  color: var(--text-primary) !important;
  background: transparent !important;
}

.hero-booking-embed .fh-cal-day-available a,
.hero-booking-embed .fh-cal-day-available {
  color: var(--accent-gold) !important;
  font-family: var(--font-heading) !important;
}

.hero-booking-embed .fh-cal-day-unavailable {
  color: rgba(139, 115, 85, 0.35) !important;
}

.hero-booking-footer {
  padding: 13px 28px 14px;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  text-align: center;
  background: linear-gradient(to top, rgba(212, 168, 67, 0.03), transparent);
}

.hero-booking-price {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.hero-booking-price strong {
  font-style: normal;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-in-up 1s ease 1.8s forwards;
}

.scroll-text {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  color: var(--accent-fire);
  animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── Canvas Wrap — starts fully visible ── */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  clip-path: circle(100%);
  will-change: clip-path;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Dark Overlay ── */
#dark-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: #000;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ── Marquee ── */
.marquee-wrap {
  position: fixed;
  left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.marquee-top { top: 88px; }
.marquee-bottom { bottom: 32px; }

.marquee-text {
  font-family: var(--font-heading);
  font-size: 11vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 168, 67, 0.18);
  will-change: transform;
  line-height: 1.1;
}

/* ── Scroll Container ── */
#scroll-container {
  position: relative;
  height: 2500vh;
  z-index: 3;
}

/* ── Scroll Sections ── */
.scroll-section {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.scroll-section.visible { pointer-events: auto; }

/* Side alignment — text hugs the edge, video fills center */
.align-left {
  padding-left: 4vw;
  padding-right: 58vw;
  justify-content: flex-start;
}

.align-right {
  padding-left: 58vw;
  padding-right: 4vw;
  justify-content: flex-end;
}

.section-inner {
  max-width: 38vw;
  width: 100%;
}

/* ── Section Typography ── */
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--section-label-color);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-body {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
}

/* ── Stats Section ── */
.section-stats {
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ── TripAdvisor Reviews ── */
.tripadvisor-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 28px;
  flex-wrap: wrap;
}

.tripadvisor-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
}

.tripadvisor-logo {
  height: 28px;
  width: auto;
  display: block;
}

.tripadvisor-rating {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7CBA6A;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 4px;
}

/* 3rd review wraps to row 2, centered under the pair */
.review-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 8px);
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-stars {
  color: #34E0A1;
  font-size: 0.88rem;
  letter-spacing: 2px;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  text-transform: uppercase;
  line-height: 1.4;
}

.review-body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA Section — left-aligned, video on right ── */
.section-cta {
  justify-content: center;
  padding: 0 5vw;
}

/* Left-aligned CTA variant */
.section-cta--left {
  justify-content: flex-start;
  padding-left: 4vw;
  padding-right: 52vw;
  align-items: center;
}

.section-cta--left .cta-inner {
  text-align: left;
  max-width: 44vw;
}

.section-cta--left .cta-quote {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-cta--left .cta-actions {
  align-items: flex-start;
}

/* Centered override for the bottom CTA actions block */
.section-cta--left .cta-actions--center {
  align-items: center;
  width: 100%;
}

.section-cta--left .cta-details {
  align-items: flex-start;
}

.cta-inner {
  max-width: 680px;
  text-align: center;
}

.cta-heading {
  font-size: clamp(3.5rem, 6vw, 6.5rem) !important;
  margin-bottom: 28px;
}

.cta-body {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem) !important;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.cta-detail {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #FF5500 0%, #FFB300 50%, #FFE566 100%);
  padding: 22px 52px;
  position: relative;
  transition: filter 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 40px rgba(255, 100, 0, 0.35);
  margin-bottom: 24px;
  pointer-events: auto;
}

.cta-button:hover {
  filter: brightness(1.12);
  transform: translateY(-3px);
  box-shadow: 0 0 65px rgba(255, 140, 0, 0.55);
  animation-play-state: paused;
}

.cta-button--flash {
  animation: cta-btn-flash 1.8s ease-in-out infinite;
}

@keyframes cta-btn-flash {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 100, 0, 0.4), 0 0 60px rgba(255, 80, 0, 0.15);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 65px rgba(255, 160, 0, 0.85), 0 0 120px rgba(255, 80, 0, 0.45);
    filter: brightness(1.18);
  }
}

.cta-actions--center {
  align-items: center;
  text-align: center;
}

.cta-phone--large {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  display: block;
  color: var(--accent-gold);
}

.cta-note {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--section-label-color);
  font-style: normal;
}

/* ── Decorative fire glow behind headings ── */
.section-heading::after,
.cta-heading::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, rgba(255,100,0,0.5), rgba(255,200,0,0.3), transparent);
  margin-top: 20px;
  transform-origin: left;
}

.align-right .section-heading::after {
  background: linear-gradient(to left, rgba(255,100,0,0.5), rgba(255,200,0,0.3), transparent);
}

.cta-heading::after {
  background: linear-gradient(to right, transparent, rgba(255,150,0,0.5), rgba(255,220,0,0.3), transparent);
}

/* ── Wide inner variant ── */
.section-inner--wide { max-width: 48vw; }

/* ── Center-aligned wide sections (schedule, blog, reviews) ── */
.align-center {
  justify-content: center;
  padding: 0 5vw;
  padding-right: 38vw; /* keep content clear of the fixed booking panel (~36vw wide) */
}
.align-center .section-inner--wide {
  max-width: 100%; /* fills available area left of booking panel */
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 3px;
  padding: 3.5rem 5rem;
}
.align-center .section-inner--gallery {
  max-width: 100%;
  width: 100%;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
}
/* Gallery: slightly less right-padding than other sections so it has more room,
   but still stays clear of the booking panel (which starts ~64vw from left) */
.section-gallery.align-center {
  padding-right: 37vw;
}

/* ── Section Note ── */
.section-note {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--section-label-color);
  margin-top: 20px;
}

/* ── Menu List ── */
.menu-category-header {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-fire);
  border-bottom: 1px solid rgba(255, 102, 0, 0.35);
  padding-bottom: 5px;
  margin-top: 22px;
  margin-bottom: 4px;
}

.menu-gf-key {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gf-mark {
  color: #7CBA6A;
  font-weight: 700;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

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

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.menu-item-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Show List ── */
.show-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.show-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0 14px 20px;
  border-left: 1px solid rgba(212, 168, 67, 0.2);
  margin-bottom: 4px;
  transition: border-color 0.3s ease;
}

.show-item--finale {
  border-left-color: rgba(255, 100, 0, 0.5);
}

.show-item-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.show-item--finale .show-item-name {
  background: linear-gradient(to right, #FF5500, #FFD000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.2) saturate(1.3);
}

.show-item-origin {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Ticket Sections ── */
.ticket-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 12px 0 8px;
  flex-wrap: wrap;
}

.ticket-price-row--secondary { margin: 0 0 20px; }

.ticket-price-row--link {
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, padding-left 0.2s ease;
  padding-left: 0;
}
.ticket-price-row--link:hover {
  background: rgba(255, 102, 0, 0.08);
  padding-left: 10px;
}
.ticket-price-row--link:hover .ticket-price,
.ticket-price-row--link:hover .ticket-price-sub {
  filter: brightness(1.15);
}

.ticket-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}

.ticket-price-sub {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.ticket-price-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #C8B080;
  text-transform: uppercase;
  line-height: 1.6;
}

.ticket-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.ticket-includes li {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

/* ── General Admission Book Button ── */
.ticket-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #FF5500 0%, #FFB300 55%, #FFE566 100%);
  padding: 18px 40px;
  margin-top: 8px;
  transition: filter 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 100, 0, 0.3);
  pointer-events: auto;
}

.ticket-book-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(255, 150, 0, 0.5);
}

.ticket-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-fire);
  font-style: normal;
  font-size: 0.6rem;
  top: 5px;
}

.ticket-includes--vip li:first-child {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  padding-left: 0;
  margin-bottom: 4px;
}

.ticket-includes--vip li:first-child::before { display: none; }

.ticket-book-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(212, 168, 67, 0.4);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.ticket-book-link:hover {
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.7);
}

.ticket-book-link--vip {
  background: linear-gradient(to right, #FF5500, #FFD000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: rgba(255, 150, 0, 0.4);
}

/* ── Ticket Two-Column Grid ── */
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.ticket-col {
  padding: 28px 28px 24px;
  border: 1px solid rgba(200, 176, 128, 0.2);
  border-radius: 2px;
}

.ticket-col--vip {
  border-color: rgba(255, 180, 0, 0.45);
  background: rgba(255, 140, 0, 0.04);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.07);
}

.ticket-tier-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ticket-tier-label--vip {
  background: linear-gradient(to right, #FF5500, #FFD000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ticket-book-btn--vip {
  background: linear-gradient(135deg, #8B6000 0%, #D4A017 40%, #FFD700 70%, #FFF0A0 100%);
}

/* ── Gallery ── */
.section-inner--gallery {
  max-width: 100%;
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
  margin-top: 20px;
}

/* Bento layout: alternating wide (span 3) and normal (span 2) */
.gallery-item--wide   { grid-column: span 3; }
.gallery-item--normal { grid-column: span 2; }

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(212, 168, 67, 0.10);
  background: #000;
  transition: border-color 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(255, 120, 0, 0.55);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75) saturate(1.1);
}

/* Fire-glow on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(180, 30, 0, 0) 0%,
    rgba(255, 90, 0, 0) 100%);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover::before {
  background: linear-gradient(135deg,
    rgba(180, 30, 0, 0.30) 0%,
    rgba(255, 180, 0, 0.18) 100%);
}

/* Zoom icon on hover */
.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-zoom svg {
  width: 42px;
  height: 42px;
  color: #FFD700;
  filter: drop-shadow(0 0 14px rgba(255, 160, 0, 0.9));
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ── Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#lightbox.lb-open {
  opacity: 1;
  pointer-events: auto;
}
#lb-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 60px rgba(255, 120, 0, 0.15);
}
#lb-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: #D4A843;
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
#lb-close:hover {
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.6);
}
#lb-hint {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.35);
  margin: 0;
}

/* ── Blog ── */
.blog-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.blog-preview-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 168, 67, 0.35);
}

.blog-preview-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.blog-preview-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
}

.blog-cta-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(212, 168, 67, 0.4);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
}

.blog-cta-link:hover {
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.7);
}

/* ── Schedule ── */
.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
}

.schedule-list::before {
  content: '';
  position: absolute;
  left: 78px;
  top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 168, 67, 0.3) 15%,
    rgba(212, 168, 67, 0.3) 85%,
    transparent
  );
}

.schedule-item {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 13px 0;
}

.schedule-time {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--section-label-color);
  min-width: 78px;
  text-align: right;
  padding-right: 24px;
  flex-shrink: 0;
}

.schedule-item:last-child .schedule-time { color: var(--accent-gold); }

.schedule-event {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  padding-left: 22px;
  border-left: 2px solid rgba(212, 168, 67, 0.25);
  line-height: 1.6;
}

.schedule-item:last-child .schedule-event {
  color: var(--accent-gold);
  border-left-color: rgba(255, 160, 0, 0.45);
}

/* No-times schedule variant */
.schedule-list--no-times .schedule-item {
  padding: 14px 0;
}
.schedule-list--no-times .schedule-list::before { display: none; }

.schedule-note { margin-top: 28px; }

/* ── CTA Quote ── */
.cta-quote {
  margin: 0 0 32px;
  padding: 22px 0 22px 28px;
  border-left: 2px solid rgba(212, 168, 67, 0.35);
  max-width: 520px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.cta-quote p {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}

.cta-quote cite {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  transition: color 0.3s ease, filter 0.3s ease;
  pointer-events: auto;
}

.cta-phone:hover {
  color: #FFD700;
  filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.5));
}

/* ── Site Footer ── */
.site-footer {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
}

.footer-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.82) saturate(1.35);
  display: block;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0)  0%,    /* let the twilight sky breathe */
    rgba(0,0,0,0.15) 35%,   /* slight veil over dancers */
    rgba(0,0,0,0.7)  65%,   /* transition to readable */
    rgba(0,0,0,0.92) 85%,   /* text zone */
    rgba(0,0,0,0.97) 100%
  );
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 60px 24px 56px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 16px rgba(255, 140, 0, 0.35));
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin: 0;
  filter: drop-shadow(0 2px 18px rgba(255, 120, 0, 0.4));
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 4px 0 0;
}

.footer-phone {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  text-decoration: none;
  margin: 6px 0;
  transition: filter 0.3s ease;
}

.footer-phone:hover {
  filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.7));
  color: #FFD700;
}

.footer-address {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.8;
  color: #E8D5B0;
  margin: 0;
}

.footer-schedule {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin: 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #FF5500 0%, #FFB300 50%, #FFE566 100%);
  padding: 18px 48px;
  text-decoration: none;
  box-shadow: 0 0 35px rgba(255, 100, 0, 0.4);
  transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  animation: cta-btn-flash 1.8s ease-in-out infinite;
}

.footer-cta:hover {
  filter: brightness(1.12);
  transform: scale(1.03);
  animation-play-state: paused;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.35);
  margin: 8px 0 0;
}

/* ── Subtle grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Map Section ── */
.map-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.map-iframe-wrap {
  position: absolute;
  inset: 0;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) brightness(0.85);
}

.map-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.78) 35%,
    rgba(0,0,0,0.25) 58%,
    rgba(0,0,0,0) 75%
  );
  pointer-events: none;
}

.map-content {
  position: absolute;
  top: 50%;
  left: 6vw;
  transform: translateY(-50%);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin: 4px 0 6px;
}

.map-venue {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  line-height: 1.5;
}

.map-address {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.map-arrival-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 340px;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-fire) 0%, #cc4400 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(255,102,0,0.4);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  width: fit-content;
}

.directions-btn:hover {
  box-shadow: 0 6px 32px rgba(255,102,0,0.65);
  transform: translateY(-2px);
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .header-address { display: none; }

  .header-nav { gap: 16px; }

  /* Booking panel: narrower width, stay visible on tablet */
  #booking-panel { width: min(380px, 40vw); top: 144px; }

  /* Reviews: 2 columns on tablet */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .align-left {
    padding-left: 3vw;
    padding-right: 50vw;
  }
  .align-right {
    padding-left: 50vw;
    padding-right: 3vw;
  }
  .section-cta--left {
    padding-left: 3vw;
    padding-right: 46vw;
  }
  .section-cta--left .cta-inner { max-width: 50vw; }

  .section-inner      { max-width: 44vw; }
  .section-inner--wide { max-width: 48vw; }

  /* On tablet, align-center sections also need padding-right to avoid panel */
  .align-center { padding-right: 44vw; }
  .section-gallery.align-center { padding-right: 42vw; }
  .align-center .section-inner--wide { max-width: 100%; }

  .section-inner--gallery { max-width: 100%; width: 100%; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; gap: 5px; }

  /* Map section tablet */
  .map-section { height: 460px; }
  .map-content { max-width: 340px; left: 4vw; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  html { font-size: 18px; }

  /* Booking panel hidden on mobile — use CTA buttons throughout the page */
  #booking-panel { display: none; }

  /* Reviews: single column on mobile */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Header */
  .site-header { padding: 10px 16px; }
  .header-logo img { height: 70px; }
  .header-mask { height: 150px; }
  .header-phone-number { font-size: 0.9rem; }
  .header-phone-icon   { display: none; }
  .header-address  { display: none; }
  .header-nav      { gap: 12px; }
  .header-nav .nav-link:not(.nav-cta) { display: none; }
  .nav-link.nav-cta { padding: 9px 16px; font-size: 0.65rem; }

  /* Marquee banner */
  .scene-marquee-banner {
    top: 134px;
    height: 24vh;
  }
  .smr-item     { font-size: clamp(2.4rem, 7vw, 5rem); }
  .smr-item-alt { font-size: clamp(1.6rem, 5vw, 3.5rem); }

  /* Hero */
  .hero-inner { margin-top: 28vh; }
  .hero-heading { font-size: clamp(2.8rem, 13vw, 5.5rem); }

  /* All sections collapse to centered single-column */
  .align-left,
  .align-right,
  .align-center,
  .section-cta--left {
    padding: 100px 6vw 60px;
    justify-content: center;
    align-items: center;
  }
  .align-center .section-inner--wide {
    max-width: 100%;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .section-inner,
  .section-inner--wide,
  .section-inner--gallery,
  .section-cta--left .cta-inner {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 5px; }
  .gallery-item--wide   { grid-column: span 2; }
  .gallery-item--normal { grid-column: span 2; }

  .section-heading { font-size: clamp(2.4rem, 8vw, 3.8rem); }
  .section-body    { font-size: clamp(1.05rem, 3.5vw, 1.3rem); }

  /* CTA section */
  .section-cta--left {
    padding-right: 6vw;
  }
  .section-cta--left .cta-quote  { margin-left: auto; margin-right: auto; text-align: left; }
  .section-cta--left .cta-actions { align-items: center; }
  .section-cta--left .cta-details { align-items: center; }

  .cta-heading { font-size: clamp(2.8rem, 9vw, 4.5rem) !important; }
  .cta-button  { padding: 18px 36px; font-size: 0.78rem; }
  .cta-phone   { font-size: 0.85rem; }
  .cta-phone--large { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .cta-quote p { font-size: 1.2rem; }

  /* Ticket */
  .ticket-grid      { grid-template-columns: 1fr; gap: 20px; }
  .ticket-col       { padding: 22px 20px 20px; }
  .ticket-price     { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .ticket-price-sub { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .ticket-includes li { font-size: 1.05rem; }
  .ticket-book-btn  { padding: 15px 32px; font-size: 0.72rem; }

  /* Schedule */
  .schedule-event { font-size: 1.05rem; }

  /* Show list */
  .show-item-name   { font-size: 0.78rem; }
  .show-item-origin { font-size: 1rem; }

  /* Scroll marquee */
  .marquee-text { font-size: 16vw; }

  /* Scroll container height */
  #scroll-container { height: 1700vh; }

  /* Footer */
  .site-footer   { min-height: 65vh; }
  .footer-title    { font-size: clamp(2rem, 7vw, 3.5rem); }
  .footer-tagline  { font-size: clamp(0.78rem, 2.2vw, 1rem); }
  .footer-phone    { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  .footer-address  { font-size: clamp(0.9rem, 2.5vw, 1.15rem); }
  .footer-schedule { font-size: clamp(0.68rem, 2vw, 0.9rem); }
  .footer-cta      { padding: 16px 36px; font-size: 0.72rem; }

  /* Map section: stack vertically on mobile */
  .map-section { height: auto; min-height: 560px; display: flex; flex-direction: column; }
  .map-iframe-wrap { position: relative; height: 300px; flex-shrink: 0; }
  .map-gradient {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.5) 40%,
      rgba(0,0,0,0) 100%
    );
  }
  .map-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 32px 24px 36px;
    background: rgba(0,0,0,0.88);
    gap: 12px;
  }
  .map-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  html { font-size: 16px; }

  #trust-bar { display: none; }
  .site-header { top: 0; }

  .hero-heading { font-size: clamp(2.2rem, 14vw, 4rem); }
  .hero-tagline { font-size: clamp(0.95rem, 4vw, 1.2rem); }

  #booking-panel { top: auto; bottom: 0; width: 100vw; max-height: 50vh; border-radius: 0; border-left: none; border-right: none; border-bottom: none; left: 0; right: 0; transform: none; }
  .hero-booking-header { padding: 14px 16px 10px; }
  .hero-booking-footer { padding: 10px 16px 12px; }
  .hero-booking-price  { font-size: 0.72rem; }

  .scene-marquee-banner { top: 80px; height: 20vh; }
  .smr-item     { font-size: clamp(2rem, 9vw, 4rem); }
  .smr-item-alt { font-size: clamp(1.4rem, 7vw, 3rem); }
  .smr-item     { font-size: clamp(1.4rem, 8vw, 2.5rem); }
  .smr-item-alt { font-size: clamp(1rem, 6vw, 1.8rem); }

  .section-heading { font-size: clamp(2rem, 10vw, 3rem); }

  .cta-button  { padding: 16px 28px; font-size: 0.72rem; width: 100%; justify-content: center; }
  .cta-phone   { font-size: 0.8rem; }
  .cta-phone--large { font-size: clamp(1.2rem, 7vw, 1.8rem); }

  #scroll-container { height: 1400vh; }

  /* Footer */
  .site-footer  { min-height: 55vh; }
  .footer-logo  { width: 70px; height: 70px; }
  .footer-cta   { padding: 14px 28px; font-size: 0.68rem; width: 90%; }
}
