/* ============================================================
   Areeso Theatre — dark auditorium theme
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg-raised: #12121c;
  --bg-card: #15151f;
  --ink: #f5f1e8;
  --ink-dim: #b9b3a6;
  --ink-faint: #7d7870;
  --gold: #e0a83c;
  --gold-bright: #f2c14e;
  --crimson: #8e1f2f;
  --crimson-deep: #5c1220;
  --indigo: #232355;
  --teal: #123d3d;
  --line: rgba(245, 241, 232, 0.1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 116px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #0a0a0f; }

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; }

h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 em, h1 em { color: var(--gold); font-style: italic; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.78rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s, color 0.2s, border-color 0.2s;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #c78f28);
  color: #1a1206;
  box-shadow: 0 4px 24px rgba(224, 168, 60, 0.28);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(224, 168, 60, 0.45);
}
.btn--gold:disabled {
  opacity: 0.45; cursor: not-allowed; transform: none;
  box-shadow: none;
}

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(245, 241, 232, 0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; letter-spacing: 0.01em;
}
.nav__brand em {
  display: block; font-family: var(--font-mono); font-style: normal;
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-top: -2px;
}
.nav__mask { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.nav__logo { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
/* logo sits fully inside the navbar — the bar is sized to fit it */
.nav__logo--full { width: auto; height: 100px; }
@media (max-width: 600px) { .nav__logo--full { height: 80px; } }
/* navbar height tracks the logo height on small screens too */
@media (max-width: 600px) { :root { --nav-h: 96px; } }

.nav__links { display: flex; gap: 1.7rem; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  color: var(--ink-dim); position: relative; padding: 0.35rem 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { font-size: 0.88rem; padding: 0.6rem 1.25rem; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.2rem clamp(1rem, 4vw, 3rem) 2rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  text-decoration: none; font-family: var(--font-display);
  font-size: 1.5rem; padding: 0.55rem 0; color: var(--ink);
  border-bottom: 1px solid rgba(245,241,232,0.06);
}
.mobile-menu .btn { margin-top: 1.2rem; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) clamp(1.2rem, 4vw, 3rem) 4.5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(142, 31, 47, 0.32), transparent 65%),
    radial-gradient(ellipse 45% 40% at 50% 108%, rgba(224, 168, 60, 0.12), transparent 70%),
    var(--bg);
}

/* hero background slider (images from media/hero) */
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.4s ease;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(rgba(10,10,15,0.66) 0%, transparent 22%, transparent 62%, rgba(10,10,15,0.82) 100%);
  opacity: 0;
}
.hero--has-slides .hero__vignette { opacity: 1; }
.hero--has-slides .hero__dust { opacity: 0.18; }
.hero--has-slides .hero__spotlight { opacity: 0.25; }

.hero__dots {
  position: absolute; bottom: 30px; right: clamp(1.2rem, 4vw, 3rem);
  display: flex; gap: 9px; z-index: 3;
}
.hero__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(245,241,232,0.5); background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s var(--ease), border-color 0.25s;
}
.hero__dot:hover { transform: scale(1.3); }
.hero__dot.is-active { background: var(--gold); border-color: var(--gold); }

/* bottom-left info chips on the slider */
.hero__chip {
  position: relative; z-index: 3;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright);
  background: rgba(10, 10, 15, 0.55); border: 1px solid rgba(224, 168, 60, 0.35);
  border-radius: 999px; padding: 0.45rem 1.1rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__caption {
  position: absolute; z-index: 3;
  left: clamp(1.2rem, 4vw, 3rem); bottom: 30px;
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim);
  max-width: 60%;
}
.hero__caption:empty { display: none; }

