:root {
  --navy-950: #030b1c;
  --navy-900: #06142d;
  --navy-850: #081a38;
  --navy-800: #0b2246;
  --cream: #f7f1e4;
  --cream-muted: #b9c3d6;
  --cream-dim: #7f8da8;
  --gold: #d7b567;
  --gold-light: #f0d899;
  --red: #bf2328;
  --line: rgba(187, 203, 230, 0.17);
  --gold-line: rgba(215, 181, 103, 0.42);
  --display: "Cormorant Garamond", Georgia, serif;
  --ceremonial: "Marcellus", Georgia, serif;
  --body: "Satoshi", "Avenir Next", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: 76rem;
  --header-height: 4.35rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--navy-900);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--navy-950); background: var(--gold-light); }

.page-shell { width: min(calc(100% - 2.5rem), var(--shell)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 500;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--navy-950);
  background: var(--cream);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reveal { opacity: 1; transform: none; }
.star-trail { position: fixed; z-index: 400; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(3, 11, 28, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(0.9rem);
}

.site-brand { display: flex; align-items: center; min-height: 2.75rem; }
.site-brand img { width: 7.7rem; height: 3rem; object-fit: contain; object-position: left center; }
.desktop-nav,
.header-register { display: none; }

.menu-button {
  position: relative;
  justify-self: end;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-button span { position: absolute; left: 0.7rem; width: 1.25rem; height: 1px; background: var(--cream); transition: top 250ms var(--ease), transform 250ms var(--ease); }
.menu-button span:first-child { top: 1.08rem; }
.menu-button span:last-child { top: 1.56rem; }
.site-header.is-open .menu-button span:first-child { top: 1.32rem; transform: rotate(45deg); }
.site-header.is-open .menu-button span:last-child { top: 1.32rem; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: -1;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.25rem;
  background: var(--navy-950);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  transition: opacity 220ms ease, visibility 220ms ease, transform 280ms var(--ease);
}
.site-header.is-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { width: 100%; min-height: 3.75rem; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.55rem; }
.mobile-nav .mobile-register { color: var(--gold-light); }

/* Original full-stage hero — artwork is intentionally unfiltered */
.hero {
  position: relative;
  min-height: max(44rem, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 0 3.25rem;
  background: #140507;
  isolation: isolate;
}

.hero-art,
.hero-shade { position: absolute; inset: 0; }
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(4rem, 10vw, 8rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 20, 45, 0), var(--navy-900));
}
.hero-art { z-index: -2; background: url("../assets/hero-krishna.png") 58% center / cover no-repeat; filter: none; }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(8, 3, 5, 0.97) 0%, rgba(8, 3, 5, 0.82) 34%, rgba(8, 3, 5, 0.24) 69%, rgba(8, 3, 5, 0.08) 100%),
    linear-gradient(90deg, rgba(8, 3, 5, 0.35), transparent 72%);
}
.hero-content { position: relative; z-index: 1; }
.festival-signature { width: 6.2rem; height: 3rem; margin-bottom: 0.4rem; object-fit: contain; object-position: left center; }
.hero .event-logo { width: min(22rem, 94%); margin-left: -0.85rem; filter: drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.26)); }
.hero-description { max-width: 31rem; margin: 0.8rem 0 0; color: rgba(247, 241, 228, 0.78); font-size: 0.94rem; line-height: 1.55; }
.event-line { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.7rem; margin-top: 1.3rem; color: var(--cream); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.event-line i { width: 0.23rem; height: 0.23rem; border-radius: 50%; background: var(--gold); }
.hero .hero-actions { margin-top: 1.5rem; }
.hero .countdown { margin-top: 1.65rem; border-color: rgba(247, 241, 228, 0.18); }
.hero .countdown div { border-color: rgba(247, 241, 228, 0.18); }
.hero .countdown span { color: rgba(247, 241, 228, 0.56); }
.hero-note { z-index: 1; display: none; }

/* Masthead */
.masthead { padding-top: calc(var(--header-height) + 2.5rem); background: var(--navy-900); }
.masthead-copy { display: grid; gap: 2.5rem; padding-bottom: 3.25rem; }
.temple-line { margin: 0 0 1rem; color: var(--cream-muted); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.event-logo { width: min(23rem, 96%); margin-left: -1rem; }
.masthead h1 { margin: 1rem 0 0; font-family: var(--ceremonial); font-size: clamp(1.05rem, 4.6vw, 1.4rem); font-weight: 400; line-height: 1.3; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-subtitle { margin: 0.35rem 0 0; color: var(--gold-light); font-family: var(--display); font-size: clamp(1.45rem, 7vw, 2rem); font-style: italic; line-height: 1.1; }
.hero-intro { max-width: 34rem; margin: 0; color: var(--cream-muted); font-size: 1rem; }

.event-date { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.event-date > div { display: flex; align-items: center; gap: 0.6rem; padding-right: 1rem; border-right: 1px solid var(--gold-line); }
.event-date strong { color: var(--gold-light); font-family: var(--display); font-size: 3.2rem; line-height: 0.9; font-variant-numeric: tabular-nums; }
.event-date span { font-size: 0.63rem; font-weight: 700; line-height: 1.35; letter-spacing: 0.1em; text-transform: uppercase; }
.event-date > p { margin: 0; font-size: 0.75rem; font-weight: 700; line-height: 1.6; letter-spacing: 0.08em; text-transform: uppercase; }
.event-date small { color: var(--cream-dim); font-size: 0.62rem; font-weight: 600; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.85rem 1.25rem; margin-top: 1.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background 200ms ease;
}
.button:hover { transform: translateY(-0.15rem); }
.button-gold { color: var(--navy-950); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.button-red { color: var(--cream); background: var(--red); }
.button-red:hover { background: #d22b31; }
.text-link { display: inline-flex; align-items: center; gap: 0.7rem; min-height: 3rem; padding: 0.2rem 0; border-bottom: 1px solid var(--line); color: var(--cream); font-size: 0.77rem; font-weight: 600; }
.text-link:hover { border-bottom-color: var(--gold); }
.play { width: 0; height: 0; border-top: 0.32rem solid transparent; border-bottom: 0.32rem solid transparent; border-left: 0.52rem solid currentColor; }

.countdown { display: flex; width: 100%; max-width: 29rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.countdown div { flex: 1; padding-inline: 0.6rem; border-right: 1px solid var(--line); }
.countdown div:first-child { padding-left: 0; }
.countdown div:last-child { border-right: 0; }
.countdown strong { display: block; font-family: var(--display); font-size: 1.55rem; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown span { display: block; margin-top: 0.2rem; color: var(--cream-dim); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }

.stage-picture { position: relative; width: 100%; height: min(70vh, 39rem); margin: 0; overflow: hidden; background: #140507; }
.stage-picture img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; filter: none; }
.stage-picture figcaption { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1rem; color: rgba(247, 241, 228, 0.68); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

/* About */
.about { position: relative; padding: 4rem 0 2.25rem; }
.about-heading { display: grid; gap: 2rem; margin-top: 1.15rem; }
.about h2,
.artist h2,
.schedule h2,
.archanam h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 13vw, 4.8rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.about-heading > div { color: var(--cream-muted); }
.about-heading p { max-width: 36rem; margin: 0 0 1rem; }
.about-heading p:last-child { margin-bottom: 0; }
.about-heading em { color: var(--gold-light); font-family: var(--display); font-size: 1.12em; }
.about-heading .about-handoff {
  display: grid;
  gap: 0.35rem;
  max-width: 36rem;
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--gold-line);
}
.about-handoff strong { color: var(--gold-light); font-family: var(--display); font-size: clamp(1.45rem, 6vw, 1.9rem); font-weight: 600; line-height: 1.05; }
.about-handoff span { color: var(--cream-dim); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* Four programmes — compact handoff into full-bleed visual chapters */
.programmes { padding-top: 0; background: var(--navy-900); }
.programmes-heading {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--gold-line);
}
.programmes-heading h2 { max-width: 14ch; margin: 0; font-family: var(--display); font-size: clamp(2.45rem, 10vw, 3.8rem); font-weight: 600; line-height: 0.94; letter-spacing: -0.04em; }
.programmes-heading > p:last-child { max-width: 32rem; margin: 0.35rem 0 0; color: var(--cream-muted); }
.programme-rows { border-top: 1px solid var(--line); }
.programme-row.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  width: 100%;
  min-height: clamp(35rem, 80svh, 46rem);
  margin: 0;
  padding: 8rem 1.25rem 2.25rem;
  overflow: hidden;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line);
}
.programme-image { position: absolute; z-index: 0; inset: 0; width: 100%; max-height: none; overflow: hidden; background: var(--navy-950); }
.programme-image img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center 56%; filter: none; }
.programme-row:nth-child(1) .programme-image img { object-position: center 58%; }
.programme-row:nth-child(2) .programme-image img { object-position: center 48%; }
.programme-row:nth-child(3) .programme-image img { object-position: center 52%; }
.programme-row:nth-child(4) .programme-image img { object-position: 58% center; }
.programme-row::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 11, 28, 0.97) 0%, rgba(3, 11, 28, 0.9) 27%, rgba(3, 11, 28, 0.38) 61%, rgba(3, 11, 28, 0.04) 100%);
}
.programme-number { margin: 0 0 0.8rem; color: var(--gold); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.programme-copy { position: relative; z-index: 2; align-self: auto; max-width: 34rem; }
.programme-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 11vw, 4.3rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.035em; }
.programme-copy > p:not(.programme-number) { max-width: 36rem; margin: 1.2rem 0 0; color: color-mix(in srgb, var(--cream) 84%, var(--gold-light)); }
.programme-copy > a { display: inline-flex; align-items: center; gap: 1rem; min-height: 3rem; margin-top: 1.8rem; padding-bottom: 0.2rem; border-bottom: 1px solid var(--gold-line); color: var(--gold-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.programme-copy > a span { transition: transform 240ms var(--ease); }
.programme-copy > a:hover span { transform: translate(0.2rem, -0.2rem); }

/* Artist */
.artist { padding-block: 5rem; background: var(--navy-850); border-block: 1px solid var(--line); }
.artist-inner { display: grid; gap: 3.5rem; align-items: center; }
.artist-image { width: min(100%, 30rem); margin-inline: auto; padding: 0.65rem; border: 1px solid var(--gold-line); }
.artist-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: none; }
.artist-copy blockquote { max-width: 19ch; margin: 0 0 3rem; color: var(--cream-muted); font-family: var(--display); font-size: clamp(1.5rem, 7vw, 2.3rem); font-style: italic; line-height: 1.18; }
.artist-intro { margin: 0 0 0.5rem; color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.artist h2 { color: var(--gold-light); font-size: clamp(4rem, 19vw, 7rem); line-height: 0.77; }
.artist-role { margin: 1.5rem 0 2rem; color: var(--cream-dim); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* Schedule */
.schedule { padding-block: 5.5rem; background: var(--navy-900); }
.schedule-heading { display: grid; gap: 1.5rem; }
.schedule-heading > p { max-width: 34rem; margin: 0; color: var(--cream-muted); }
.schedule-heading h2 { margin-top: 1rem; }
.schedule-list { margin: 3rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.schedule-list li { position: relative; display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; min-height: 7.2rem; align-items: start; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.schedule-list time { color: var(--gold-light); font-family: var(--display); font-size: 1.5rem; line-height: 1.1; font-variant-numeric: tabular-nums; }
.schedule-list time small { display: block; margin-top: 0.2rem; color: var(--gold); font-family: var(--body); font-size: 0.54rem; font-weight: 700; letter-spacing: 0.08em; }
.schedule-list h3 { margin: 0; font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.schedule-list p { margin: 0.35rem 0 0; color: var(--cream-dim); font-size: 0.82rem; }
.schedule-list li > span { grid-column: 2; color: var(--cream-muted); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.schedule-list .schedule-highlight::before { content: ""; position: absolute; left: -0.7rem; top: -1px; bottom: -1px; width: 0.16rem; background: var(--gold); }
.schedule-list .schedule-highlight h3 { color: var(--gold-light); }
.schedule-total { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gold-line); color: var(--cream-muted); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.schedule-total strong { color: var(--gold-light); }

/* Archanam */
.archanam { padding-block: 5.5rem; border-top: 1px solid var(--line); }
.archanam-content { display: grid; gap: 2rem; margin-top: 1.1rem; align-items: end; }
.archanam-content > p { max-width: 35rem; margin: 0; color: var(--cream-muted); }
.archanam-tap { display: inline-flex; align-items: center; gap: 1rem; min-height: 3rem; margin-top: 1.4rem; padding-bottom: 0.25rem; border-bottom: 1px solid var(--gold-line); color: var(--gold-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.archanam-tap span { transition: transform 240ms var(--ease); }
.archanam-tap:hover span { transform: translate(0.2rem, -0.2rem); }

/* Closing — upcoming YouTube event */
.closing {
  padding: 3rem 1.25rem 4rem;
  background: var(--navy-850);
  border-top: 1px solid var(--line);
}
.youtube-event-shell { width: min(100%, var(--shell)); margin-inline: auto; overflow: hidden; color: var(--cream); background: var(--navy-900); border: 1px solid var(--line); border-radius: 0.75rem; box-shadow: 0 1.5rem 3.5rem rgba(1, 7, 20, 0.3); }
.youtube-event-bar { min-height: 3.65rem; display: flex; align-items: center; justify-content: flex-start; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); background: var(--navy-950); }
.youtube-wordmark { display: inline-flex; align-items: center; gap: 0.42rem; }
.youtube-wordmark > i { width: 1.85rem; height: 1.3rem; display: grid; place-items: center; border-radius: 0.35rem; background: #ff0033; }
.youtube-wordmark > i b { width: 0; height: 0; margin-left: 0.1rem; border-top: 0.25rem solid transparent; border-bottom: 0.25rem solid transparent; border-left: 0.42rem solid white; }
.youtube-wordmark > strong { color: var(--cream); font-family: var(--body); font-size: 1rem; font-weight: 700; letter-spacing: -0.04em; }
.youtube-event-grid { display: block; background: var(--navy-900); }
.youtube-card { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #090a0d; border-bottom: 1px solid var(--line); }
.youtube-card::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(0deg, rgba(2, 4, 10, 0.88), transparent); pointer-events: none; }
.youtube-card > img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: none; transition: transform 700ms var(--ease); }
.youtube-card:hover > img { transform: scale(1.025); }
.youtube-live-badge { position: absolute; z-index: 2; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.45rem; min-height: 1.85rem; padding: 0.3rem 0.65rem; border-radius: 0.25rem; color: #fff8f3; background: #c52228; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.youtube-live-badge i { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.14); }
.youtube-play-button { position: absolute; z-index: 2; top: 50%; left: 50%; width: clamp(3.6rem, 13vw, 4.8rem); aspect-ratio: 1.42 / 1; display: grid; place-items: center; border-radius: 0.85rem; background: #d21d25; box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.36); transform: translate(-50%, -50%); transition: transform 240ms var(--ease), background 180ms ease; }
.youtube-card:hover .youtube-play-button { background: #ed1f29; transform: translate(-50%, -50%) scale(1.06); }
.youtube-play-button i { width: 0; height: 0; margin-left: 0.22rem; border-top: 0.46rem solid transparent; border-bottom: 0.46rem solid transparent; border-left: 0.72rem solid #fff; }
.youtube-thumbnail-copy { position: absolute; z-index: 2; left: 1rem; right: 1rem; bottom: 1rem; display: grid; color: var(--cream); }
.youtube-thumbnail-copy small { font-size: 0.54rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.youtube-thumbnail-copy strong { font-family: var(--display); font-size: clamp(1.55rem, 6vw, 2.3rem); font-weight: 600; line-height: 1; }
.closing-copy { width: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 1.75rem 1.25rem 2.5rem; background: var(--navy-900); }
.closing .closing-copy h2 { max-width: 24ch; margin: 0; color: var(--cream); font-family: var(--body); font-size: clamp(1.45rem, 5vw, 2rem); font-weight: 650; line-height: 1.1; letter-spacing: -0.04em; }
.youtube-detail-top { width: 100%; display: grid; gap: 1.25rem; }
.youtube-watch-action { min-height: 2.75rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; align-self: start; padding: 0.65rem 1.1rem; border-radius: 1.4rem; color: #fff; background: #d51f26; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background 180ms ease, transform 180ms var(--ease); }
.youtube-watch-action:hover { background: #ec1f29; transform: translateY(-0.1rem); }
.youtube-location { margin: 0.45rem 0 0; color: var(--gold-light); font-family: var(--display); font-size: clamp(1.1rem, 3vw, 1.35rem); font-style: italic; line-height: 1.2; }
.youtube-channel { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.youtube-channel > img { width: 3rem; height: 3rem; padding: 0.25rem; object-fit: contain; border-radius: 50%; background: var(--cream); }
.youtube-channel strong,
.youtube-channel span { display: block; }
.youtube-channel strong { font-size: 0.82rem; font-weight: 700; }
.youtube-channel span { margin-top: 0.1rem; color: var(--cream-dim); font-size: 0.7rem; }
.closing-copy .youtube-event-note { max-width: 38rem; margin: 1.2rem 0 1.5rem; color: var(--cream-muted); font-size: 0.9rem; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Footer */
.site-footer { padding: 4rem 0 1.5rem; background: var(--navy-950); border-top: 1px solid var(--line); }
.footer-inner { display: grid; gap: 2.5rem; }
.footer-inner img { width: 10rem; margin-left: -0.55rem; }
.footer-inner p { max-width: 29rem; margin: 1rem 0 0; color: var(--cream-dim); font-size: 0.84rem; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.footer-inner nav a { min-height: 2.75rem; display: flex; align-items: center; color: var(--cream-muted); font-size: 0.76rem; }
.footer-inner nav a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--cream-dim); font-size: 0.61rem; letter-spacing: 0.1em; text-transform: uppercase; }

@media (min-width: 48rem) {
  .page-shell { width: min(calc(100% - 4rem), var(--shell)); }
  .site-header { padding-inline: 2rem; }
  .hero { align-items: center; padding-block: calc(var(--header-height) + 3rem) 5rem; }
  .hero-art { background-position: center center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 3, 5, 0.96) 0%, rgba(8, 3, 5, 0.8) 28%, rgba(8, 3, 5, 0.25) 53%, rgba(8, 3, 5, 0.02) 70%),
      linear-gradient(0deg, rgba(8, 3, 5, 0.7), transparent 32%);
  }
  .hero-content { margin-inline: max(0px, calc((100vw - var(--shell)) / 2)); }
  .festival-signature { width: 8rem; height: 4rem; margin-bottom: 1.4rem; }
  .hero .event-logo { width: clamp(22rem, 34vw, 31rem); margin-left: -1.4rem; }
  .hero-description { margin-top: 1rem; font-size: 1rem; }
  .event-line { margin-top: 1.8rem; font-size: 0.75rem; }
  .hero .hero-actions { margin-top: 2rem; }
  .hero .countdown { margin-top: 2.5rem; }
  .hero-note { position: absolute; right: 2rem; bottom: 2rem; display: block; margin: 0; color: rgba(247, 241, 228, 0.55); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; writing-mode: vertical-rl; }
  .masthead { padding-top: calc(var(--header-height) + 4rem); }
  .masthead-copy { grid-template-columns: 1fr 0.9fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; padding-bottom: 4.5rem; }
  .event-logo { width: min(29rem, 100%); }
  .stage-picture { width: min(calc(100% - 4rem), 86rem); height: auto; aspect-ratio: 16 / 7; margin-inline: auto; }
  .stage-picture figcaption { left: 2rem; bottom: 1.4rem; }
  .about { padding: 6rem 0 3rem; }
  .about-heading { grid-template-columns: 1.15fr 0.85fr; gap: 5rem; align-items: start; }
  .programmes-heading { grid-template-columns: 0.55fr 1.15fr 0.8fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; padding: 2rem 0 3.25rem; }
  .programmes-heading .section-label { align-self: start; padding-top: 0.4rem; }
  .programmes-heading h2 { font-size: clamp(3.2rem, 5vw, 4.7rem); }
  .programmes-heading > p:last-child { margin: 0; }
  .programme-row.page-shell {
    align-items: center;
    min-height: clamp(44rem, 86svh, 64rem);
    padding: clamp(5rem, 9vh, 8rem) max(2rem, calc((100vw - var(--shell)) / 2));
  }
  .programme-copy { width: min(35rem, 43vw); max-width: none; }
  .programme-row:nth-child(odd)::before {
    background: linear-gradient(90deg, rgba(3, 11, 28, 0.95) 0%, rgba(3, 11, 28, 0.82) 29%, rgba(3, 11, 28, 0.36) 52%, rgba(3, 11, 28, 0.04) 72%);
  }
  .programme-row:nth-child(even) { justify-content: flex-end; }
  .programme-row:nth-child(even)::before {
    background: linear-gradient(270deg, rgba(3, 11, 28, 0.95) 0%, rgba(3, 11, 28, 0.82) 29%, rgba(3, 11, 28, 0.36) 52%, rgba(3, 11, 28, 0.04) 72%);
  }
  .artist { padding-block: 7rem; }
  .artist-inner { grid-template-columns: 0.75fr 1.25fr; gap: clamp(4rem, 9vw, 9rem); }
  .schedule { padding-block: 8rem; }
  .schedule-heading { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: end; }
  .schedule-list { margin-top: 5rem; }
  .schedule-list li { grid-template-columns: 7rem 1fr auto; gap: 2rem; min-height: 6.5rem; align-items: center; }
  .schedule-list time { font-size: 1.8rem; }
  .schedule-list h3 { font-size: 1.8rem; }
  .schedule-list li > span { grid-column: auto; }
  .archanam { padding-block: 8rem; }
  .archanam-content { grid-template-columns: 1.2fr 0.8fr; gap: 5rem; }
  .closing { padding: 5rem 2rem 6rem; }
  .youtube-event-bar { padding-inline: 1.5rem; }
  .closing-copy { padding: 2rem 2.5rem 2.75rem; }
  .youtube-detail-top { grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: start; }
  .closing .closing-copy h2 { font-size: clamp(1.85rem, 2.5vw, 2.35rem); }
  .footer-inner { grid-template-columns: 1fr auto; align-items: start; }
  .footer-inner nav { justify-content: flex-end; }
}

@media (min-width: 64rem) {
  :root { --header-height: 5rem; }
  .site-header { grid-template-columns: auto 1fr auto; padding-inline: clamp(2rem, 5vw, 5rem); }
  .site-brand img { width: 9rem; height: 3.4rem; }
  .desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 3vw, 3.25rem); }
  .desktop-nav a { min-height: 2.75rem; display: flex; align-items: center; color: var(--cream-muted); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
  .desktop-nav a:hover { color: var(--gold-light); }
  .header-register { display: inline-flex; align-items: center; justify-content: center; min-height: 2.75rem; padding: 0.6rem 1rem; border: 1px solid var(--gold-line); color: var(--gold-light); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
  .header-register:hover { color: var(--navy-950); background: var(--gold); }
  .menu-button,
  .mobile-nav { display: none; }
  .masthead-copy { padding-top: 2rem; }
  .programme-copy h3 { font-size: clamp(3.8rem, 5.6vw, 5.8rem); }
  .about h2,
  .schedule h2,
  .archanam h2 { font-size: clamp(4.5rem, 7vw, 6.8rem); }
  .artist h2 { font-size: clamp(6rem, 9vw, 9rem); }
}

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