/* ============================================================
   OPERA LUX EVENTS — Stage Design System
   Theme: the stage. Near-black house, warm spotlight, gold + wine.
   One sheet for all pages. Photo swaps: just replace the <img>.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- Brand fonts (self-hosted, no CDN) ---------- */
@font-face {
  font-family: 'Cinzel';
  src: url('fonts/cinzel-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('fonts/cinzel-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('fonts/cinzel-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  /* Brand palette — exact hexes from brand/colors.csv */
  --gold: #c8a45a;          /* Old Gold */
  --ivory: #f2eee6;         /* Warm Ivory */
  --opera-black: #0d0d0f;   /* Opera Black */
  --navy: #1a2332;          /* Midnight Navy */
  --merlot: #7b1d2a;        /* Deep Merlot */
  --taupe: #6e665c;         /* Warm Taupe */

  /* Working tokens derived from the brand palette */
  --bg: #0d0d0f;            /* ground = Opera Black */
  --bg2: #131418;           /* lifted ground */
  --bg-wine: #17121a;       /* merlot-tinted black */
  --surface: #16171c;       /* card (navy-leaning neutral) */
  --surface2: #1c1e26;      /* elevated card */
  --gold-light: #e0c489;    /* lifted gold for gradients/hover */
  --gold-deep: #9c7e3f;     /* deepened gold */
  --wine: #7b1d2a;          /* Deep Merlot */
  --wine-deep: #4a1119;     /* deepened merlot */
  --ink: #f2eee6;           /* primary light text = Warm Ivory */
  --ink-dim: #d8d2c6;       /* dimmed ivory for secondary body */
  --muted: #8b8175;         /* Warm Taupe, lifted for legibility on black */
  --line: rgba(200, 164, 90, 0.16);
  --line-strong: rgba(200, 164, 90, 0.34);

  /* Legacy aliases (used by inline styles in markup) */
  --cream: var(--bg);
  --white: var(--surface);
  --black: #0d0d0f;
  --grey: var(--muted);
  --grey-light: var(--line);

  /* Type — brand law: Cinzel display, Montserrat body */
  --serif: 'Cinzel', 'Trajan Pro', 'Bodoni 72 Smallcaps', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Shape + depth */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 45px rgba(0,0,0,0.55);
  --shadow-float: 0 30px 80px rgba(0,0,0,0.65), 0 6px 18px rgba(0,0,0,0.4);
  --glow-gold: 0 0 60px rgba(200,164,90,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(1100px 500px at 85% -100px, rgba(123,29,42,0.16), transparent 70%),
    radial-gradient(900px 480px at 12% -60px, rgba(200,164,90,0.10), transparent 70%),
    var(--bg);
  color: var(--ink);
  font-weight: 400;
  overflow-x: hidden;
}

::selection { background: rgba(200,164,90,0.35); color: var(--opera-black); }

/* ---------- Reveal / motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.tiltable { transform-style: preserve-3d; will-change: transform; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(4%, 6%) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .hero-tag, .hero h1, .hero-sub, .videos-wrap, .videos-more { opacity: 1 !important; transform: none !important; }
}

/* ---------- Nav ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 4rem;
  background: rgba(13,13,15,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled { background: rgba(13,13,15,0.88); border-bottom-color: var(--line); }

/* Brand lockup — live Cinzel text, "OPERA LUX — EVENTS" */
.brand-lockup {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--gold);
  font-family: var(--serif);
}
.brand-lockup .bl-main {
  font-weight: 600; font-size: 1.15rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); line-height: 1;
}
.brand-lockup .bl-rule {
  width: 22px; height: 2px; background: var(--gold); flex-shrink: 0;
}
.brand-lockup .bl-sub {
  font-weight: 500; font-size: 0.62rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); line-height: 1; padding-left: 0.06em;
}
.nav-logo { flex-shrink: 0; }

.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.nav-cta {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  padding: 0.7rem 1.5rem; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(200,164,90,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,164,90,0.4); }