/* ---------- Intro (headline section below the slider) ---------- */
.intro {
  position: relative; text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 1.5rem clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(142, 31, 47, 0.22), transparent 65%),
    radial-gradient(ellipse 45% 45% at 50% 115%, rgba(224, 168, 60, 0.1), transparent 70%),
    var(--bg);
}
.intro > * { max-width: 880px; margin-left: auto; margin-right: auto; }
.intro .hero__title { margin: 0.4rem auto 1.4rem; }
.hero__dot:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.hero__curtain {
  position: absolute; top: 0; bottom: 0; width: 52%;
  z-index: 5; pointer-events: none;
  background:
    repeating-linear-gradient(90deg,
      var(--crimson-deep) 0 26px,
      var(--crimson) 26px 44px,
      #6f1727 44px 70px);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  animation: curtain 1.6s var(--ease) 0.35s forwards;
}
.hero__curtain--left { left: 0; transform-origin: left; }
.hero__curtain--right { right: 0; transform-origin: right; }
@keyframes curtain { to { transform: scaleX(0); opacity: 0.9; } }

.hero__spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse 42% 52% at 50% 38%, rgba(242, 193, 78, 0.14), transparent 70%);
  animation: spot 7s ease-in-out infinite alternate;
}
@keyframes spot {
  from { opacity: 0.75; transform: translateX(-2%); }
  to   { opacity: 1;    transform: translateX(2%); }
}

.hero__dust {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(242,193,78,0.5), transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(245,241,232,0.4), transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(242,193,78,0.35), transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(245,241,232,0.35), transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 85%, rgba(242,193,78,0.3), transparent 100%),
    radial-gradient(1px 1px at 70% 90%, rgba(245,241,232,0.3), transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 15%, rgba(242,193,78,0.4), transparent 100%);
  animation: dust 14s linear infinite;
}
@keyframes dust {
  from { transform: translateY(0); }
  to   { transform: translateY(-60px); }
}

.hero__inner { position: relative; z-index: 3; max-width: 880px; }

.hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.04;
  margin: 0.4rem 0 1.4rem;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 45%, #b87e1e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none;
}

.hero__sub {
  max-width: 560px; margin: 0 auto 2.2rem;
  color: var(--ink-dim); font-size: clamp(1rem, 1.6vw, 1.14rem);
  font-weight: 300;
}

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__stats {
  display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 3.4rem; flex-wrap: wrap;
}
.hero__stats div { text-align: center; }
.hero__stats strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.hero__stats span {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint);
}

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px;
  border: 1.5px solid rgba(245,241,232,0.35); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 8px;
  margin-left: -1.5px; border-radius: 3px; background: var(--gold);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-raised); padding: 0.85rem 0;
}
.ticker__track { display: inline-flex; animation: ticker 36s linear infinite; }
.ticker__track span {
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 5vw, 4rem); max-width: 1280px; margin: 0 auto; }
.section__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Show cards ---------- */
.shows { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.6rem; }
/* keep the layout centred and sensibly sized when there are only 1–2 shows */
.shows--single { grid-template-columns: minmax(0, 400px); justify-content: center; }
.shows--two { grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; }
@media (max-width: 720px) { .shows--two { grid-template-columns: minmax(0, 400px); } }

/* ---------- Past shows → Watch on YouTube ---------- */
.pastshows { padding-top: 0; }
.pastshows__card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background:
    radial-gradient(ellipse 55% 120% at 100% 50%, rgba(224, 168, 60, 0.12), transparent 70%),
    linear-gradient(150deg, #1a1420, #101018 70%);
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.7rem, 4vw, 2.6rem) clamp(1.6rem, 4vw, 3rem);
}
.pastshows__text { max-width: 58ch; }
.pastshows__text h2 { margin: 0.3rem 0 0.7rem; }
.pastshows__text p { color: var(--ink-dim); font-weight: 300; font-size: 0.95rem; }
.pastshows__btn { flex-shrink: 0; }
.pastshows__btn svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .pastshows__card { flex-direction: column; align-items: flex-start; }
  .pastshows__btn { width: 100%; justify-content: center; }
}

