/* ===================================================================
   Nina McIntire — Ivory Fantasy
   Visual system: cinematic, editorial, music-first
   =================================================================== */

:root {
  --bg:        #0a0a0c;
  --bg-soft:   #131318;
  --bg-card:   #1a1a22;
  --ink:       #f4efe6;
  --ink-mute:  #b5ad9e;
  --ink-dim:   #b0a691;
  --gold:      #c9a25b;
  --gold-hi:   #e6c889;
  --crimson:   #8b1a2b;
  --line:      rgba(244,239,230,0.12);

  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Pinyon Script', 'Edwardian Script ITC', cursive;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --ease:   cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.65,0,.35,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ============= REVEAL ANIMATIONS ============= */

.reveal, .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
  will-change: opacity, transform;
}
.reveal.in, .fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============= NAV ============= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  background: linear-gradient(to bottom, rgba(10,10,12,0.85), rgba(10,10,12,0));
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.nav.scrolled {
  padding: 14px 56px;
  background: rgba(10,10,12,0.96);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-script {
  font-family: var(--script);
  font-size: 30px;
  color: var(--gold-hi);
  letter-spacing: .5px;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover {
  color: var(--gold-hi);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: 150;
  color: var(--gold);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 2px;
  background: currentColor;
  margin: 6px 0;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
  transform-origin: center;
  pointer-events: none;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ============= HERO ============= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(.55) contrast(1.05);
  transform-origin: top center;
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(-1.12, 1.12); }
  to   { transform: scale(-1.0,  1.0);  }
}

/* Background YouTube video — sized to cover the hero like background-size:cover.
   The 16:9 aspect ratio is maintained via viewport units; whichever dimension
   would otherwise leave a gap is overridden by min-width / min-height. */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;        /* 100vw * 9/16 */
  min-height: 100vh;
  min-width: 177.78vh;    /* 100vh * 16/9 */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  /* Match the still-poster's mood so the cinematic feel stays */
  filter: brightness(1) contrast(1.05);
  /* Brief fade-in to mask YouTube's white loading flash */
  opacity: 0;
  animation: heroVideoIn 1.4s ease-out 0.6s forwards;
}
@keyframes heroVideoIn {
  to { opacity: 1; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,12,0.55) 70%, rgba(10,10,12,0.95) 100%),
    linear-gradient(to bottom, rgba(10,10,12,0.55) 0%, transparent 30%, transparent 60%, rgba(10,10,12,0.95) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0, rgba(255,255,255,0.4) 1px, transparent 1px, transparent 2px);
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 38px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .92;
  margin-bottom: 36px;
}
.hero-title .line {
  display: block;
  font-size: clamp(72px, 13vw, 180px);
  letter-spacing: -2px;
}
.hero-title .script {
  font-family: var(--script);
  color: var(--gold-hi);
  font-size: clamp(80px, 14vw, 200px);
  margin-top: -.02em;
  letter-spacing: 0;
  font-weight: 400;
  text-shadow: 0 4px 40px rgba(201,162,91,0.25);
}

.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink-mute);
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .5s var(--ease-2);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bg); }

.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary::before { background: var(--gold-hi); }
.btn-primary:hover { color: var(--bg); }

.btn-ghost { background: transparent; }

.btn.big { padding: 22px 56px; font-size: 13px; letter-spacing: 4px; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -60px; left: 0;
  width: 100%; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-hi));
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -60px; }
  100% { top: 60px; }
}

/* ============= SECTION COMMONS ============= */

section { position: relative; }

.section-head { text-align: left; margin-bottom: 80px; max-width: 800px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-head.center .section-eyebrow { justify-content: center; }
.section-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-head.center .section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-eyebrow.light { color: var(--gold-hi); }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.section-title.light { color: var(--ink); }

.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mute);
  max-width: 600px;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.lead {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 26px;
}

/* ============= UPCOMING / NEXT EVENT ============= */

