/* ==========================================================================
   ILLUSTRA 3.0 — Kalakrithi, GITAM
   Design language referenced from sarvam.ai: light neutral canvas, a single
   gradient moment in the hero, editorial serif headlines over a clean grotesque
   sans, fully-rounded pill buttons, and a pinned scroll-stack of cards.
   Storytelling first — visuals carry the sections, copy stays short.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Cinzel+Decorative:wght@400;700;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cream:      #faf6ee;
  --cream-deep: #f2e9d6;
  --paper:      #fffdf8;

  --ink:        #1e1712;
  --ink-soft:   #6b5d4f;
  --ink-faint:  #a89a89;

  --maroon:      #7c2b2c;
  --maroon-deep: #591f20;
  --maroon-tint: #f3e2df;

  --gold:      #c9a24b;
  --gold-soft: #e7d2a0;

  --teal-950: #00181c;
  --teal-800: #00343d;
  --teal-700: #0f5361;

  --line: rgba(30, 23, 18, 0.1);

  --font-serif: 'Fraunces', serif;
  --font-sans: 'Inter', sans-serif;
  --font-logo: 'Cinzel Decorative', serif;

  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-rect: 12px;

  --container: 1180px;
  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }

section { position: relative; }

/* ---------------------------------------------------------------------
   Typography helpers
   --------------------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--maroon-tint);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.heading-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.65;
}

.section-sub.center { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn .arrow { transition: transform 0.25s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-solid {
  background: var(--ink);
  color: var(--paper);
}

.btn-solid:hover {
  background: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 43, 43, 0.25);
}

.btn-outline {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--maroon);
  color: #fffaf0;
  box-shadow: 0 8px 22px rgba(124, 43, 43, 0.35);
}

.btn-accent:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(89, 31, 32, 0.45);
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ---------------------------------------------------------------------
   Navigation
   --------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.nav-side {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-side-left { justify-self: start; }
.nav-side-right { justify-self: end; gap: 22px; }

.nav-side-left img { height: 42px; width: auto; object-fit: contain; }

.nav-studentlife { display: flex; align-items: center; }
.nav-studentlife img { height: 38px; width: auto; object-fit: contain; }

/* logo colour swap: light variants over the dark hero, dark variants once the nav goes opaque */
.logo-dark { display: none; }
.logo-light { display: block; }
.site-nav.scrolled .logo-light { display: none; }
.site-nav.scrolled .logo-dark { display: block; }

.brand-mark {
  display: flex;
  align-items: center;
  justify-self: center;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.logo-font {
  font-family: var(--font-logo);
  font-weight: 700;
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 16px) 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 900px 480px at 50% -10%, rgba(201,162,75,0.35), transparent 60%),
    linear-gradient(180deg, var(--teal-950) 0%, var(--teal-800) 32%, var(--cream-deep) 78%, var(--cream) 100%);
}

/* entry — each element rises and fades in on load, staggered */
@keyframes heroRiseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-flourish,
.hero-kicker,
.hero-title-img,
.hero-tagline,
.hero-ctas,
.hero-dates,
.hero-clubs {
  animation: heroRiseIn 0.9s cubic-bezier(.2,.8,.2,1) both;
}

.hero-flourish  { animation-delay: 0.05s; }
.hero-kicker    { animation-delay: 0.15s; }
.hero-title-img { animation-delay: 0.25s; }
.hero-tagline   { animation-delay: 0.38s; }
.hero-ctas      { animation-delay: 0.5s; }
.hero-dates     { animation-delay: 0.62s; }
.hero-clubs     { animation-delay: 0.72s; }

.hero-flourish {
  width: clamp(110px, 11vw, 200px);
  height: auto;
  opacity: 0.85;
  margin-bottom: clamp(8px, 1.6vh, 18px);
}

.hero-kicker {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: clamp(10px, 2vh, 24px);
}

.hero-title-img {
  width: max(260px, min(54vw, 38vh, 580px));
  height: auto;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 400;
  color: rgba(250, 246, 238, 0.72);
  margin-top: clamp(10px, 1.8vh, 22px);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(16px, 2.6vh, 38px);
}

.hero .btn-outline {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  color: #fffaf0;
}

.hero .btn-outline:hover { border-color: var(--gold); }

/* a pair of ticket-stub date cards instead of one pill — reads more like
   a calendar save-the-date than a label */
.hero-dates {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  margin-top: clamp(18px, 3vh, 40px);
}

.date-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 7vh, 72px);
  height: clamp(56px, 7vh, 72px);
  background: var(--paper);
  border: 1px solid rgba(250, 246, 238, 0.5);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 16, 20, 0.28);
}

.date-day {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vh, 1.7rem);
  color: var(--maroon-deep);
  line-height: 1;
}

.date-month {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.date-join {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-soft);
}