.show-card {
  background: var(--bg-card);
  border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.show-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 168, 60, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.poster {
  position: relative; aspect-ratio: 16 / 10.5;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem 1.5rem; overflow: hidden;
}
.poster--crimson { background: radial-gradient(ellipse 120% 100% at 20% 0%, #a3283a, var(--crimson-deep) 60%, #2b0810); }
.poster--indigo  { background: radial-gradient(ellipse 120% 100% at 20% 0%, #38387f, var(--indigo) 60%, #0d0d2b); }
.poster--teal    { background: radial-gradient(ellipse 120% 100% at 20% 0%, #1e6363, var(--teal) 60%, #05201f); }

.poster::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 72% 30%, rgba(242,193,78,0.2), transparent 70%);
}

/* real poster image uploaded via admin */
.poster--img { background: #0d0d14; }
.poster--img::after {
  background: linear-gradient(rgba(10,10,15,0.05) 55%, rgba(10,10,15,0.55));
}
.poster__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s var(--ease);
}
.show-card:hover .poster__img { transform: scale(1.05); }

.poster__art {
  position: absolute; top: -12%; right: -8%; width: 62%; opacity: 0.2;
  color: var(--ink);
  transition: transform 0.5s var(--ease), opacity 0.4s;
}
.show-card:hover .poster__art { transform: rotate(6deg) scale(1.06); opacity: 0.32; }

.poster__lang {
  position: absolute; top: 1rem; left: 1.2rem;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(245,241,232,0.35); border-radius: 999px;
  padding: 0.28rem 0.7rem; color: var(--ink);
  backdrop-filter: blur(4px); z-index: 1;
}

.poster__title {
  position: relative; z-index: 1;
  font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 900; line-height: 0.98;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.poster__tag {
  position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,232,0.75); margin-top: 0.5rem;
}

.show-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.show-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
}
.rating { color: var(--gold-bright); }
.show-card__body h3 { font-size: 1.5rem; }
.show-card__body > p { color: var(--ink-dim); font-size: 0.92rem; font-weight: 300; }

.show-card__facts { list-style: none; display: grid; gap: 0.45rem; margin: 0.35rem 0 0.65rem; }
.show-card__facts li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.86rem; color: var(--ink-dim);
}
.show-card__facts svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.show-card__actions { margin-top: auto; display: grid; gap: 0.7rem; }
.show-card__actions .btn { justify-content: center; }

/* District = gold-outline "yellow frame" button (secondary to BookMyShow) */
.btn--district {
  background: transparent; color: var(--gold-bright);
  border-color: var(--gold);
}
.btn--district:hover {
  background: rgba(224, 168, 60, 0.12);
  border-color: var(--gold-bright); color: var(--gold-bright);
  transform: translateY(-2px);
}

.partner-links { display: flex; gap: 1.2rem; justify-content: center; }
.partner-links a {
  font-size: 0.8rem; font-weight: 500; color: var(--ink-faint);
  text-decoration: none; transition: color 0.2s;
}
.partner-links a:hover { color: var(--gold-bright); }

/* ---------- About ---------- */
.section--split {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}

.about__visual { position: relative; }
.about__frame {
  min-height: min(88vw, 540px); border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 15%, rgba(242,193,78,0.16), transparent 65%),
    linear-gradient(160deg, #1c1424, #0e0b14 60%);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; padding: 2.2rem; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about__frame svg { width: 44%; color: var(--gold); opacity: 0.85; }
.about__frame .about__logo { width: 56%; height: auto; object-fit: contain; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4)); }
.about__logo--full {
  width: min(74%, 320px); height: auto; display: block; margin: 0 auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.55));
}
.about__frame p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-dim); line-height: 1.5;
}

.about__text h2 { margin-bottom: 1.2rem; }
.about__text > p { color: var(--ink-dim); font-weight: 300; margin-bottom: 1rem; max-width: 56ch; }

.about__values { list-style: none; margin-top: 1.8rem; display: grid; gap: 1rem; }
.about__values li {
  border-left: 2px solid var(--gold); padding: 0.15rem 0 0.15rem 1.1rem;
}
.about__values strong { display: block; font-family: var(--font-display); font-size: 1.08rem; }
.about__values span { color: var(--ink-faint); font-size: 0.88rem; }