.upcoming {
  padding: 130px 56px 110px;
  background:
    radial-gradient(ellipse at center top, rgba(201,162,91,0.08) 0%, transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.upcoming::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
}

.upcoming-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.upcoming .section-eyebrow {
  justify-content: center;
}
.upcoming .section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.upcoming .section-title {
  margin-bottom: 56px;
}

.up-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
  padding: 48px 56px;
  background:
    linear-gradient(135deg, rgba(26,26,34,0.95) 0%, rgba(19,19,24,0.95) 100%);
  border: 1px solid rgba(201,162,91,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(201,162,91,0.08);
}
.up-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,162,91,0.18);
  pointer-events: none;
}

/* Date "stamp" — poster aesthetic */
.up-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  position: relative;
}
.up-month {
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 4px;
}
.up-day {
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 300;
  line-height: .82;
  color: var(--ink);
  letter-spacing: -3px;
  margin-top: -12px;
}
.up-year {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--ink-mute);
  margin-top: 26px;
}

/* Right side: details */
.up-meta { min-width: 0; }
.up-when {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.up-venue {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 10px;
}
.up-city {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.up-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Corner flag */
.up-flag {
  position: absolute;
  top: -1px;
  right: 32px;
  padding: 9px 16px 11px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  font-weight: 600;
}
.up-flag::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.up-note {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-mute);
}
.up-note a {
  color: var(--gold-hi);
  border-bottom: 1px solid rgba(201,162,91,0.4);
  padding-bottom: 1px;
  transition: border-color .3s, color .3s;
}
.up-note a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* If multiple upcoming cards are added later, they wrap into a grid */
.up-card + .up-card { margin-top: 22px; }

@media (max-width: 760px) {
  .upcoming { padding: 90px 20px 80px; }
  .up-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 26px;
    text-align: center;
  }
  .up-card::before { inset: 6px; }
  .up-stamp {
    flex-direction: row;
    gap: 14px;
    padding: 16px 0;
    justify-content: center;
  }
  .up-day { font-size: 78px; }
  .up-month, .up-year { margin: 0; }
  .up-actions { justify-content: center; }
  .up-flag { right: 50%; transform: translateX(50%); }
}

/* ============= STORY ============= */

.story {
  padding: 160px 56px 140px;
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.story-image {
  position: relative;
}
.story-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: contrast(1.05) brightness(.95);
}

.story-text p {
  margin-bottom: 22px;
  color: var(--ink-mute);
}
.story-text em {
  color: var(--gold-hi);
  font-style: italic;
}

.story-stats {
  display: flex;
  gap: 60px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-hi);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============= LISTEN ============= */

.listen {
  padding: 160px 56px 140px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.listen .section-head { margin-left: auto; margin-right: auto; max-width: 1400px; }

.tracks {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.track {
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease), border-color .6s var(--ease);
}
.track:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,91,0.4);
}

.track-art {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.track-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,12,0.2), rgba(26,26,34,0.95));
}

.track-body {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
.track-meta {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.track-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.track-desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.track audio {
  width: 100%;
  height: 38px;
  filter: invert(.92) hue-rotate(180deg) contrast(.85);
  border-radius: 0;
}

/* ============= WATCH / VIDEOS ============= */

.watch {
  padding: 160px 56px 140px;
  background: var(--bg);
}
.watch .section-head { margin-left: auto; margin-right: auto; max-width: 1400px; }

.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (hover: hover) {
  .video:hover .video-frame {
    border-color: var(--gold);
    transform: translateY(-4px);
  }
}

/* ============= STAGE / GALLERY ============= */

.stage {
  padding: 160px 56px 140px;
  background: var(--bg-soft);
}

.stage .section-head { margin-left: auto; margin-right: auto; max-width: 1400px; }

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
}

.g {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
  filter: brightness(.75) contrast(1.05) saturate(.9);
}
.g:hover img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1) saturate(1.1);
}

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(10,10,12,0.92) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all .5s var(--ease);
}
.g:hover .g-cap {
  transform: translateY(0);
  opacity: 1;
}
.g-cap span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.g-cap em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}

