*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #F5EDD8; --parchment: #EDE0C4; --bark: #8B6340; --mahogany: #5C3A1E;
  --charcoal: #2A1F14; --rust: #B84A2A; --gold: #C9973A; --sand: #D4B896; --smoke: #F9F3E8;
}
html { scroll-behavior: smooth; }
body { font-family: 'Libre Baskerville', Georgia, serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 64px;
  background: rgba(42,31,20,0.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,151,58,0.18);
}
.nav-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.1rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }
.nav-logo span { display: block; font-size: 0.55rem; letter-spacing: 0.25em; color: var(--sand); font-weight: 400; font-style: italic; margin-top: -2px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-book { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); border: none; padding: 0.55rem 1.4rem; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-book:hover { background: var(--rust); color: var(--cream); }

/* HERO — image is 2.46:1 wide. Band fills bottom 45%, banner backdrop fills top 55%.
   All text + credentials sit in the TOP half only. Bottom half = band, fully clear. */
.hero {
  position: relative;
  background: var(--charcoal);
  padding-top: 64px;
  overflow: hidden;
}
.hero-img {
  display: block; width: 100%; height: auto;
  position: relative; z-index: 0;
  mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
}
/* Gradient: strong dark only over TOP 45% where text lives.
   Clears completely from 50%-75% so faces/band are fully visible.
   Subtle vignette returns at very bottom edge only. */
.hero-gradient {
  position: absolute; inset: 0; top: 64px; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(42,31,20,0.88) 0%,
    rgba(42,31,20,0.72) 18%,
    rgba(42,31,20,0.35) 34%,
    rgba(42,31,20,0.0)  46%,
    rgba(42,31,20,0.0)  78%,
    rgba(42,31,20,0.75) 100%
  );
}
/* ALL content lives in the TOP portion of the image */
.hero-text {
  position: absolute;
  top: 64px; left: 0; right: 0;
  z-index: 2;
  padding: 1.8rem 4rem 0;
}
/* Top row: title left, Rolling Stone quote right */
.hero-top-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  margin-bottom: 1.4rem;
}
.hero-tag {
  font-style: italic; font-size: 0.78rem; color: var(--gold);
  letter-spacing: 0.15em; margin-bottom: 0.6rem;
  opacity: 0; animation: fadeup 0.7s 0.2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 5rem); line-height: 0.9;
  color: var(--cream); margin-bottom: 0.8rem;
  opacity: 0; animation: fadeup 0.7s 0.3s forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 0.88rem; color: var(--sand); max-width: 420px;
  line-height: 1.65; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeup 0.7s 0.4s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-ctas {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  opacity: 0; animation: fadeup 0.7s 0.5s forwards;
}
.hero-press {
  text-align: right; flex-shrink: 0; max-width: 210px; padding-top: 0.3rem;
  opacity: 0; animation: fadeup 0.7s 0.55s forwards;
}
.hero-press-quote {
  font-family: 'IM Fell English', serif; font-style: italic;
  font-size: 0.9rem; color: rgba(212,184,150,0.88); line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.hero-press-source {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.4rem;
}
/* Credential badges — inline strip below title/ctas */
.hero-creds {
  display: flex; align-items: center; gap: 0; flex-wrap: nowrap;
  opacity: 0; animation: fadeup 0.7s 0.65s forwards;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(201,151,58,0.2);
  padding-top: 1rem;
}
.hero-cred-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding-right: 1.5rem; margin-right: 1.5rem;
  border-right: 1px solid rgba(201,151,58,0.2);
}
.hero-cred-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-cred-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(201,151,58,0.15); border: 1px solid rgba(201,151,58,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-cred-icon svg { width: 13px; height: 13px; fill: var(--gold); }
.hero-cred-text strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 0.78rem; color: var(--cream); font-weight: 700; line-height: 1.1;
}
.hero-cred-text span {
  font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sand); font-style: italic;
}

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

