/* ═══════════════════════════════════════════════════════════════
   INTRIGUE THEATER — PRODUCTION STYLESHEET 2026
   Mobile-first · Dark cinematic · Gold/purple palette
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --black:        #080808;
  --deep:         #0d0d10;
  --surface:      #111114;
  --surface-2:    #18181d;
  --border:       #2a2a30;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dim:     #8a7030;
  --purple:       #4A1A6E;
  --purple-mid:   #6B2FA0;
  --purple-glow:  rgba(74,26,110,0.35);
  --white:        #F7F3EC;
  --cream:        #EDE8DF;
  --muted:        #9A9088;
  --dim:          #5a5450;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.25s ease;

  --container:    1180px;
  --gutter:       clamp(20px, 5vw, 60px);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.t-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-body { color: var(--cream); line-height: 1.75; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
}
.section-lead {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.gold-rule--left { margin-left: 0; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── STARS ──────────────────────────────────────────────────── */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  box-shadow: 0 0 32px rgba(201,168,76,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(247,243,236,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 10px 22px;
  font-size: 0.75rem;
}
.btn-gold-ghost:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.site-nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--white);
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-book { padding: 10px 20px; font-size: 0.72rem; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(16px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--white);
  font-weight: 400;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-nav-book {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  border-radius: var(--radius);
}

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

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
  /* V3: boost image to near-original vibrancy — blues, purples, golds pop */
  filter: brightness(1.14) contrast(1.08) saturate(1.22);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* V3 BRIGHT: minimal global scrim — text legibility carried by text-shadow.
     Top (nav + eyebrow zone): 48% — enough to ground the logo/nav.
     Middle (stage, chandeliers, blue/gold walls): ~8% — nearly transparent.
     Bottom: transitions into page. Theater is the first thing you see. */
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.48) 0%,
    rgba(8,8,8,0.08) 32%,
    rgba(8,8,8,0.10) 62%,
    rgba(8,8,8,0.58) 100%
  );
  z-index: 1;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px var(--gutter) 80px;
  max-width: 780px;
  margin: 0 auto 0;
  text-align: center;
  width: 100%;
}
.hero-eyebrow { margin-bottom: 20px; text-shadow: 0 1px 8px rgba(0,0,0,0.90); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  /* V3 BRIGHT: heavy text-shadow replaces heavy overlay for legibility */
  text-shadow:
    0 2px 8px rgba(0,0,0,0.90),
    0 4px 32px rgba(0,0,0,0.75),
    0 0 80px rgba(0,0,0,0.50);
}
.hero-sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--cream);
  opacity: 0.92;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.95), 0 2px 20px rgba(0,0,0,0.80);
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-rating-text {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.88;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dim), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   CREDIBILITY STRIP
══════════════════════════════════════════════════════════════ */
.credibility-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.credibility-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  text-align: center;
}
.cred-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cred-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
}
.cred-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 600px) {
  .credibility-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   ROOM FEATURE — cinematic theater reveal
══════════════════════════════════════════════════════════════ */
.room-feature {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.room-feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.room-feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.room-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.75) 50%,
    rgba(8,8,8,0.5) 100%
  );
  z-index: 1;
}
.room-feature-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 0 var(--gutter);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .room-feature-content { margin: 0 calc(var(--gutter) + 40px); }
}
.room-feature-content .section-title { text-align: left; }
.room-feature-content p { color: var(--cream); margin-top: 16px; line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL FILM
══════════════════════════════════════════════════════════════ */
.film-section {
  padding: 100px 0;
  background: var(--deep);
}
.film-player {
  max-width: 840px;
  margin: 0 auto;
}
.film-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}
.film-thumb:hover { border-color: var(--gold-dim); }
.film-thumb:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.film-thumb-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a0a28 0%, var(--deep) 60%);
}
.film-wistia-embed {
  position: absolute;
  inset: 0;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  z-index: 2;
}
.play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 4px;
}
.play-btn:hover { background: var(--gold-light); }
.film-label {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
}
.film-label p {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ══════════════════════════════════════════════════════════════
   EXPERIENCES / SHOW CARDS
══════════════════════════════════════════════════════════════ */
.experiences {
  padding: 100px 0;
  background: var(--black);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .experience-grid { grid-template-columns: repeat(3, 1fr); }
}

.exp-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.exp-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.exp-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-card-image img { transform: scale(1.04); }
.exp-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.exp-card-accent {
  position: absolute;
  top: 0; left: 28px;
  width: 1px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s ease;
}
.exp-card:hover .exp-card-accent { height: 60px; }
.exp-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.exp-type {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.exp-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.exp-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.exp-detail {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.exp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.exp-cta:hover { color: var(--gold-light); gap: 14px; }
.exp-cta-arrow { transition: transform var(--transition); }
.exp-cta:hover .exp-cta-arrow { transform: translateX(4px); }

.exp-review {
  margin-top: 12px;
  padding: 14px;
  background: rgba(201,168,76,0.05);
  border-left: 2px solid var(--gold-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.exp-review-text {
  font-family: var(--font-elegant);
  font-size: 0.88rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 6px;
}
.exp-review-attr {
  font-size: 0.65rem;
  color: var(--dim);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════
   ENDORSEMENT / PULL QUOTE
══════════════════════════════════════════════════════════════ */
.endorsement {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.endorsement-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.endorsement-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 24px;
}
.endorsement-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.5rem); /* +22% vs previous clamp */
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  font-style: normal; /* regular — stronger on screen than italic at this size */
  margin-bottom: 32px;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.95),
    0 4px 32px rgba(0,0,0,0.80),
    0 0 80px rgba(0,0,0,0.60);
}
.endorsement-attr { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.endorsement-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.90);
}
.endorsement-show {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 6px rgba(0,0,0,0.90);
}
.endorsement-image-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.endorsement-photo {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity var(--transition), filter var(--transition);
}
.endorsement-photo:hover { opacity: 1; filter: grayscale(0); }

/* ══════════════════════════════════════════════════════════════
   AUDIENCE TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--black);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold-dim); }
.testimonial-text {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--cream);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-author { margin-top: auto; }
.testimonial-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.testimonial-meta {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ══════════════════════════════════════════════════════════════
   THEATER / LOCATION SECTION
══════════════════════════════════════════════════════════════ */
.theater-section {
  padding: 100px 0;
  background: var(--deep);
}
.theater-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .theater-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.theater-visual { position: relative; }
.theater-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}
.theater-img-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius);
  border: 3px solid var(--black);
}
.theater-copy .section-title { text-align: left; margin-bottom: 0; }
.theater-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.theater-fact-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.theater-fact-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   CREDENTIALS / MEDIA
══════════════════════════════════════════════════════════════ */
.credentials {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cred-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* overridden to flex-start inside .cred-text-panel */
  align-items: center;
  gap: 28px 36px;
  margin-top: 32px;
}
.cred-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity var(--transition);
  text-align: center;
}
.cred-logo-item:hover { opacity: 1; }
.cred-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.cred-logo-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ══════════════════════════════════════════════════════════════
   UPCOMING PERFORMANCES