/* ============= VOICES ============= */

.voices {
  position: relative;
  padding: 180px 56px;
  overflow: hidden;
}
.voices-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(.4);
  transform: scale(1.1);
}
.voices-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,12,0.85), rgba(26,26,34,0.7)),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,12,0.85) 100%);
}

.voices-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.quote-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.quote {
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: rgba(10,10,12,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  padding-top: 24px;
}

/* ============= CONTACT ============= */

.contact {
  padding: 180px 56px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(201,162,91,0.06) 0%, transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.contact::before, .contact::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(var(--gold), transparent);
}
.contact::before { top: 60px; left: 50%; }
.contact::after  { bottom: 60px; left: 50%; transform: rotate(180deg); }

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact .section-eyebrow {
  justify-content: center;
}
.contact .section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.contact .section-title { margin-bottom: 32px; }
.contact .lead { margin-bottom: 50px; }
.contact-note {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.contact-actions .btn { display: inline-flex; align-items: center; }
.contact-guestbook { margin-top: 72px; }

@media (max-width: 560px) {
  .contact-actions { flex-direction: column; gap: 14px; }
  .contact-actions .btn { width: 100%; max-width: 360px; }
}

/* ============= FOOTER ============= */

.footer {
  padding: 50px 56px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand .brand-script {
  font-size: 32px;
}
.footer-brand .brand-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-dim);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-social-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-social-icons {
  display: flex;
  gap: 14px;
}
.sicon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-mute);
  transition: color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.sicon svg {
  width: 17px;
  height: 17px;
  display: block;
}
.sicon:hover {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============= RESPONSIVE ============= */

@media (max-width: 1024px) {
  .nav, .nav.scrolled { padding: 18px 28px; }
  .story, .listen, .watch, .stage, .voices, .contact { padding-left: 28px; padding-right: 28px; }
  .videos { gap: 28px; }
  .footer { padding-left: 28px; padding-right: 28px; }
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-image { max-width: 540px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .quote-track { grid-template-columns: repeat(2, 1fr); }
}

/* The 8 nav items need about 1200px to fit the horizontal bar without clipping.
   Switch to hamburger earlier than the layout breakpoint so Contact/Voices
   never get cut off during window resize. */
@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(10, 10, 12, 0.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    z-index: 120;
  }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; }
  .nav-links a {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--ink);
    padding: 6px 16px;
    display: inline-block;
  }
  .nav-links a::after { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .brand-script { font-size: 26px; }

  /* Hamburger becomes visible */
  .nav-toggle { display: block; }

  /* Nav links turn into a full-screen overlay */
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(10, 10, 12, 0.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    z-index: 120;
  }
  .nav.open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--ink);
    padding: 6px 16px;
    display: inline-block;
  }
  .nav-links a::after { display: none; }

  .hero { min-height: 600px; }
  .hero-content { padding: 0 18px; }
  .eyebrow { letter-spacing: 4px; margin-bottom: 24px; }
  .hero-tag { margin-bottom: 36px; font-size: 16px; }
  .hero-cta .btn { padding: 14px 28px; }

  .story, .listen, .watch, .stage, .voices, .contact { padding: 100px 18px; }
  .videos { grid-template-columns: 1fr; gap: 24px; }

  .story-stats { gap: 30px; flex-wrap: wrap; }
  .stat-num { font-size: 42px; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-wide { grid-column: span 2; }

  .quote-track { grid-template-columns: 1fr; gap: 20px; }
  .quote { padding: 30px 26px; }
  .quote blockquote { font-size: 18px; }

  .lead { font-size: 18px; }
  .section-sub { font-size: 18px; }
  .track-title { font-size: 26px; }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-img { animation: none; }
  .scroll-line::after { animation: none; }
}