/* ---------- Shared type ---------- */
.section-label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.section-label::before { content: ''; width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.page-hero .section-label, .statement-bg .section-label,
.cta-bg .section-label, .insta-bg .section-label, .venues-wrap .section-label, .details-wrap .section-label
  { justify-content: center; }
.page-hero .section-label::after, .cta-bg .section-label::after, .insta-bg .section-label::after,
.venues-wrap .section-label::after, .details-wrap .section-label::after
  { content: ''; width: 34px; height: 1px; background: linear-gradient(270deg, var(--gold), transparent); }

h1, h2, h3 {
  font-family: var(--serif); font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.3;
  text-wrap: balance;
}

.section { padding: 7rem 2rem; }
.section-inner { max-width: 1040px; margin: 0 auto; }
.section h2, .formats-bg h2, .timeline-inner > h2, .press-inner > h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600; line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); max-width: 1000px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  padding: 1.15rem 3.2rem; border: none; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 30px rgba(200,164,90,0.28);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200,164,90,0.42); }

.btn-outline {
  display: inline-block; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 1rem 2.6rem; text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ---------- Index hero ---------- */
/* ---------- Cinematic intro overlay (plays once on load) ---------- */
body.intro-lock { overflow: hidden; height: 100vh; }

.brand-intro {
  position: fixed; inset: 0; z-index: 2000;
  background: #0b0908;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  opacity: 1; visibility: visible;
}
.brand-intro.intro-out {
  animation: introOut 1.15s cubic-bezier(0.65, 0, 0.2, 1) forwards;
}
@keyframes introOut {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); visibility: hidden; }
}
.brand-intro-video {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  /* slow cinematic pull-back: start zoomed on the beam, settle to reveal the full wordmark */
  transform: scale(1.22);
  animation: introPullback 6s cubic-bezier(0.22, 0.61, 0.24, 1) forwards;
}
@keyframes introPullback {
  0%   { transform: scale(1.22) translateY(1.6%); }
  100% { transform: scale(1.0)  translateY(0); }
}
.brand-intro-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(11,9,8,0) 46%, rgba(11,9,8,0.55) 100%);
  opacity: 0; animation: introVig 6s ease-out forwards;
}
@keyframes introVig { 0% { opacity: 0.9; } 40% { opacity: 0; } 100% { opacity: 0; } }
.brand-intro-skip {
  position: absolute; bottom: 1.7rem; right: 1.9rem;
  background: transparent; border: 1px solid rgba(232,196,137,0.32);
  color: var(--gold-light); cursor: pointer;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  opacity: 0; animation: introSkipIn 0.6s ease 1.3s forwards;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.brand-intro-skip:hover { background: rgba(232,196,137,0.12); border-color: var(--gold-light); }
@keyframes introSkipIn { to { opacity: 0.85; } }

@media (prefers-reduced-motion: reduce) {
  .brand-intro { display: none; }
  body.intro-lock { overflow: auto; height: auto; }
}

.hero {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 11rem 2rem 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -26%; left: 50%; transform: translateX(-50%);
  width: 950px; height: 950px;
  background: radial-gradient(ellipse, rgba(200,164,90,0.20) 0%, rgba(200,164,90,0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -35%; right: -12%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(123,29,42,0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite reverse;
}

.hero-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  font-weight: 600; line-height: 1.22; max-width: 940px;
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-style: normal; font-weight: 600;
  background: linear-gradient(120deg, var(--gold-light) 20%, var(--gold) 55%, var(--wine) 105%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 1.08rem; font-weight: 300; color: var(--ink-dim);
  max-width: 660px; line-height: 1.85; margin-bottom: 3.2rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s;
  position: relative; z-index: 1;
}

/* Videos */
.videos-wrap {
  display: flex; flex-direction: column; gap: 1.5rem;
  width: 100%; max-width: 880px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
  position: relative; z-index: 1;
}
.v-feature, .v-item { margin: 0; }
.v-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.v-frame {
  position: relative; aspect-ratio: 16 / 9; background: #000;
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float), var(--glow-gold);
}
.v-frame iframe, .v-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none; object-fit: cover;
}
.video-label {
  font-size: 0.72rem; color: var(--muted); text-align: center;
  margin-top: 0.85rem; line-height: 1.5; letter-spacing: 0;
  text-transform: none;
}
.video-label strong {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.02rem; color: var(--ink); letter-spacing: 0.02em; margin-bottom: 0.15rem;
}
.videos-more { margin-top: 1.4rem; opacity: 0; animation: fadeUp 0.8s ease forwards 1s; position: relative; z-index: 1; }
.videos-more a {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); text-decoration: none;
  border-bottom: 1px solid rgba(200,164,90,0.4); padding-bottom: 3px;
  transition: border-color 0.3s, color 0.3s;
}
.videos-more a:hover { border-color: var(--gold-light); color: var(--ink); }

/* Credibility strip */
.cred-strip {
  background: linear-gradient(90deg, var(--wine-deep), #241016 45%, var(--wine-deep));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.1rem 2rem;
  position: relative; z-index: 2;
}
.cred-inner { max-width: 1040px; margin: 0 auto; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.cred-inner span { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(243,236,221,0.55); padding: 0 1.1rem; }
.cred-inner span.cred-sep { color: var(--gold); opacity: 0.7; padding: 0; font-size: 0.55rem; }

/* Index about */
.about-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 5rem; align-items: center; }
.about-photo {
  overflow: hidden; aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  transform: rotate(-2deg);
  border: 1px solid var(--line-strong);
  outline: 1px solid rgba(200,164,90,0.25); outline-offset: 10px;
  box-shadow: var(--shadow-float);
  transition: transform 0.5s ease;
}
.about-photo:hover { transform: rotate(0deg) scale(1.015); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text p { font-size: 1.02rem; line-height: 1.9; color: var(--ink-dim); margin-bottom: 1.25rem; }
.about-text p strong { color: var(--gold-light); font-weight: 500; }

/* Formats — angled stage band */
.formats-bg {
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 56px);
  margin: 2rem clamp(0.5rem, 2vw, 2rem);
  border: 1px solid var(--line);

  background: linear-gradient(160deg, var(--bg-wine), var(--bg2) 60%);
  padding: 9rem 2rem;
  position: relative;
}
.formats-bg .section-label { color: var(--gold-light); }
.formats-bg h2 { color: var(--ink); margin-bottom: 3.5rem; }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 1040px; margin: 0 auto; }
.format-card {
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.6rem 2.1rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
}
.format-card:nth-child(2) { transform: translateY(1.6rem); }
.format-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); }
.format-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  line-height: 1; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(200,164,90,0.7), rgba(123,29,42,0.7));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.format-title { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.3; color: var(--ink); margin-bottom: 0.9rem; }
.format-venue { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.format-desc { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.75; }

/* Index repertoire */
.rep-bg { background: transparent; padding: 8rem 2rem 7rem; }
.rep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.4rem; }
.rep-item {
  background: linear-gradient(180deg, var(--surface), var(--bg2));
  border: 1px solid var(--line); border-radius: var(--r);
  border-top: 2px solid rgba(200,164,90,0.5);
  padding: 2.6rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, border-color 0.4s;
}
.rep-item:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.rep-item:nth-child(even) { transform: translateY(1.1rem); }
.rep-item:nth-child(even):hover { transform: translateY(0.4rem); }
.rep-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-light); margin-bottom: 0.7rem; }
.rep-sub { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }
.rep-note { text-align: center; font-size: 0.92rem; color: var(--ink-dim); font-family: var(--sans); font-weight: 300; margin-top: 2.4rem; }
.rep-note a {
  color: var(--gold-light); text-decoration: none; font-style: normal;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid rgba(200,164,90,0.5); padding-bottom: 2px;
}