══════════════════════════════════════════════════════════════ */
.performances {
  padding: 100px 0;
  background: var(--black);
}
.perf-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.perf-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background var(--transition);
}
.perf-card:last-child { border-bottom: none; }
.perf-card:hover { background: var(--surface); }

.perf-date {
  text-align: center;
  grid-row: 1 / 3;
}
.perf-month {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.perf-day {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.perf-info { min-width: 0; }
.perf-show {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}
.perf-time {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.perf-action {
  grid-column: 1 / -1;
  padding-top: 12px;
}
.btn-book-perf {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 0.75rem;
}
@media (min-width: 560px) {
  .perf-card {
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto;
  }
  .perf-date { grid-row: auto; }
  .perf-action {
    grid-column: auto;
    padding-top: 0;
  }
  .btn-book-perf {
    display: inline-block;
    width: auto;
    padding: 10px 22px;
  }
}

.perf-full-schedule {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════════════════════════════════════════════════════
   EXTERIOR / LOCATION PROOF
══════════════════════════════════════════════════════════════ */
.exterior-section {
  position: relative;
  height: clamp(300px, 50vw, 520px);
  overflow: hidden;
}
.exterior-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.exterior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 50%,
    rgba(8,8,8,0.7) 100%
  );
}
.exterior-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.exterior-caption span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.6);
  background: rgba(8,8,8,0.5);
  padding: 6px 14px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 120px 0;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
}
@media (min-width: 480px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}
.location-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .location-info { flex-direction: row; justify-content: center; gap: 56px; }
}
.loc-item { text-align: center; }
.loc-icon { font-size: 1.4rem; margin-bottom: 8px; }
.loc-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.loc-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copy { font-size: 0.72rem; color: var(--dim); }