.btn-primary {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--rust); color: var(--cream);
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--mahogany); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; padding: 0.85rem 2rem;
  background: transparent; color: var(--cream);
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(245,237,216,0.4); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Spacer so page content starts below hero */
.hero-spacer { height: 2.5rem; background: var(--charcoal); }

/* cred bar moved into hero */

/* VIDEO */
.video-section { position: relative; background: #0c0805; overflow: hidden; }
.video-bg {
  position: absolute; inset: 0;
  background-image: url('images/crowd.jpg');
  background-size: cover; background-position: center 35%;
  opacity: 0.28; filter: blur(3px);
}
.video-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 5rem 2rem; min-height: 420px; text-align: center;
}
.video-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.video-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream); font-weight: 700; margin-bottom: 2.5rem; }
.video-title em { font-style: italic; color: var(--gold); }
.play-btn {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px solid rgba(201,151,58,0.55); background: rgba(42,31,20,0.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; margin-bottom: 1.5rem; backdrop-filter: blur(6px);
}
.play-btn:hover { border-color: var(--gold); background: rgba(92,58,30,0.7); transform: scale(1.07); }
.play-btn svg { width: 30px; height: 30px; fill: var(--gold); margin-left: 5px; }
.video-note { font-size: 0.8rem; color: rgba(212,184,150,0.4); font-style: italic; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 580px; }
.about-image-left { position: relative; overflow: hidden; }
.about-image-left img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-image-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,10,6,0.88) 0%, rgba(14,10,6,0.35) 55%, rgba(14,10,6,0.68) 100%);
}
.about-overlay-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 3.5rem;
}
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.about-overlay-content h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 2.2rem; line-height: 1.05; color: var(--cream); margin-bottom: 1rem; }
.about-overlay-content h2 em { font-style: italic; color: var(--gold); }
.about-overlay-content p { font-size: 0.9rem; line-height: 1.78; color: rgba(212,184,150,0.88); max-width: 460px; margin-bottom: 0.9rem; }
.stat-row { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(201,151,58,0.25); margin-top: 0.5rem; flex-wrap: wrap; }
.stat-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); font-weight: 900; line-height: 1; }
.stat-item span { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-top: 0.25rem; display: block; }
.about-portrait { background: var(--charcoal); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem; }
.about-portrait img { width: 100%; height: auto; display: block; max-width: 400px; }
.about-stamp { margin-top: 1.2rem; background: var(--rust); color: var(--cream); padding: 0.5rem 1rem; font-family: 'Playfair Display', serif; font-size: 0.8rem; font-style: italic; align-self: flex-start; margin-left: calc(50% - 200px); }

/* GALLERY */
.gallery { background: var(--charcoal); padding: 4rem; }
.gallery-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.gallery-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 2rem; color: var(--cream); margin-bottom: 2rem; }
.gallery-title em { font-style: italic; color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.g-cell { position: relative; overflow: hidden; background: #1a1208; cursor: pointer; height: 220px; }
.g-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s, filter 0.4s; filter: brightness(0.88) sepia(8%); }
.g-cell:hover img { transform: scale(1.07); filter: brightness(1.0) sepia(0%); }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,31,20,0.8) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1rem; }
.g-cell:hover .g-overlay { opacity: 1; }
.g-label { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: var(--cream); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; height: auto; }