/* Duo */
.duo-bg { background: transparent; padding: 6rem 2rem 8rem; }
.duo-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.duo-accent {
  font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.16;
  background: linear-gradient(150deg, var(--gold-light) 10%, var(--gold) 45%, var(--wine) 105%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: rotate(-3deg);
}
.duo-tag {
  display: inline-block; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0.45rem 1.2rem; margin-bottom: 1.6rem;
}
.duo-text h3 { font-size: clamp(1.15rem, 2.3vw, 1.75rem); font-weight: 600; line-height: 1.35; margin-bottom: 1.5rem; }
.duo-text p { font-size: 1rem; line-height: 1.9; color: var(--ink-dim); margin-bottom: 1.2rem; }
.duo-text a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(200,164,90,0.5); }

/* Statement bands */
.statement-bg {
  border-radius: clamp(24px, 4vw, 56px);
  margin: 2rem clamp(0.5rem, 2vw, 2rem);
  border: 1px solid var(--line);

  background: linear-gradient(120deg, var(--wine-deep), var(--bg-wine) 55%, var(--bg2));
  padding: 9.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.statement-bg::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(200,164,90,0.16) 0%, transparent 65%);
  pointer-events: none; animation: drift 16s ease-in-out infinite;
}
.statement-main {
  font-family: var(--serif); font-size: clamp(1.45rem, 3.3vw, 2.6rem);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink);
  line-height: 1.4; position: relative; max-width: 820px; margin: 0 auto 1.6rem;
}
.statement-main span {
  
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.statement-sub { font-size: 0.9rem; font-family: var(--sans); color: rgba(242,238,230,0.6); letter-spacing: 0.05em; font-weight: 400; position: relative; }

/* Fair questions */
.faq-bg { background: transparent; padding: 8rem 2rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.faq-card {
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.faq-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); }
.faq-card.wide { grid-column: 1 / -1; background: linear-gradient(120deg, rgba(123,29,42,0.28), var(--surface) 55%); }
.faq-q { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; line-height: 1.5; letter-spacing: 0.02em; color: var(--gold-light); margin-bottom: 1rem; }
.faq-a { font-size: 0.94rem; color: var(--ink-dim); line-height: 1.8; }

/* Details strip */
.details-wrap { background: transparent; padding: 3rem 2rem 6rem; }
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1040px; margin: 0 auto; }
.detail-item {
  background: linear-gradient(180deg, var(--surface), var(--bg2));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 2.6rem 2rem; text-align: center;
  box-shadow: var(--shadow-card);
}
.detail-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.5rem;
}
.detail-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* Contact */
.contact-bg { background: linear-gradient(200deg, var(--bg-wine), var(--bg) 55%); padding: 8rem 2rem; }
.contact-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 5rem; align-items: start; }
.contact-left h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 600; line-height: 1.3; margin-bottom: 1.5rem; }
.contact-left p { font-size: 0.97rem; line-height: 1.85; color: var(--ink-dim); margin-bottom: 2rem; }
.contact-events { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.contact-events li { font-size: 0.88rem; color: var(--ink-dim); display: flex; align-items: center; gap: 0.8rem; }
.contact-events li::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

.contact-form {
  display: flex; flex-direction: column; gap: 1.2rem;
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-float);
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea {
  background: rgba(13,13,15,0.6);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 1rem 1.2rem;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 400; color: var(--ink);
  outline: none; width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(163,150,130,0.6); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,90,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; }

/* ---------- Sub-page hero ---------- */
.page-hero {
  padding: 12rem 2rem 6.5rem; text-align: center;
  background: transparent; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -18%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(200,164,90,0.16) 0%, transparent 68%);
  pointer-events: none; animation: drift 15s ease-in-out infinite;
}
.page-hero::after {
  content: ''; position: absolute; top: 20%; right: -18%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(123,29,42,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.7rem); font-weight: 600; line-height: 1.2;
  letter-spacing: 0.04em; margin-bottom: 1.2rem; position: relative; 
}
.page-hero .sub { font-size: 1rem; color: var(--ink-dim); line-height: 1.85; max-width: 620px; margin: 0 auto; position: relative; }