.hero-clubs {
  margin-top: clamp(18px, 3vh, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-clubs-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero-clubs-logo {
  height: clamp(48px, 8vh, 78px);
  width: auto;
  opacity: 0.9;
}

/* ---------------------------------------------------------------------
   You Can Find — scroll stack of full-width highlight cards
   --------------------------------------------------------------------- */
.finds {
  padding: 130px 0 60px;
  background: var(--cream);
}

.stack-wrap {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.stack-card {
  position: sticky;
  top: 90px;
  min-height: 560px;
  margin-bottom: 40px;
  border-radius: var(--radius-rect);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(30, 23, 18, 0.3);
  will-change: transform;
  transform-origin: top center;
}

/* --- Card 01: Sham-e-Mehfil --- */
.mehfil-stack-card {
  min-height: 600px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

/* faint star pattern across the whole card — same 460px tile the arch used
   to carry, now just a quiet texture in the cream region around it */
.mehfil-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--teal-700);
  -webkit-mask-image: url('../logos/sham-e-mehfil/bg-pattern.png');
  mask-image: url('../logos/sham-e-mehfil/bg-pattern.png');
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 460px;
  mask-size: 460px;
  opacity: 0.12;
  z-index: 0;
}

/* the dome carries the arch+niche mask (from layer-1-bg.png's alpha) as a
   group, so anything inside it — the teal fill and the mandala — is clipped
   to that silhouette together and never shows past its edges */
.mehfil-dome {
  position: absolute;
  inset: 0;
  -webkit-mask-image: url('../logos/sham-e-mehfil/layer-1-bg.png');
  mask-image: url('../logos/sham-e-mehfil/layer-1-bg.png');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  filter: drop-shadow(0 18px 26px rgba(0, 24, 28, 0.28));
  z-index: 2;
}

.mehfil-arch-shape {
  position: absolute;
  inset: 0;
  background-color: var(--teal-800);
}

/* the gold medallion sits inside the arch, like a halo behind the
   performers, slowly spinning in place */
.mehfil-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  max-width: 380px;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: mehfil-mandala-spin 70s linear infinite;
}

@keyframes mehfil-mandala-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.mehfil-lamp {
  position: absolute;
  top: -16px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.25));
}

.mehfil-lamp.lamp-outer { width: 84px; }
.mehfil-lamp.lamp-inner { width: 62px; top: -8px; }

.mehfil-lamp.lamp-outer-left { left: 4%; }
.mehfil-lamp.lamp-outer-right { right: 4%; transform: scaleX(-1); }
.mehfil-lamp.lamp-inner-left { left: 19%; }
.mehfil-lamp.lamp-inner-right { right: 19%; transform: scaleX(-1); }

.mehfil-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 32px 0;
}

.mehfil-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--ink);
  text-shadow:
    0 0 18px rgba(250,246,238,0.95),
    0 0 36px rgba(250,246,238,0.85),
    0 2px 4px rgba(250,246,238,0.9);
}

.mehfil-title .accent {
  color: var(--maroon);
  font-style: italic;
}

.mehfil-performers {
  position: relative;
  z-index: 4;
  flex: 1;
  margin-top: auto;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.performer {
  position: relative;
  height: 270px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.35));
  transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity 0.9s ease;
}

.performer.perf-left {
  transform: translateX(-160px);
  transition-delay: 0.05s;
  margin-right: -22px;
  z-index: 1;
}

.performer.perf-center {
  height: 320px;
  transform: translateY(60px) scale(0.92);
  transition-delay: 0.25s;
  z-index: 2;
}

.performer.perf-right {
  transform: translateX(160px);
  transition-delay: 0.45s;
  margin-left: -22px;
  z-index: 1;
}

.mehfil-stack-card.performers-in .perf-left { transform: translateX(0); opacity: 1; }
.mehfil-stack-card.performers-in .perf-center { transform: translateY(0) scale(1); opacity: 1; }
.mehfil-stack-card.performers-in .perf-right { transform: translateX(0); opacity: 1; }

/* --- Card 02: Stalls --- */
.stalls-stack-card {
  background:
    radial-gradient(circle at 75% 20%, rgba(201,162,75,0.16), transparent 55%),
    linear-gradient(155deg, var(--cream-deep) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 56px 32px;
  text-align: center;
  overflow: hidden;
}

.stalls-stack-card::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(124,43,43,0.1);
}

.stalls-stack-card::before {
  content: "";
  position: absolute;
  left: -30px; top: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,75,0.22);
}

.stalls-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stalls-photo {
  width: 100%;
  height: auto;
  max-width: 680px;
  filter: drop-shadow(0 18px 30px rgba(30, 23, 18, 0.18));
}

.stalls-phrase {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  color: var(--ink);
  max-width: 640px;
}

/* --- Card 03: Open Auditorium evening --- */
.evening-stack-card {
  background:
    radial-gradient(ellipse 700px 420px at 50% 32%, rgba(201,162,75,0.3), transparent 65%),
    linear-gradient(180deg, var(--teal-950) 0%, var(--ink) 100%);
  border: 1px solid rgba(250, 246, 238, 0.08);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 56px 32px;
  text-align: center;
  overflow: hidden;
}