/* SHOWS */
.shows { background: var(--parchment); padding: 5rem 4rem; }
.shows-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 2rem; color: var(--mahogany); margin-bottom: 0; }
.section-title em { font-style: italic; color: var(--rust); }
.shows-list { display: flex; flex-direction: column; border: 1px solid rgba(139,99,64,0.2); }
.show-item { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 2rem; padding: 1.5rem 2rem; background: var(--cream); border-bottom: 1px solid rgba(139,99,64,0.12); transition: background 0.2s; }
.show-item:last-child { border-bottom: none; }
.show-item:hover { background: var(--smoke); }
.show-date { text-align: center; flex-shrink: 0; }
.show-date-day { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--rust); line-height: 1; }
.show-date-month { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bark); }
.show-info h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--mahogany); margin-bottom: 0.25rem; }
.show-info p { font-size: 0.82rem; color: var(--bark); }
.show-tag { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 0.8rem; background: rgba(184,74,42,0.1); color: var(--rust); border: 1px solid rgba(184,74,42,0.2); white-space: nowrap; }
.show-link { display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bark); text-decoration: none; border-bottom: 1px solid transparent; margin-left: 1rem; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.show-link:hover { color: var(--rust); border-color: var(--rust); }
.cal-loading { padding: 3rem; text-align: center; color: var(--bark); font-style: italic; font-size: 0.9rem; background: var(--cream); border: 1px solid rgba(139,99,64,0.2); }
.cal-error { padding: 2rem; background: var(--cream); border: 1px solid rgba(139,99,64,0.2); }
.cal-error-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--mahogany); margin-bottom: 0.75rem; font-weight: 700; }
.cal-error-msg { font-size: 0.85rem; color: var(--bark); line-height: 1.7; margin-bottom: 1rem; }
.cal-setup-steps { list-style: none; counter-reset: steps; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.cal-setup-steps li { counter-increment: steps; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.82rem; color: #3a2e22; line-height: 1.6; }
.cal-setup-steps li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--rust); color: var(--cream); font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.cal-setup-steps code { background: var(--parchment); padding: 1px 6px; font-family: monospace; font-size: 0.78rem; color: var(--mahogany); }
.cal-id-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cal-id-input { flex: 1; min-width: 220px; padding: 0.6rem 0.9rem; border: 1px solid rgba(139,99,64,0.35); background: var(--smoke); font-family: 'Libre Baskerville', serif; font-size: 0.82rem; color: var(--charcoal); outline: none; }
.cal-id-input:focus { border-color: var(--gold); }
.cal-id-btn { padding: 0.6rem 1.4rem; background: var(--rust); color: var(--cream); border: none; font-family: 'Libre Baskerville', serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; }
.cal-id-btn:hover { background: var(--mahogany); }
.no-shows { padding: 2rem; text-align: center; color: var(--bark); font-style: italic; background: var(--cream); border: 1px solid rgba(139,99,64,0.2); }

/* BOOKING */
.booking { background: var(--charcoal); padding: 6rem 4rem; position: relative; overflow: hidden; }
.booking::before { content:''; position:absolute; top:-80px; right:-80px; width:400px; height:400px; border:60px solid rgba(201,151,58,0.05); border-radius:50%; }
.booking::after { content:''; position:absolute; bottom:-60px; left:-60px; width:300px; height:300px; border:50px solid rgba(201,151,58,0.04); border-radius:50%; }
.booking-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.booking-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
.booking-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 3rem; color: var(--cream); line-height: 1.05; }
.booking-title em { font-style: italic; color: var(--gold); }
.booking-sub { font-size: 0.92rem; color: var(--sand); max-width: 360px; line-height: 1.65; text-align: right; }
.booking-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(201,151,58,0.12); margin-bottom: 3rem; }
.booking-card { background: rgba(42,31,20,0.8); padding: 2rem 1.8rem; border: 1px solid rgba(201,151,58,0.1); transition: background 0.25s, border-color 0.25s; }
.booking-card:hover { background: rgba(92,58,30,0.5); border-color: rgba(201,151,58,0.3); }
.booking-card-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.booking-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--cream); margin-bottom: 0.6rem; font-weight: 700; }
.booking-card p { font-size: 0.85rem; color: var(--sand); line-height: 1.65; }
.booking-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-top: 3rem; border-top: 1px solid rgba(201,151,58,0.15); align-items: start; }
.booking-contact-left h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.5rem; font-weight: 700; font-style: italic; }
.booking-contact-left p { font-size: 0.88rem; color: var(--sand); line-height: 1.65; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.7rem; }
.contact-detail-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.contact-detail a { color: var(--gold); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.contact-detail a:hover { color: var(--cream); }
.booking-form { display: flex; flex-direction: column; gap: 0.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(245,237,216,0.06); border: 1px solid rgba(201,151,58,0.2);
  color: var(--cream); font-family: 'Libre Baskerville', serif; font-size: 0.82rem;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(212,184,150,0.45); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: rgba(201,151,58,0.55); background: rgba(245,237,216,0.09); }
.booking-form select option { background: var(--charcoal); color: var(--cream); }
.booking-form textarea { resize: vertical; min-height: 100px; }
.booking-form button { width: 100%; padding: 0.9rem; background: var(--rust); color: var(--cream); border: none; font-family: 'Libre Baskerville', serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 0.4rem; }
.booking-form button:hover { background: #9a3a20; }

footer { background: var(--charcoal); padding: 4rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; border-top: 1px solid rgba(201,151,58,0.15); }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--sand); line-height: 1.7; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--sand); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { grid-column: 1/-1; padding-top: 2rem; border-top: 1px solid rgba(201,151,58,0.1); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.72rem; color: rgba(212,184,150,0.4); letter-spacing: 0.08em; }
.social-links { display: flex; gap: 1.2rem; }
.social-links a { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(212,184,150,0.4); text-decoration: none; transition: color 0.2s; }
.social-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-text { padding: 1.5rem 1.5rem 0; grid-template-columns: 1fr; }
  .hero-press { text-align: left; max-width: none; }
  .cred-bar { gap: 1.5rem; padding: 1.2rem 1.5rem; }
  .cred-sep { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-image-left { min-height: 480px; }
  .about-portrait { padding: 2rem 1.5rem; }
  .about-stamp { margin-left: 0; }
  .gallery { padding: 2.5rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-wide { grid-column: span 2; }
  .g-tall { height: 220px; grid-row: auto; }
  .shows { padding: 3rem 1.5rem; }
  .show-item { grid-template-columns: 56px 1fr; gap: 1rem; }
  .show-item > div:last-child { grid-column: 2; }
  .booking { padding: 3rem 1.5rem; }
  .booking-cards { grid-template-columns: 1fr; }
  .booking-contact { grid-template-columns: 1fr; }
  .booking-sub { text-align: left; }
  footer { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
}
/* ── HERO BAR (replaces overlaid text) ─────────────────── */
.hero-img-wrap { line-height: 0; background: var(--charcoal); }
.hero-img-wrap img { width: 100%; height: auto; display: block; }
.hero-bar {
  background: var(--charcoal);
  padding: 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border-bottom: 1px solid rgba(201,151,58,0.15);
}
.hero-bar-left {}
.hero-tag { font-style: italic; font-size: 0.8rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.hero-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(2.2rem,4vw,4rem); line-height: 0.95; color: var(--cream); margin-bottom: 0.9rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 0.9rem; color: var(--sand); max-width: 460px; line-height: 1.7; margin-bottom: 1.4rem; }
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-bar-right { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-cred-item { display: flex; align-items: center; gap: 0.7rem; }
.hero-cred-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(201,151,58,0.12); border: 1px solid rgba(201,151,58,0.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-cred-icon svg { width: 14px; height: 14px; fill: var(--gold); }
.hero-cred-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.8rem; color: var(--cream); font-weight: 700; line-height: 1.1; }
.hero-cred-text span { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); font-style: italic; }
.hero-press { border-top: 1px solid rgba(201,151,58,0.15); padding-top: 1rem; }
.hero-press-quote { font-family: 'IM Fell English', serif; font-style: italic; font-size: 0.95rem; color: var(--sand); line-height: 1.55; }
.hero-press-source { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.4rem; }

/* ── GALLERY SUB-LABEL ──────────────────────────────────── */
.gallery-sub { font-size: 0.78rem; color: var(--sand); font-style: italic; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.g-cell { cursor: pointer; }
.g-cell:hover img { transform: scale(1.04); filter: brightness(1.05); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,6,3,0.95);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.8rem; color: var(--sand); cursor: pointer;
  transition: color 0.2s; line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; display: block;
  box-shadow: 0 8px 60px rgba(0,0,0,0.8);
}
.lightbox-dl {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,151,58,0.35);
  padding: 0.6rem 1.4rem;
  transition: background 0.2s, color 0.2s;
}
.lightbox-dl:hover { background: var(--gold); color: var(--charcoal); }

/* ── CALENDAR — show URL link ───────────────────────────── */
.show-url { display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bark); text-decoration: none; border-bottom: 1px solid transparent; margin-left: 1rem; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.show-url:hover { color: var(--rust); border-color: var(--rust); }

/* ── MUSICIANS ──────────────────────────────────────────── */
.musicians {
  background: var(--charcoal);
  padding: 5rem 0;
}
.musicians-inner { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }
.musicians-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.musician-card {
  background: rgba(30,20,12,0.8);
  border: 1px solid rgba(201,151,58,0.08);
  overflow: hidden;
  transition: border-color 0.25s;
}
.musician-card:hover { border-color: rgba(201,151,58,0.25); }
.musician-img-wrap { height: 240px; overflow: hidden; }
.musician-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s; filter: sepia(10%) contrast(1.05); }
.musician-card:hover .musician-img-wrap img { transform: scale(1.04); }
.musician-info { padding: 1.5rem; }
.musician-info h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.25rem; }
.musician-role { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; font-style: italic; }
.musician-bio { font-size: 0.82rem; color: var(--sand); line-height: 1.75; }
.musicians-memorial {
  background: rgba(92,58,30,0.15);
  border: 1px solid rgba(201,151,58,0.15);
  border-top: 2px solid rgba(201,151,58,0.3);
  padding: 2.5rem 3rem;
  text-align: center;
  margin-top: 2px;
}
.memorial-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; opacity: 0.8; }
.musicians-memorial h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); font-style: italic; margin-bottom: 0.3rem; }
.memorial-role { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark); margin-bottom: 1rem; }
.memorial-bio { font-size: 0.85rem; color: var(--sand); line-height: 1.75; max-width: 680px; margin: 0 auto; }