/* ============= GALLERY VIDEO AUDIO TOGGLE (D-only) ============= */
.video-frame { position: relative; }
.video-frame iframe { pointer-events: none; }
.yt-audio-btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: transparent; border: 0; padding: 0; margin: 0;
  cursor: pointer; color: var(--ink, #f4efe6);
  display: flex; align-items: flex-end; justify-content: flex-end;
  transition: background 0.3s var(--ease, ease), box-shadow 0.3s var(--ease, ease);
}
.yt-audio-btn::before {
  /* faint top-to-bottom gradient so the corner label reads */
  content: ''; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  opacity: 0; transition: opacity 0.3s var(--ease, ease); pointer-events: none;
}
.yt-audio-btn:hover::before { opacity: 1; }
.yt-audio-lbl {
  position: relative; margin: 0 14px 12px; padding: 6px 12px;
  font: 500 11px/1 Inter, sans-serif; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.2); border-radius: 2px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s var(--ease, ease), transform 0.3s var(--ease, ease);
}
.yt-audio-btn:hover .yt-audio-lbl { opacity: 1; transform: translateY(0); }
.yt-audio-ico { display: none; }
/* Active (unmuted) state */
.video.is-audio .yt-audio-btn::before { opacity: 1; }
.video.is-audio .yt-audio-lbl {
  opacity: 1; transform: translateY(0);
  background: rgba(201, 162, 90, .85); border-color: transparent; color: #111;
}
.video.is-audio .video-frame {
  box-shadow: 0 0 0 2px var(--gold, #c9a25a), 0 16px 40px rgba(201,162,90,.25);
  transform: translateY(-4px);
}

/* "Click to hear" hint above the video grid */
.videos-hint {
  max-width: 1400px;
  margin: -20px auto 28px;
  padding: 0 56px;
  text-align: center;
  color: var(--ink-mute, #b5ad9e);
  font: 400 12px/1 Inter, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 1024px) { .videos-hint { padding: 0 28px; } }
@media (max-width: 768px)  { .videos-hint { padding: 0 18px; margin: -8px auto 20px; } }

/* Title under each gallery video, with an up-pointing arrow */
.video-title {
  margin: 14px 8px 0;
  text-align: center;
  font: 400 14px/1.35 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--ink, #f4efe6);
  letter-spacing: 0.02em;
}
.video-arrow {
  display: block;
  width: 0; height: 0;
  margin: 0 auto 6px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid var(--gold, #c9a25a);
  opacity: .85;
}
.video-title-text {
  display: inline-block;
  max-width: 36ch;
}

/* Poster thumbnail + fade-in when iframe is injected */
.video-frame {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-frame iframe {
  animation: ytFadeIn 550ms ease-out forwards;
}
@keyframes ytFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============= Touch-device audio layout =============
   On iPads/phones, Safari blocks programmatic playback and needs the user to
   tap the iframe directly (YouTube's own play button). So on touch we:
   - Make the iframe fully tappable (undo pointer-events:none).
   - Shrink the audio-toggle button to a small bottom-right pill.
   - Keep the label always visible (no hover on touch).                       */
@media (hover: none) {
  .video-frame iframe { pointer-events: auto; }
  .yt-audio-btn {
    inset: auto 8px 8px auto;
    width: auto; height: auto;
    background: rgba(0,0,0,.65);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 0;
  }
  .yt-audio-btn::before { display: none; }
  .yt-audio-lbl {
    position: static;
    margin: 0;
    padding: 6px 12px;
    opacity: 1;
    transform: none;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: #f4efe6;
  }
  .video.is-audio .yt-audio-btn { background: rgba(201, 162, 90, .95); }
  .video.is-audio .yt-audio-lbl { color: #111; background: transparent; }
}

/* Kill the multicolor border: the frame's translucent 1px line was blending
   with each tile's poster thumbnail showing through it. Force an opaque dark
   border (hover→gold rule still applies from the earlier @media block). */
.video-frame {
  border-color: #000;
  background-clip: padding-box;
}

/* Footer brand is a link back to the top — strip default <a> styling */
a.footer-brand { color: inherit; text-decoration: none; cursor: pointer; }
a.footer-brand:hover .brand-script { color: var(--gold-hi); }