/* ---------- About page ---------- */
.bio-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 5rem; align-items: start; }
.bio-photo {
  position: sticky; top: 8rem;
  overflow: visible;
}
.bio-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  outline: 1px solid rgba(200,164,90,0.25); outline-offset: 10px;
  box-shadow: var(--shadow-float);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.bio-photo:hover img { transform: rotate(0deg); }
.bio-photo-caption { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 1.2rem; text-align: center; }
.bio-text p { font-size: 1.02rem; line-height: 1.9; color: var(--ink-dim); margin-bottom: 1.4rem; }
.bio-text p strong { color: var(--gold-light); font-weight: 500; }

.training-bg {
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 56px);
  margin: 2rem clamp(0.5rem, 2vw, 2rem);
  border: 1px solid var(--line);
 background: linear-gradient(160deg, var(--bg2), var(--bg-wine)); padding: 8rem 2rem; }
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.training-card {
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.training-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); }
.training-card:nth-child(even) { transform: translateY(1.2rem); }
.training-year { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.training-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.35; color: var(--ink); margin-bottom: 0.7rem; }
.training-desc { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.75; }

.stats-bg { background: transparent; padding: 6rem 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1040px; margin: 0 auto; }
.stat-item {
  background: linear-gradient(180deg, var(--surface), var(--bg2));
  border: 1px solid var(--line); border-radius: var(--r);
  border-top: 2px solid rgba(200,164,90,0.5);
  padding: 3rem 2rem; text-align: center;
  box-shadow: var(--shadow-card);
}
.stat-num {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.voice-bg { background: transparent; padding: 7rem 2rem; }
.voice-inner { max-width: 1040px; margin: 0 auto; }
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 2.5rem; }
.voice-card {
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.voice-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); }
.voice-card-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; line-height: 1.35; color: var(--gold-light); margin-bottom: 0.7rem; }
.voice-card-desc { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.75; }