/* ── EPK ────────────────────────────────────────────────── */
.epk { background: var(--mahogany); }
.epk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.epk-text {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.epk-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 2.5rem; color: var(--cream); line-height: 1.05; margin-bottom: 1rem; }
.epk-title em { font-style: italic; color: var(--gold); }
.epk-desc { font-size: 0.92rem; color: var(--sand); line-height: 1.7; max-width: 420px; }
.epk-includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  margin-top: 2rem;
}
.epk-include-item { font-size: 0.8rem; color: var(--sand); }
.epk-image { position: relative; overflow: hidden; }
.epk-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.65) sepia(15%); }
.epk-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(92,58,30,0.6) 0%, transparent 60%); }

/* ── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 900px) {
  .hero-bar { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .hero-creds { grid-template-columns: 1fr 1fr; }
  .musicians-inner { padding: 0 1.5rem; }
  .musicians-grid { grid-template-columns: 1fr; }
  .musician-img-wrap { height: 200px; }
  .musicians-memorial { padding: 2rem 1.5rem; }
  .epk-inner { grid-template-columns: 1fr; }
  .epk-image { min-height: 220px; }
  .epk-text { padding: 2.5rem 1.5rem; }
}

/* Memorial photo */
.memorial-photo { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.5rem; border: 3px solid rgba(201,151,58,0.35); }
.memorial-photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.05); }