/* ══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════════════════════════════ */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  gap: 12px;
}
.sticky-cta.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sticky-cta-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.sticky-cta-sub {
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
}
.sticky-cta .btn { padding: 12px 20px; white-space: nowrap; font-size: 0.75rem; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   CAMPAIGN PAGE OVERRIDES
══════════════════════════════════════════════════════════════ */
.campaign-page .site-nav { display: none; }

.campaign-header {
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.campaign-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.campaign-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.campaign-hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.campaign-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.campaign-urgency {
  display: inline-block;
  background: rgba(180,30,30,0.15);
  border: 1px solid rgba(200,60,60,0.3);
  color: #e87070;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius);
  margin-top: 16px;
}

.campaign-shows {
  padding: 80px 0;
  background: var(--black);
}
.campaign-show-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .campaign-show-cards { grid-template-columns: repeat(3, 1fr); }
}

.campaign-show-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.campaign-show-card:hover, .campaign-show-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.campaign-show-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}
.campaign-show-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.campaign-show-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  margin-top: 8px;
}

.campaign-proof {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.campaign-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .campaign-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

.campaign-footer {
  padding: 40px var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--deep);
}
.campaign-footer p { font-size: 0.75rem; color: var(--dim); margin-top: 6px; }

/* ══════════════════════════════════════════════════════════════
   V2 ADDITIONS — Intrigue Theater 2026 V2
   All additions below this line; existing V1 styles preserved above.
══════════════════════════════════════════════════════════════ */

/* ── V2: Nav Logo Image ───────────────────────────────────── */
/* Replaces text-only .nav-logo-main / .nav-logo-sub treatment */
.nav-logo-img {
  height: clamp(32px, 5vw, 48px);
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  /* Preserve aspect ratio on mobile scale-down */
}
/* On scroll: keep logo crisp against dark nav background */
.site-nav.scrolled .nav-logo-img {
  filter: none;
}

/* ── V2: Floating Ticket CTA ──────────────────────────────── */
/*
  Fixed upper-right. Structured as a container so a future
  transparent PNG can replace .float-ticket-inner without
  changing layout or the data-track hook on the parent <a>.
  FUTURE PNG SWAP: replace .float-ticket-inner with an <img>
  of class .float-ticket-img and remove background/border styles.
*/
.float-ticket-cta {
  position: fixed;
  top: clamp(56px, 8vw, 72px); /* clears nav bar */
  right: clamp(12px, 2.5vw, 28px);
  z-index: 150;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.float-ticket-cta:hover {
  transform: translateY(-2px);
  opacity: 1 !important;
}
.float-ticket-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.float-ticket-cta:hover .float-ticket-inner {
  background: var(--gold-light);
}
.float-ticket-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--black);
}
.float-ticket-label { line-height: 1; }

/* Mobile: scale down, hide label on very small screens */
@media (max-width: 400px) {
  .float-ticket-inner { padding: 8px 10px; gap: 0; }
  .float-ticket-label { display: none; }
  .float-ticket-icon { width: 20px; height: 20px; }
}
/* On very large screens: slightly larger */
@media (min-width: 1200px) {
  .float-ticket-inner { padding: 12px 20px; font-size: 0.7rem; }
}

/* ── V2: Wistia Player Container ─────────────────────────── */
/* Replaces the .film-thumb / .play-btn placeholder */
.film-wistia-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.film-wistia-container wistia-player {
  display: block;
  width: 100%;
}
/* Remove old film-thumb styles' fixed height — Wistia self-sizes */
.film-player {
  max-width: 880px;
  margin: 0 auto;
}

/* ── V2: Experience Card Portrait Variant ─────────────────── */
/* Used for Perplexed card — portrait source image (219×395) */
.exp-card-image--portrait img {
  object-position: center 20%;
}