.stage-hero { width: 100%; max-height: 620px; overflow: hidden; position: relative; }
.stage-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 75%, var(--bg) 100%);
  pointer-events: none;
}
.stage-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; max-height: 620px; }

.photos-bg { background: transparent; padding: 6rem 2rem; }
.coming-soon-block { text-align: center; padding: 5rem 3rem; border: 1px solid var(--line); border-radius: var(--r-lg); max-width: 600px; margin: 0 auto; }
.coming-soon-tag { display: inline-block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.35rem 1.1rem; margin-bottom: 1.5rem; }
.coming-soon-block h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.85rem; }
.coming-soon-block p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.7; }

/* ---------- CTA band (all pages) ---------- */
.cta-bg {
  border-radius: clamp(24px, 4vw, 56px) clamp(24px, 4vw, 56px) 0 0;
  margin: 2rem clamp(0.5rem, 2vw, 2rem) 0;
  border: 1px solid var(--line); border-bottom: none;

  background: linear-gradient(130deg, var(--bg-wine), var(--bg2) 60%);
  padding: 8.5rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-bg::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(200,164,90,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-bg h2, .cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600;
  line-height: 1.3; margin-bottom: 1rem; position: relative;
}
.cta-bg h2 span {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  
}
.cta-bg p, .cta-inner p { font-size: 0.95rem; color: var(--ink-dim); line-height: 1.8; margin-bottom: 2.6rem; position: relative; }

/* ---------- Performances page ---------- */
.now-wrap { background: transparent; padding: 5rem 2rem; }
.now-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.now-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  outline: 1px solid rgba(200,164,90,0.25); outline-offset: 10px;
  box-shadow: var(--shadow-float);
  transform: rotate(-1.6deg);
}
.now-copy .section-label { margin-bottom: 1rem; }
.now-copy h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 600; line-height: 1.3; margin-bottom: 1.5rem; }
.now-list { list-style: none; }
.now-item { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.now-item:last-child { border-bottom: 1px solid var(--line); }
.now-date { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.now-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; line-height: 1.3; margin-bottom: 0.4rem; color: var(--ink); }
.now-meta { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

.timeline-wrap { background: transparent; padding: 7rem 2rem; }
.timeline-inner { max-width: 900px; margin: 0 auto; }
.timeline-inner > .section-label { justify-content: center; }
.timeline-inner > .section-label::after { content: ''; width: 34px; height: 1px; background: linear-gradient(270deg, var(--gold), transparent); }
.timeline-inner > h2 { text-align: center; margin-bottom: 3.5rem; }
.season { margin-bottom: 3.2rem; }
.season-year {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1.25rem;
}
.perf-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline;
  padding: 1.1rem 1.4rem; border-radius: var(--r-sm);
  border: 1px solid transparent; border-top: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.perf-row:hover { background: var(--surface); border-color: var(--line); transform: translateX(6px); }
.perf-row:last-child { border-bottom: 1px solid var(--line); }
.perf-work { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; line-height: 1.35; color: var(--ink); }
.perf-role { font-size: 0.83rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.02em; }
.perf-venue { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); text-align: right; white-space: nowrap; }

.press-wrap {
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 56px);
  margin: 2rem clamp(0.5rem, 2vw, 2rem);
  border: 1px solid var(--line);

  background: linear-gradient(150deg, var(--wine-deep), var(--bg-wine) 55%, var(--bg2));
  padding: 8.5rem 2rem;
}
.press-inner { max-width: 960px; margin: 0 auto; }
.press-inner > .section-label { justify-content: center; color: var(--gold-light); }
.press-inner > .section-label::after { content: ''; width: 34px; height: 1px; background: linear-gradient(270deg, var(--gold), transparent); }
.press-inner > h2 { text-align: center; color: var(--ink); }
.press-grid { display: grid; gap: 2rem; }
.press-card {
  background: linear-gradient(165deg, rgba(32,23,15,0.9), rgba(24,18,16,0.9));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 2.8rem;
  box-shadow: var(--shadow-card);
  max-width: 780px;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.press-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); }