/* ── UNMUTE BUTTON ──────────────────────────────────────── */
.unmute-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(42,31,20,0.75);
  border: 1px solid rgba(201,151,58,0.45);
  color: var(--cream);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}
.unmute-btn:hover {
  background: rgba(92,58,30,0.85);
  border-color: var(--gold);
}

/* Show description from Google Calendar */
.show-desc {
  font-size: 0.78rem;
  color: var(--bark);
  font-style: italic;
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* URL link in show listing */
.show-url {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
  display: block;
  margin-top: 0.3rem;
  transition: color 0.2s;
}
.show-url:hover { color: var(--cream); text-decoration: underline; }

/* YouTube embed — responsive 16:9 */
.yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── THEME SWITCHER ─────────────────────────────────────── */
.theme-switcher {
  position: relative;
}
.theme-btn {
  background: none;
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}
.theme-btn:hover { border-color: var(--gold); background: rgba(201,151,58,0.1); }

.theme-picker {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--charcoal);
  border: 1px solid rgba(201,151,58,0.25);
  border-radius: 40px;
  padding: 6px 10px;
  gap: 6px;
  flex-direction: row;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
  z-index: 200;
}
.theme-picker.open { display: flex; }
.theme-picker button {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.theme-picker button:hover {
  border-color: var(--gold);
  transform: scale(1.2);
}

/* ── SOCIAL PROOF BAR ───────────────────────────────────── */
.social-proof-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,151,58,0.15);
  border-bottom: 1px solid rgba(201,151,58,0.15);
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 2.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
a.social-proof-item:hover { opacity: 0.75; }
.social-proof-icon { font-size: 1.4rem; line-height: 1; }
.social-proof-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.1;
}
.social-proof-text span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}
.social-proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(201,151,58,0.18);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .social-proof-bar { gap: 0.5rem; padding: 1rem; }
  .social-proof-item { padding: 0.4rem 1rem; }
  .social-proof-sep { display: none; }
}