/* ── V2: Penn Endorsement with Photo Background ───────────── */
/*
  .endorsement--photo-bg modifier overlays the
  penn-teller-reaction-background.png behind the quote.
  Strong dark overlay ensures readability while keeping
  Penn & Teller visually recognizable.
  V2-PRODUCTION-NOTE: bg source is 367×246px — replace with
  hi-res version before final production. The dark overlay
  intentionally masks the upscale softness at this stage.
*/
.endorsement--photo-bg {
  position: relative;
  background: var(--black); /* fallback if image fails */
  border-top: none;
  border-bottom: none;
}
.endorsement-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/V2-CREDENTIALS/penn-teller-reaction-background-web.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Boost to make Penn & Teller recognizable through the overlay */
  filter: brightness(1.35) contrast(1.08) saturate(0.92);
}
.endorsement-photo-overlay {
  position: absolute;
  inset: 0;
  /* Localized: lighter at edges where P&T faces are, darker in the quote zone */
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.32) 0%,
    rgba(8,8,8,0.52) 30%,
    rgba(8,8,8,0.55) 70%,
    rgba(8,8,8,0.32) 100%
  );
  z-index: 1;
}
/* Penn endorsement content sits above bg */
.endorsement--photo-bg .container {
  position: relative;
  z-index: 2;
}
/* In the photo-bg context the endorsement-mark peeks through */
.endorsement--photo-bg .endorsement-mark {
  color: var(--gold);
  opacity: 0.3;
}

/* ── V2: Credentials Section with Photo Background ────────── */
/*
  V3: Juliana is the visual hero. Left-aligned text panel, open right half.
  Left-only gradient scrim — Juliana and production environment unobstructed.
*/
.credentials--photo-bg {
  position: relative;
  background: var(--black); /* fallback */
  border-top: none;
  padding: 100px 0;
}

/* Background image — brightened to show Juliana, stage lighting, audience */
.credentials-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/V2-CREDENTIALS/juliana-masters-of-illusion-background-web.jpg');
  background-size: cover;
  background-position: 60% 30%;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(1.20) contrast(1.06) saturate(1.15);
}

/* Left-side-only gradient — text panel is legible, right half open for Juliana */
.credentials-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.88) 28%,
    rgba(8,8,8,0.60) 46%,
    rgba(8,8,8,0.12) 62%,
    rgba(8,8,8,0.00) 78%
  );
  z-index: 1;
}

/* Container override — full-width so the gradient spans edge to edge */
.cred-container {
  max-width: 100%;
  padding-left: max(var(--gutter), 5vw);
  padding-right: 0;
}

/* Text panel — constrained to left ~45% of viewport */
.cred-text-panel {
  width: 46%;
  min-width: 320px;
  max-width: 560px;
}

/* Left-align the section header inside credentials */
.cred-section-header {
  text-align: left;
  margin: 0 0 40px;
}
.cred-section-header .t-label { display: block; }
.cred-section-header .section-title { margin: 12px 0 0; }

/* Supporting paragraph — override global .section-lead for credentials only.
   Switch to clean sans-serif at readable size; remove italic; strong contrast. */
.cred-section-header .section-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem); /* ~16px mobile → ~18–20px desktop */
  font-style: normal;
  font-weight: 500;
  color: rgba(247,243,236,0.92); /* near-white ivory, not muted */
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,0.70);
  margin-top: 14px;
}

/* ── TV vs Press credential rows — left-aligned ──────────── */
.cred-tv-row,
.cred-press-row {
  text-align: left;
}
.cred-label-eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-dim);
}
.cred-label-eyebrow--press {
  color: var(--muted);
  border-bottom-color: var(--border);
}

.cred-logos--tv {
  max-width: none;
  margin: 0;
  justify-content: flex-start;
  gap: 24px 36px;
}
.cred-logos--press {
  justify-content: flex-start;
  max-width: none;
  margin: 0;
}
.cred-press-row .cred-logo-item {
  opacity: 0.65;
}
.cred-press-row .cred-logo-item:hover {
  opacity: 1;
}