.press-card:nth-child(odd) { margin-right: auto; transform: rotate(-0.5deg); }
.press-card:nth-child(even) { margin-left: auto; transform: rotate(0.5deg); }
.press-quote { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.6; color: var(--ink); margin-bottom: 1rem; }
.press-gloss { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.7; margin-bottom: 1.75rem; }
.press-divider { width: 36px; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.press-src { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); }
.press-src span { color: var(--muted); }
.press-src a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.press-src a:hover { border-bottom-color: var(--gold-light); }
.press-work { font-size: 0.74rem; color: var(--muted); margin-top: 0.35rem; }
.press-tr { font-style: italic; letter-spacing: 0; text-transform: none; color: var(--muted); opacity: 0.8; }

/* ---------- Video grid (gallery) ---------- */
.vidgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1.6rem; }
.vidcard { margin: 0; }
.vidframe {
  position: relative; aspect-ratio: 16 / 9; background: #000;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
}
.vidframe iframe, .vidframe video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vidcap { margin-top: 0.8rem; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.vidcap strong {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.08rem; color: var(--ink); margin-bottom: 0.2rem; letter-spacing: 0.02em;
}
@media (max-width: 760px) { .vidgrid { grid-template-columns: 1fr; } }

/* ---------- Homepage compact press strip ---------- */
.pressbar { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 3.4rem 2rem; }
.pressbar-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.pressbar-inner .section-label { display: block; margin-bottom: 1.8rem; }
.pressbar-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; align-items: start; }
.pressbar-q { margin: 0; font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-style: italic; line-height: 1.45; color: var(--ink); }
.pressbar-q cite { display: block; margin-top: 0.8rem; font-family: var(--sans); font-style: normal; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.pressbar-link { display: inline-block; margin-top: 2rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.pressbar-link:hover { border-bottom-color: var(--gold-light); }
@media (max-width: 720px) { .pressbar-quotes { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- Repertoire page ---------- */
.cat-section { display: block; padding-bottom: 5rem; }
.cat-divider { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 0 0 5rem; opacity: 0.6; }
.cat-header { margin-bottom: 3rem; }
.cat-header h2 { margin-bottom: 0.75rem; }
.cat-header p { font-size: 0.98rem; color: var(--ink-dim); line-height: 1.8; max-width: 620px; }

.song-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.song-item {
  padding: 1.4rem 1.9rem;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  transition: background 0.25s;
}
.song-item:hover { background: rgba(200,164,90,0.07); }
.song-item:nth-child(odd) { border-right: 1px solid var(--line); }
.song-item:last-child, .song-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.song-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }
.song-composer { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; }
.cat-note { margin-top: 2rem; font-size: 0.85rem; font-family: var(--sans); font-weight: 300; color: var(--muted); text-align: center; }

/* ---------- Gallery page ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.photo-slot {
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s ease, box-shadow 0.45s, border-color 0.45s;
}
.photo-slot:nth-child(odd) { transform: rotate(-1deg); }
.photo-slot:nth-child(even) { transform: rotate(1deg); }
.photo-slot:hover { transform: rotate(0deg) scale(1.02); border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); z-index: 2; }
.photo-slot.tall { grid-row: span 2; aspect-ratio: auto; }
.photo-slot.featured { grid-column: span 2; aspect-ratio: 16/7; border-radius: var(--r-lg); }
.photo-slot img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.photo-slot:hover img { transform: scale(1.05); }
.photo-slot-icon { width: 36px; height: 36px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.photo-slot-icon::after { content: '+'; font-size: 1.1rem; color: var(--gold); font-weight: 300; }
.photo-slot span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.video-bg {
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 56px);
  margin: 2rem clamp(0.5rem, 2vw, 2rem);
  border: 1px solid var(--line);

  background: linear-gradient(150deg, var(--bg-wine), var(--bg2) 60%);
  padding: 8rem 2rem;
}
.video-bg .section-label { color: var(--gold-light); }
.video-bg h2 { color: var(--ink); margin-bottom: 2.5rem; }
.video-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 1.2rem; max-width: 1060px; margin: 0 auto; }
.video-slot {
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-float);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.video-slot:hover { border-color: var(--gold); box-shadow: var(--shadow-float), var(--glow-gold); }
.video-grid .video-slot.portrait { aspect-ratio: 9/16; }
.video-grid .video-slot.landscape { aspect-ratio: 16/9; }
.play-btn { width: 52px; height: 52px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.play-btn::after { content: '▶'; font-size: 0.85rem; color: var(--gold); margin-left: 3px; }
.video-slot span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.video-coming { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.25rem 0.75rem; }

.insta-bg { background: transparent; padding: 7rem 2rem; text-align: center; }
.insta-inner { max-width: 620px; margin: 0 auto; }
.insta-inner h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 600; margin-bottom: 1rem; }
.insta-inner p { font-size: 0.95rem; color: var(--ink-dim); line-height: 1.8; margin-bottom: 2.5rem; }
.insta-handle { font-size: 0.8rem; letter-spacing: 0.16em; color: var(--gold-light); font-weight: 600; margin-bottom: 2rem; display: block; }

/* ---------- Testimonials / background page ---------- */
.featured-wrap { background: transparent; padding: 6rem 2rem; }
.featured-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 4.5rem 3rem 3.5rem;
  box-shadow: var(--shadow-float);
  position: relative;
}
.quote-mark {
  font-family: var(--serif); font-size: 7rem; font-weight: 600; line-height: 0.4;
  background: linear-gradient(135deg, var(--gold-light), var(--wine));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 2rem; display: block;
}
.featured-quote { font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 500; line-height: 1.6; color: var(--ink); margin-bottom: 2.5rem; }
.featured-divider { width: 44px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }
.featured-name { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.4rem; }
.featured-role { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }

.grid-wrap { background: transparent; padding: 6rem 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.t-card {
  background: linear-gradient(165deg, var(--surface2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.t-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-float), var(--glow-gold); }
.t-card:nth-child(2) { transform: translateY(1.4rem); }
.t-card-quote { font-family: var(--serif); font-size: 0.98rem; font-weight: 500; line-height: 1.7; color: var(--ink-dim); flex: 1; }
.t-card-quote em { color: var(--gold-light); }
.t-card-footer { display: flex; align-items: center; gap: 1rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  border: 1px solid var(--line-strong);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.t-avatar span { font-family: var(--serif); font-size: 1rem; color: var(--gold-light); }
.t-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.t-role { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }

.coming-bg {
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 56px);
  margin: 2rem clamp(0.5rem, 2vw, 2rem);
  border: 1px solid var(--line);

  background: linear-gradient(120deg, var(--wine-deep), var(--bg-wine) 60%);
  padding: 6.5rem 2rem; text-align: center;
}
.coming-tag { display: inline-block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.35rem 1.2rem; margin-bottom: 1.5rem; }
.coming-bg h3 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 600; color: var(--ink); margin-bottom: 0.85rem; }
.coming-bg p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.7; max-width: 500px; margin: 0 auto; }

.venues-wrap { background: transparent; padding: 6rem 2rem; text-align: center; }
.venues-inner { max-width: 820px; margin: 0 auto; }
.venues-inner p.intro { font-size: 0.95rem; color: var(--ink-dim); line-height: 1.75; margin-bottom: 3rem; }
.venue-slots { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.venue-slot {
  width: 140px; height: 60px;
  background: linear-gradient(180deg, var(--surface), var(--bg2));
  border: 1px solid var(--line); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, border-color 0.3s;
}
.venue-slot:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.venue-slot span { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); }

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(180deg, var(--bg), #080605);
  padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
}
footer .brand-lockup .bl-main { font-size: 1rem; }
footer .brand-lockup .bl-sub { font-size: 0.56rem; }
footer p { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; }

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .press-card:nth-child(odd), .press-card:nth-child(even) { margin: 0; transform: none; max-width: none; }
}

@media (max-width: 768px) {
  nav { padding: 1.1rem 1.4rem; }
  .nav-links { display: none; }
  .brand-lockup { gap: 0.5rem; }
  .brand-lockup .bl-main { font-size: 0.98rem; letter-spacing: 0.12em; }
  .brand-lockup .bl-rule { width: 16px; }
  .brand-lockup .bl-sub { font-size: 0.54rem; letter-spacing: 0.26em; }
  .nav-cta { padding: 0.55rem 1.05rem; font-size: 0.6rem; white-space: nowrap; }
  .hero { padding: 9rem 1.5rem 5rem; }
  .v-row { grid-template-columns: 1fr; }
  .cred-inner span { padding: 0 0.5rem; }
  .about-grid, .bio-grid, .duo-inner, .contact-inner, .now-inner,
  .training-grid, .voice-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .formats-grid, .rep-grid, .details-grid, .faq-grid, .stats-grid,
  .testimonials-grid, .song-grid { grid-template-columns: 1fr; }
  .format-card:nth-child(2), .rep-item:nth-child(even),
  .training-card:nth-child(even), .t-card:nth-child(2) { transform: none; }
  .about-photo, .bio-photo img, .now-photo { transform: none; outline-offset: 6px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-slot:nth-child(odd), .photo-slot:nth-child(even) { transform: none; }
  .photo-slot.featured { grid-column: span 2; aspect-ratio: 16/9; }
  .photo-slot.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .video-grid { grid-template-columns: 1fr; }
  .bio-photo { position: static; }
  .perf-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 1rem 0.8rem; }
  .perf-venue { text-align: left; }
  .now-photo { aspect-ratio: 3/2; }
  .formats-bg, .statement-bg, .cta-bg, .press-wrap, .video-bg, .training-bg, .coming-bg {
    padding-top: 5rem; padding-bottom: 5rem;
    margin-left: 0.5rem; margin-right: 0.5rem;
    border-radius: 20px;
  }
  .cta-bg { border-radius: 20px 20px 0 0; margin-bottom: 0; }
  .contact-form { padding: 1.8rem; }
  .featured-inner { padding: 3.2rem 1.6rem 2.6rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2.5rem 1.5rem; }
}