.evening-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evening-photo {
  width: 100%;
  height: auto;
  max-width: 680px;
  filter: drop-shadow(0 0 34px rgba(201, 162, 75, 0.28));
}

.evening-phrase {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  color: #fffaf0;
  max-width: 640px;
}

/* ---------------------------------------------------------------------
   Gallery — auto-scrolling marquee
   --------------------------------------------------------------------- */
.gallery { padding: 110px 0; background: var(--cream); overflow: hidden; }

.gallery .container { margin-bottom: 50px; }

.marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-row + .marquee-row { margin-top: 14px; }

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee-left 38s linear infinite;
}

.marquee-track.track-b { animation-name: marquee-right; }

.marquee-row:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  width: 260px;
  height: 170px;
  flex: none;
}

.gallery-tile .yr {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.gallery-note {
  margin: 40px auto 0;
  max-width: var(--container);
  padding: 0 32px;
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------------------------------------------------------------------
   Closing — full-bleed Open Auditorium photo section
   --------------------------------------------------------------------- */
.closing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--teal-950);
}

.closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  opacity: 0.92;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.closing:hover .closing-bg { transform: scale(1.06); }

.closing-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      var(--cream) 0%,
      var(--cream) 24%,
      rgba(250,246,238,0.8) 34%,
      rgba(0,24,28,0.05) 46%,
      rgba(0,24,28,0.2) 68%,
      rgba(0,16,20,0.72) 100%);
}

.closing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-heading {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.3;
  color: var(--ink);
  text-shadow: 0 4px 30px rgba(250,246,238,0.9);
}

/* a solid chip instead of a text-shadow halo — the photo underneath is too
   mixed in tone (sky, stands, shadow) for a halo alone to stay legible */
.closing-meta {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}

.closing-inner .btn-solid { margin-top: 34px; }

.site-footer {
  position: relative;
  z-index: 2;
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(250,246,238,0.7);
}

.footer-grid .socials { display: flex; gap: 20px; }
.footer-grid .socials a:hover { color: var(--gold); }

.footer-credit {
  font-size: 0.72rem;
  color: rgba(250, 246, 238, 0.5);
}

.footer-credit-name {
  color: var(--gold-soft);
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-credit:hover .footer-credit-name { color: var(--gold); }

/* ---------------------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .performer { height: 220px; }
  .performer.perf-center { height: 290px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .stack-wrap { padding: 0 20px; }

  .finds { padding: 90px 0 40px; }
  .stack-card { min-height: 460px; margin-bottom: 26px; top: 76px; }
  .mehfil-stack-card { min-height: 520px; }

  /* the source silhouette is landscape (~1.11:1); on a tall narrow card,
     fitting it to just the card's width (mask-size 100% 100%) makes a short,
     shallow dome that sits low in the card. Overscan it — wider than the
     card, cropped by the card's overflow:hidden — so it reads as a taller
     dome that reaches further up, closer to the desktop proportions.
     The mandala lives inside this same masked box (see .mehfil-dome above)
     so it's automatically clipped to the dome and never shows past its
     edges into the plain pattern area — no separate mobile rule needed. */
  .mehfil-dome {
    top: auto;
    bottom: 0;
    left: -16%;
    right: -16%;
    height: auto;
    aspect-ratio: 2130 / 1921;
  }

  .mehfil-content { padding: 96px 16px 0; }
  .mehfil-title { font-size: clamp(1.6rem, 7.5vw, 2.3rem); }
  .mehfil-lamp.lamp-outer { width: 34px; top: -10px; }
  .mehfil-lamp.lamp-inner { width: 26px; top: -6px; }
  .mehfil-lamp.lamp-outer-left { left: 2%; }
  .mehfil-lamp.lamp-outer-right { right: 2%; }
  .mehfil-lamp.lamp-inner-left { left: 15%; }
  .mehfil-lamp.lamp-inner-right { right: 15%; }
  .mehfil-performers { min-height: 170px; }
  .performer { height: 150px; }
  .performer.perf-left { margin-right: -12px; }
  .performer.perf-right { margin-left: -12px; }
  .performer.perf-center { height: 205px; }
  .stalls-stack-card { padding: 40px 24px; min-height: 460px; gap: 18px; }
  .stalls-phrase { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .evening-stack-card { padding: 40px 24px; min-height: 460px; gap: 18px; }
  .evening-phrase { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  .gallery { padding: 70px 0; }
  .gallery-tile { width: 200px; height: 130px; }
  .closing-inner { padding: 80px 24px 50px; }
  .closing { min-height: 80vh; }
  .heading-center { margin-bottom: 40px; }

  .nav-side-left img { height: 30px; }
  .nav-studentlife img { height: 28px; }
  .brand-logo { height: 58px; }
}