/* Mobile: revert to centered, full-width at narrow viewports */
@media (max-width: 768px) {
  .cred-container {
    max-width: var(--max-width);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .cred-text-panel {
    width: 100%;
    max-width: 100%;
  }
  .credentials-photo-overlay {
    background: rgba(8,8,8,0.82);
  }
  .cred-section-header,
  .cred-tv-row,
  .cred-press-row {
    text-align: center;
  }
  .cred-logos--tv,
  .cred-logos--press {
    justify-content: center;
  }
  .cred-section-header .t-label { display: inline; }
}

/* ── V2: Logo filter variants ─────────────────────────────── */
/*
  .cred-logo-img--transparent: RGBA logo (PT:FU) — use directly,
  no filter needed. Invert only restores native colors on dark bg.

  .cred-logo-img--filter-white: RGB/opaque logo — brightness(0) invert(1)
  converts to white icons on dark backgrounds.
  V2-PRODUCTION-NOTE: Replace AGT, MoI, US News with proper
  transparent PNGs when available and remove these filters.
*/
.cred-logo-img--transparent {
  filter: none; /* RGBA logo — display as-is */
  height: 56px; /* slightly larger for the PT:FU horizontal logo */
  max-width: 240px;
}
.cred-logo-img--filter-white {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.cred-logo-item:hover .cred-logo-img--filter-white {
  opacity: 1;
}

/* ── V2: Theater section single-image ──────────────────────── */
/*
  .theater-img-secondary is removed from V2 HTML.
  Ensure .theater-visual doesn't leave extra padding/space
  that was reserved for the overlay image.
*/
.theater-visual {
  overflow: visible; /* was needed for overlay; safe to keep */
}

/* ── V2: Final CTA — repeat-visitor headline ──────────────── */
/*
  The new CTA headline is longer than the original. Slightly
  reduce font size so line breaks land elegantly.
*/
.final-cta .cta-title {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.2;
}

/* ════════════════════════════════════════════════════════════
   V3 ADDITIONS — Surgical cleanup, do not redesign base styles
   ════════════════════════════════════════════════════════════ */

/* ── V3: Mobile — one ticket CTA only ────────────────────── */
/*
  On mobile/tablet, hide the nav "BOOK TICKETS" button when the
  floating ticket CTA is present. One prominent ticket entry point only.
  Desktop (≥900px) retains both if layout allows.
*/
@media (max-width: 899px) {
  .nav-book {
    display: none !important;
  }
}

/* ── V3: Floating Ticket CTA — elegant burgundy restyle ───── */
/*
  Replaces the gold/carnival V2 floating CTA with a dark burgundy
  ticket feel: deep oxblood background, thin gold border, gold text.
  Compact size. No neon, no bright red, no coupon aesthetic.
*/
.float-ticket-inner {
  background: #3D0C1A;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.55);
  padding: 9px 15px;
  gap: 7px;
}

.float-ticket-inner svg {
  color: var(--gold);
  fill: var(--gold);
  stroke: var(--gold);
}

.float-ticket-cta:hover .float-ticket-inner,
.float-ticket-cta:focus-visible .float-ticket-inner {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(61,12,26,0.7);
  background: #4D1024;
}

/* Compact size on small mobile */
@media (max-width: 480px) {
  .float-ticket-inner {
    padding: 8px 12px;
    font-size: 0.6rem;
    gap: 6px;
  }
}

/* ── V3: Masters of Illusion — polished media tile ─────────── */
/*
  MoI is now presented as promotional artwork (media tile),
  not as a filtered logo. Sized to harmonise with logo row
  while signalling "we appeared on this show" visually.
*/
.cred-moi-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cred-moi-img {
  width: auto;
  max-width: 160px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  display: block;
}

@media (max-width: 600px) {
  .cred-moi-img {
    max-width: 120px;
    max-height: 90px;
  }
}

/* ── V3: U.S. News clean logo sizing ──────────────────────── */
/*
  us-news-clean.jpg is 300×73px — small and clean.
  Render at natural proportions without CSS filter.
*/
.cred-us-news-img {
  filter: none;
  opacity: 0.90;
  max-height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* ── V3: Schedule demo notice ──────────────────────────────── */
/*
  Inline notice under schedule section warning that dates are
  placeholder/demo data — not live production schedule.
*/
.perf-demo-notice {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247,243,236,0.55);
  letter-spacing: 0.04em;
  margin: 16px 0 0;
  font-style: italic;
}

.perf-demo-notice a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.perf-demo-notice a:hover {
  color: var(--gold);
}