/* ---------- Archive ---------- */
.archive { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.archive__item {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.25s, background 0.25s;
}
.archive__item:hover { transform: translateY(-4px); border-color: rgba(224,168,60,0.35); background: #191926; }
.archive__year {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.24em;
  color: var(--gold); border: 1px solid rgba(224,168,60,0.35);
  padding: 0.22rem 0.6rem; border-radius: 999px;
}
.archive__item h3 { margin: 0.9rem 0 0.35rem; font-size: 1.3rem; }
.archive__item p { color: var(--ink-faint); font-size: 0.86rem; }
.archive__item--cta {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1rem; background: linear-gradient(150deg, rgba(224,168,60,0.1), transparent 60%);
}

/* ---------- Artists ---------- */
.artists { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.4rem; text-align: center; }
.artist__ph {
  aspect-ratio: 1; border-radius: 50%;
  width: min(100%, 150px); margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  color: rgba(245,241,232,0.85);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.artist:hover .artist__ph { transform: scale(1.05); box-shadow: 0 0 0 4px rgba(224,168,60,0.25); }
.artist__ph--1 { background: radial-gradient(circle at 35% 30%, #a3283a, #3a0d17); }
.artist__ph--2 { background: radial-gradient(circle at 35% 30%, #38387f, #12122e); }
.artist__ph--3 { background: radial-gradient(circle at 35% 30%, #1e6363, #072423); }
.artist__ph--4 { background: radial-gradient(circle at 35% 30%, #8a5a18, #33210a); }
.artist__ph--5 { background: radial-gradient(circle at 35% 30%, #5c4370, #201530); }
.artist__ph--6 { background: radial-gradient(circle at 35% 30%, #2c2c38, #101018); }
.artist h3 { font-size: 1.05rem; }
.artist p { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.25rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
}
.gallery__item {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); cursor: pointer;
  transition: transform 0.35s var(--ease);
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; transition: transform 0.6s var(--ease);
}
.gallery__item:hover::before { transform: scale(1.08); }
.g1 { grid-column: span 2; grid-row: span 2; }
.g1::before { background: radial-gradient(ellipse 70% 60% at 30% 20%, rgba(242,193,78,0.35), transparent 60%), linear-gradient(160deg, #46101c, #150409); }
.g2::before { background: radial-gradient(circle at 70% 30%, rgba(56,56,127,0.8), transparent 70%), #0d0d1c; }
.g3::before { background: radial-gradient(ellipse at 50% 100%, rgba(242,193,78,0.4), transparent 65%), #170f05; }
.g4 { grid-row: span 2; }
.g4::before { background: radial-gradient(ellipse at 50% 20%, rgba(30,99,99,0.75), transparent 70%), #051413; }
.g5::before { background: radial-gradient(circle at 25% 70%, rgba(142,31,47,0.7), transparent 65%), #12060b; }
.g6 { grid-column: span 2; }
.g6::before { background: radial-gradient(ellipse 80% 90% at 50% 0%, rgba(92,67,112,0.7), transparent 70%), #0d0714; }

.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2rem 1rem 0.85rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim);
  background: linear-gradient(transparent, rgba(5,5,8,0.85));
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* real uploaded media (auto-loaded from /media) */
.gallery--media { grid-auto-rows: 200px; }
.gallery__item--media { grid-column: auto; grid-row: auto; }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--media img,
.gallery__item--media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s var(--ease);
}
.gallery__item--media:hover img,
.gallery__item--media:hover video { transform: scale(1.06); }
.gallery__item--media::before { display: none; }
.gallery__item--media:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

@media (max-width: 640px) {
  .gallery--media { grid-auto-rows: 150px; }
  .gallery__item--big { grid-column: span 2; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  padding: 2rem; cursor: zoom-out;
  background: rgba(4, 4, 8, 0.92); backdrop-filter: blur(10px);
}
.lightbox.is-open { display: flex; }
.lightbox__media img,
.lightbox__media video {
  max-width: min(92vw, 1200px); max-height: 78vh;
  border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,0.8);
}
.lightbox__caption {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim);
}

.gallery__note {
  text-align: center; margin-top: 1.6rem;
  color: var(--ink-faint); font-size: 0.85rem;
}
.gallery__note code {
  font-family: var(--font-mono); font-size: 0.78rem;
  background: var(--bg-card); border: 1px solid var(--line);
  padding: 0.1rem 0.4rem; border-radius: 6px;
}

/* ---------- Reviews ---------- */
.section--reviews {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(142,31,47,0.14), transparent 70%);
}
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; align-items: start; }
.review {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.8rem 1.7rem;
  transition: transform 0.3s var(--ease), border-color 0.25s;
}
.review:hover { transform: translateY(-4px); border-color: rgba(224,168,60,0.3); }
.review--lift { transform: translateY(-14px); }
.review--lift:hover { transform: translateY(-18px); }
.review__stars { color: var(--gold-bright); letter-spacing: 0.2em; margin-bottom: 0.9rem; }
.review p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.06rem; line-height: 1.55; margin-bottom: 1rem;
}
.review footer { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Booking strip ---------- */
.bookstrip {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 1.5rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}
.bookstrip__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 70% at 50% 100%, rgba(224,168,60,0.16), transparent 70%);
}
.bookstrip__inner { position: relative; }
.bookstrip h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 2rem; }
.bookstrip__actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.bookstrip__partners {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
  font-size: 0.85rem; color: var(--ink-faint);
}
.bookstrip__partners a { color: var(--ink-dim); font-weight: 500; text-decoration: none; }
.bookstrip__partners a:hover { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.footer { padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem) 0; max-width: 1280px; margin: 0 auto; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem;
}
.footer__brand > p { color: var(--ink-faint); font-size: 0.9rem; margin: 1rem 0 1.2rem; max-width: 30ch; }
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim); transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.footer__social a:hover { color: var(--gold-bright); border-color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; }

.footer__col h3 { font-size: 1.02rem; margin-bottom: 0.9rem; }
.footer__col p { color: var(--ink-dim); font-size: 0.9rem; }
.footer__col a { color: var(--ink-dim); text-decoration: none; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__small { color: var(--ink-faint) !important; font-size: 0.8rem !important; margin-top: 0.6rem; }

.newsletter { display: flex; gap: 0.6rem; margin-top: 1rem; }
.newsletter input {
  flex: 1; min-width: 0;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.7rem 1.1rem; color: var(--ink);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.2s;
}
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter input::placeholder { color: var(--ink-faint); }
.newsletter .btn { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
.newsletter__msg { font-size: 0.82rem; margin-top: 0.6rem; color: var(--gold-bright); min-height: 1.2em; }

.footer__bar {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0 1.6rem; border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink-faint);
}

/* ---------- Sub-page shared ---------- */
.page-head {
  text-align: center;
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.page-head__sub {
  color: var(--ink-dim); max-width: 54ch; margin: 0.8rem auto 0; font-weight: 300;
}

.section__more { text-align: center; margin-top: 2.4rem; }
.section__more--left { text-align: left; margin-top: 1.8rem; }

/* ---------- About page: vision/mission cards ---------- */
.vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.vm-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 1.8rem;
  transition: transform 0.3s var(--ease), border-color 0.25s;
}
.vm-card:hover { transform: translateY(-4px); border-color: rgba(224,168,60,0.35); }
.vm-card svg { width: 40px; height: 40px; color: var(--gold); margin-bottom: 1.1rem; }
.vm-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.vm-card p { color: var(--ink-dim); font-size: 0.92rem; font-weight: 300; }

.about-page__story { padding-top: 0; }

/* photo avatars (uploaded via admin) */
.artist__ph--photo { background: var(--bg-card); overflow: hidden; padding: 0; }
.artist__ph--photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}

/* main leaders on the artists page */
.artists--leads { grid-template-columns: repeat(auto-fit, minmax(200px, 240px)); justify-content: center; }
.artist--lead .artist__ph { width: min(100%, 170px); font-size: 2rem; }
.artist--lead h3 { font-size: 1.25rem; }
.artist--lead__note {
  font-family: var(--font-body) !important;
  font-size: 0.84rem !important; letter-spacing: 0 !important;
  text-transform: none !important; color: var(--ink-dim) !important;
  font-weight: 300; margin-top: 0.6rem !important;
  max-width: 32ch; margin-left: auto; margin-right: auto;
}

/* ---------- Artists page ---------- */
.artists-page { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.artist-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.25s;
}
.artist-card:hover { transform: translateY(-4px); border-color: rgba(224,168,60,0.35); }
.artist-card .artist__ph {
  width: 84px; margin: 0; flex-shrink: 0;
  font-size: 1.3rem;
}
.artist-card__body h3 { font-size: 1.25rem; }
.artist-card__role {
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin: 0.25rem 0 0.55rem;
}
.artist-card__note { color: var(--ink-dim); font-size: 0.88rem; font-weight: 300; }

/* ---------- Gallery page ---------- */
.gallery__empty {
  grid-column: 1 / -1; text-align: center; color: var(--ink-faint);
  padding: 4rem 1rem; border: 1px dashed var(--line); border-radius: 16px;
}

/* ---------- Contact page ---------- */
.contact-page { padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)); }
.contact-page__sub { color: var(--ink-dim); max-width: 52ch; margin: 0.8rem auto 0; font-weight: 300; }

.contact-page__grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}

.contact-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.contact-form { display: grid; gap: 1.1rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cfield { display: grid; gap: 0.35rem; }
.cfield label { font-size: 0.8rem; font-weight: 600; color: var(--ink-dim); }
.cfield input, .cfield select, .cfield textarea {
  background: #101019; border: 1px solid var(--line); border-radius: 12px;
  padding: 0.75rem 1rem; color: var(--ink);
  font-family: var(--font-body); font-size: 0.95rem; width: 100%;
  transition: border-color 0.2s;
}
.cfield textarea { resize: vertical; }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus {
  outline: none; border-color: var(--gold);
}
.cfield input::placeholder, .cfield textarea::placeholder { color: var(--ink-faint); }
.cfield select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.cfield select:invalid { color: var(--ink-faint); }
.contact-form__submit { justify-self: start; margin-top: 0.3rem; }

.contact-card__sent { text-align: center; padding: 2.5rem 1rem; display: grid; justify-items: center; gap: 0.6rem; }
.contact-card__sent[hidden] { display: none; }
.contact-card__sent svg { width: 64px; height: 64px; color: var(--gold); margin-bottom: 0.5rem; }
.contact-card__sent h3 { font-size: 1.7rem; }
.contact-card__sent p { color: var(--ink-dim); margin-bottom: 1rem; }

.contact-aside { display: grid; gap: 1.1rem; }
.contact-aside__block {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.3rem 1.4rem;
}
.contact-aside__block h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.contact-aside__block p { color: var(--ink-dim); font-size: 0.9rem; }
.contact-aside__block a { color: var(--ink-dim); text-decoration: none; }
.contact-aside__block a:hover { color: var(--gold-bright); }
.contact-aside__block .footer__social { margin-top: 0.4rem; }
.contact-aside__note { background: linear-gradient(150deg, rgba(224,168,60,0.08), transparent 60%); }

.footer--slim { padding-top: 1rem; }
.footer--slim .footer__bar a { color: var(--ink-faint); text-decoration: none; }
.footer--slim .footer__bar a:hover { color: var(--gold-bright); }

@media (max-width: 860px) {
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 1.6rem; left: 50%; z-index: 300;
  transform: translate(-50%, 120%);
  background: var(--bg-card); border: 1px solid rgba(224,168,60,0.4);
  color: var(--ink); border-radius: 999px;
  padding: 0.8rem 1.5rem; font-size: 0.88rem;
  box-shadow: 0 16px 50px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease); pointer-events: none;
  max-width: min(92vw, 480px); text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .section--split { grid-template-columns: 1fr; }
  .about__visual { max-width: 420px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g1 { grid-column: span 2; }
  .g6 { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .review--lift { transform: none; }
  .review--lift:hover { transform: translateY(-4px); }
  .hero__stats { gap: 1.4rem 2.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__curtain { display: none; }
}