/* ── TOUR MAP ───────────────────────────────────────────── */
.tourmap {
  background: var(--charcoal);
  padding: 5rem 0 0;
}

.tourmap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,151,58,0.12);
  margin: 0 4rem 3rem;
}

.tourmap-stat {
  background: var(--charcoal);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,151,58,0.08);
  transition: background 0.3s;
}
.tourmap-stat:hover { background: rgba(92,58,30,0.3); }

.tourmap-stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.tourmap-stat-plus {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--rust);
}
.tourmap-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.tourmap-label-row {
  padding: 0 4rem 1.5rem;
}
.tourmap-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--cream);
  margin-top: 0.3rem;
}
.tourmap-title em { font-style: italic; color: var(--gold); }

.tourmap-embed-wrap {
  display: flex;
  justify-content: center;
  padding: 0 4rem 0;
}
.tourmap-embed {
  position: relative;
  width: 75%;
  padding-bottom: 42%;
  background: #111;
  flex-shrink: 0;
}
.tourmap-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(20%) contrast(1.1) brightness(0.9);
  pointer-events: none;
}
/* Click-to-interact overlay */
.tourmap-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.tourmap-overlay:hover { background: rgba(0,0,0,0.08); }
.tourmap-overlay span {
  background: rgba(42,31,20,0.75);
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(201,151,58,0.4);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
/* When activated, let iframe receive events */
.tourmap-embed.active iframe { pointer-events: auto; }

@media (max-width: 900px) {
  .tourmap-stats { grid-template-columns: 1fr 1fr; margin: 0 1.5rem 2rem; }
  .tourmap-label-row { padding: 0 1.5rem 1.5rem; }
  .tourmap-embed-wrap { padding: 0 1.5rem; }
  .tourmap-embed { width: 100%; padding-bottom: 70%; }
}

/* ── PHOTO OF THE DAY ───────────────────────────────────── */
.potd-label {
  padding: 1rem 1.5rem 0.5rem;
  text-align: center;
}
.potd-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
}
.potd-frame {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.potd-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.potd-frame:hover img { transform: scale(1.03); }
.potd-caption {
  font-size: 0.75rem;
  color: var(--sand);
  font-style: italic;
  text-align: center;
  padding: 0.6rem 1.5rem 0;
  line-height: 1.5;
}
