/* =========================================================
   StartupOnam — Design tokens
   Locked to the Startup Onam website branding guidelines:
   60% deep black - 25% white - 15% gold.
   Gold is an accent, never a dominant background.
   ========================================================= */
:root {
  /* --- Brand palette, straight from the guidelines --- */
  --black:       #0b0b0b;   /* Primary Background - Deep Black   */
  --charcoal:    #151515;   /* Dark Surface      - Charcoal      */
  --charcoal-2:  #1c1c1c;   /* Raised surface (alt sections)     */
  --border-grey: #292929;   /* Border            - Dark Grey     */
  --white-pure:  #ffffff;   /* Primary Text      - Pure White    */
  --ivory:       #fffdf5;   /* Soft White        - Ivory White   */
  --warm-grey:   #b8b8b8;   /* Muted Text        - Warm Grey     */
  --onam-gold:   #f4c900;   /* Primary Accent    - Onam Gold     */
  --warm-gold:   #e8b900;   /* Secondary Gold    - Warm Gold     */

  /* --- Role tokens, re-pointed onto the palette above ---------------
     The whole stylesheet is written against these names, so repointing
     them here turns the site over in one place. Two of them carry a
     deliberate double meaning that the rest of the sheet relies on:
       --maroon-950 = the deep ground AND the ink used on gold
       --cream      = the soft white used for text on dark grounds     */
  --maroon-950: var(--black);
  --maroon-900: #111111;
  --maroon-800: #1a1a1a;
  --maroon:     var(--onam-gold);
  --red:        var(--warm-gold);
  --red-light:  #d8ae10;
  --orange:     var(--warm-gold);
  --gold:       var(--onam-gold);
  --gold-light: #ffd83d;
  --gold-dark:  var(--warm-gold);
  --yellow:     var(--onam-gold);
  --green:      #9a9a9a;
  --green-light: #b8b8b8;
  --cream:      var(--ivory);
  --cream-soft: var(--charcoal);
  --cream-deep: var(--charcoal-2);
  --line:       var(--border-grey);
  --ink:        var(--white-pure);
  --ink-soft:   var(--warm-grey);
  --white:      var(--charcoal);

  /* --- Semantic --- */
  --bg:        var(--black);
  --heading:   var(--white-pure);
  --on-accent: var(--black);

  --font-display: 'Baloo Chettan 2', 'Trebuchet MS', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.7);
  --container-w: 1180px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
/* Sprite icons are written as a bare <svg><use/></svg> with no intrinsic size.
   Without a default they fall back to the SVG spec's 300x150, which blows the
   layout apart if a component's sizing rule is ever missing. Components set
   their own width/height (class specificity beats this); full-bleed
   illustrations opt out via .scene-art / .leaf-art below. */
svg { max-width: 100%; display: block; width: 20px; height: 20px; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--heading);
}
p { line-height: 1.7; margin: 0 0 1em; color: var(--ink-soft); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0;
}
::selection { background: var(--onam-gold); color: var(--black); }

/* =========================================================
   Layout utilities
   ========================================================= */
.container { max-width: var(--container-w); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; position: relative; }
.section--tight { padding-block: 56px; }
.section--maroon { background: var(--maroon-950); color: var(--cream); }
.section--maroon h2, .section--maroon h3 { color: var(--cream); }
.section--maroon p { color: rgba(255, 253, 245, 0.75); }
.section--cream-deep { background: var(--cream-deep); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--gold-dark); display: inline-block;
}
.section--maroon .eyebrow { color: var(--gold-light); }
.section--maroon .eyebrow::before { background: var(--gold-light); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: .3em; }
.section-head p { font-size: 1.08rem; }
.section-head__emblem { width: 80px; height: auto; margin: 0 auto 16px; display: block; filter: drop-shadow(0 10px 18px rgba(0,0,0,.16)); }

/* =========================================================
   Buttons & badges
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold); color: var(--maroon-950); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-light); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn--outline:hover { background: var(--maroon); color: var(--on-accent); }
.btn--light { border-color: rgba(255, 253, 245,.5); color: var(--cream); background: rgba(255, 253, 245,.06); }
.btn--light:hover { background: var(--cream); color: var(--maroon-950); border-color: var(--cream); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px; font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; background: var(--cream-deep); color: var(--maroon);
}
.badge--traditional, .badge--dance { background: rgba(244,201,0,.14); color: var(--onam-gold); }
.badge--fusion, .badge--competition { background: rgba(232,185,0,.16); color: var(--warm-gold); }
.badge--indoor, .badge--showcase { background: rgba(255,255,255,.10); color: var(--warm-grey); }
.badge--music { background: rgba(255,255,255,.10); color: var(--ivory); }
.badge--gold { background: var(--gold); color: var(--maroon-950); }

/* =========================================================
   Navbar
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11, 11, 11, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-grey);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand-mark { width: 40px; height: 40px; color: var(--maroon); flex-shrink: 0; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--heading); }
.nav__brand-sub { font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); }
.nav__links {
  display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nav__link {
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .93rem; color: var(--ink);
  transition: background .18s ease, color .18s ease;
}
.nav__link:hover { background: rgba(255,255,255,.09); }
.nav__link.is-active { background: var(--maroon); color: var(--on-accent); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; background: transparent; border: none; padding: 8px; width: 42px; height: 42px;
  border-radius: 10px; align-items: center; justify-content: center;
}
.nav__toggle:hover { background: rgba(255,255,255,.09); }
.nav__toggle-bar { width: 22px; height: 2px; background: var(--white-pure); position: relative; transition: background .2s; }
.nav__toggle-bar::before, .nav__toggle-bar::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--white-pure); transition: transform .2s ease, top .2s ease;
}
.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after { top: 7px; }
.nav.is-open .nav__toggle-bar { background: transparent; }
.nav.is-open .nav__toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle-bar::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 72px 16px auto 16px; flex-direction: column; align-items: stretch;
    background: var(--cream-soft); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .22s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { display: block; text-align: center; padding: 14px; }
  .nav__toggle { display: inline-flex; }
  .nav__actions .btn span.btn-full-label { display: none; }
}

/* =========================================================
   Footer
   ========================================================= */
.garland-divider {
  height: 14px;
  background-image: radial-gradient(circle, var(--gold) 0 4px, transparent 4.5px),
                     radial-gradient(circle, var(--red) 0 4px, transparent 4.5px);
  background-size: 28px 14px, 28px 14px;
  background-position: 0 0, 14px 0;
  background-repeat: repeat-x;
  opacity: .85;
}
.site-footer { background: var(--charcoal); color: var(--ink-soft); padding-block: 64px 28px; border-top: 1px solid var(--border-grey); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand-mark { width: 34px; height: 34px; color: var(--maroon); }
.footer__brand-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--heading); font-weight: 700; }
.site-footer p { color: var(--ink-soft); font-size: .93rem; }
.footer__heading { color: var(--heading); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: .93rem; color: var(--ink-soft); transition: color .15s; }
.footer__links a:hover { color: var(--maroon); }
.footer__contact li { display: flex; gap: 10px; font-size: .9rem; margin-bottom: 12px; color: var(--ink-soft); }
.footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--maroon); margin-top: 2px; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-grey); color: var(--heading);
  display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s, color .15s;
}
.social-icon:hover { background: var(--maroon); border-color: var(--maroon); color: var(--on-accent); }
.social-icon svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid var(--border-grey); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: var(--ink-soft);
}
.footer__credit { display: flex; justify-content: center; margin-top: 24px; }
.footer__credit-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--charcoal); border: 1px solid var(--border-grey);
  padding: 8px 20px 8px 10px; border-radius: 999px; font-size: .82rem; color: var(--ink-soft);
  box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
}
.footer__credit-badge:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.footer__credit-badge strong { color: var(--heading); }
.footer__credit-logo { height: 22px; width: auto; display: block; border-radius: 5px; }
.footer__heart { color: #ef5b4e; display: inline-block; animation: heartbeat 1.4s ease-in-out infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 25% { transform: scale(1.25); } 40% { transform: scale(1); } }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden; color: var(--cream);
  background: radial-gradient(ellipse at 20% -10%, #1f1a05 0%, var(--black) 58%, var(--black) 100%);
  padding-top: 88px;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; pointer-events: none; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0) 0%, rgba(11,11,11,.55) 78%, var(--black) 100%);
  pointer-events: none;
}
.hero__mascot {
  position: absolute; right: 2%; bottom: 0; z-index: 1; height: min(56%, 440px); width: auto;
  pointer-events: none; filter: drop-shadow(0 20px 34px rgba(0,0,0,.4)); animation: bob 4.6s ease-in-out infinite;
}
@media (max-width: 980px) { .hero__mascot { display: none; } }
.hero__inner { position: relative; z-index: 2; padding-block: 80px 60px; text-align: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px;
  background: rgba(255, 253, 245,.1); border: 1px solid rgba(255, 253, 245,.25);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 28px;
}
.hero__title-wrap { position: relative; margin-bottom: 22px; }
.hero__title {
  font-family: var(--font-display); font-weight: 900; letter-spacing: -.01em;
  font-size: clamp(3.2rem, 12vw, 8rem); line-height: .95; color: var(--cream); margin: 0;
}
.hero__title-ghost {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(3.2rem, 12vw, 8rem); line-height: .95;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 253, 245,.18); position: absolute; inset: 0;
  top: .62em; z-index: -1; user-select: none;
}
.hero__tagline { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 640px; margin: 0 auto 8px; color: rgba(255, 253, 245,.88); }
.hero__host { font-size: .92rem; color: var(--gold-light); margin-bottom: 36px; font-weight: 600; }
.hero__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 40px; }
.hero__meta-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  background: rgba(255, 253, 245,.08); border: 1px solid rgba(255, 253, 245,.2); font-size: .88rem; font-weight: 600;
}
.hero__meta-chip svg { width: 16px; height: 16px; color: var(--gold-light); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 56px; }

.countdown { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.countdown__box {
  width: 92px; padding: 16px 0; border-radius: var(--radius); background: rgba(255, 253, 245,.07);
  border: 1px solid rgba(255, 253, 245,.18); text-align: center; backdrop-filter: blur(4px);
}
.countdown__value { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--gold-light); display: block; }
.countdown__label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 253, 245,.7); }

.scroll-cue {
  position: relative; z-index: 2; display: flex; justify-content: center; padding-bottom: 28px;
  color: rgba(255, 253, 245,.55); animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* =========================================================
   Media placeholder (used wherever a real photo/video isn't uploaded yet)
   ========================================================= */
.media-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 100%; min-height: 160px; color: var(--warm-grey);
  background: conic-gradient(from 200deg, var(--gold-light), var(--gold), var(--red), var(--maroon), var(--gold-light));
  position: relative;
}
.media-placeholder::after { content: ''; position: absolute; inset: 0; background: rgba(255, 253, 245,.72); }
.media-placeholder__icon { font-size: 2.4rem; position: relative; z-index: 1; filter: saturate(1.1); }
.media-placeholder__label {
  position: relative; z-index: 1; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--maroon); text-align: center; padding-inline: 10px;
}

/* =========================================================
   Cards — games / culturals (shared "activity card" pattern)
   ========================================================= */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.activity-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column; height: 100%;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.activity-card__media { aspect-ratio: 4 / 3; position: relative; }
.activity-card__media img { width: 100%; height: 100%; object-fit: cover; }
.activity-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.activity-card__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.activity-card__title { font-size: 1.28rem; margin: 0; display: flex; align-items: center; gap: 8px; }
.activity-card__tagline { font-size: .93rem; color: var(--ink-soft); margin: 0; flex: 1; }
.activity-card__meta { display: flex; gap: 14px; font-size: .8rem; color: var(--green); font-weight: 700; }
.activity-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.activity-card__meta svg { width: 14px; height: 14px; }
.activity-card__link { margin-top: 6px; font-weight: 700; font-size: .88rem; color: var(--maroon); display: inline-flex; align-items: center; gap: 6px; }
.activity-card__link svg { width: 15px; height: 15px; transition: transform .15s; }
.activity-card__link:hover svg { transform: translateX(4px); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--border-grey); background: var(--charcoal-2);
  font-weight: 600; font-size: .86rem; color: var(--ink-soft); transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.filter-btn.is-active { background: var(--maroon); border-color: var(--maroon); color: var(--on-accent); }

/* =========================================================
   Detail pages (game / cultural program)
   ========================================================= */
.detail-hero { background: var(--cream-deep); padding-block: 48px; }
.detail-hero__crumb { font-size: .85rem; font-weight: 600; color: var(--maroon); margin-bottom: 18px; display: inline-flex; gap: 8px; align-items: center; }
.detail-hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); display: flex; align-items: center; gap: 16px; }
.detail-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding-block: 64px; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }
.detail-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 28px; box-shadow: var(--shadow); }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.rules-list { display: flex; flex-direction: column; gap: 14px; }
.rules-list li {
  display: flex; gap: 14px; padding: 16px 18px; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--ink);
}
.rules-list li .step-index {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--maroon); color: var(--on-accent);
  display: flex; align-items: center; justify-content: center; font-size: .82rem; font-family: var(--font-display); font-weight: 700;
}
.info-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.info-card h3 { font-size: 1.1rem; }
.info-card dl { margin: 0; display: grid; gap: 12px; }
.info-card dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }
.info-card dd { margin: 2px 0 0; font-weight: 600; }
.also-see { display: flex; flex-direction: column; gap: 12px; }
.also-see a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-sm); font-weight: 700; }
.also-see a:hover { background: var(--cream-deep); }
.also-see .icon-chip { font-size: 1.4rem; }

/* =========================================================
   Sadhya
   ========================================================= */
.sadhya-banner {
  background: linear-gradient(120deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
  border: 1px solid var(--border-grey); color: var(--ivory);
  border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 700px) { .sadhya-banner { grid-template-columns: 1fr; text-align: center; } }
.sadhya-banner h3 { color: var(--cream); margin-bottom: 6px; }
.sadhya-banner p { color: rgba(255, 253, 245,.8); margin: 0; }
.sadhya-banner--with-photo { grid-template-columns: auto 1fr auto; }
.sadhya-banner__photo {
  width: 168px; height: auto; border-radius: var(--radius); filter: drop-shadow(0 12px 22px rgba(0,0,0,.3));
}
@media (max-width: 700px) { .sadhya-banner--with-photo { grid-template-columns: 1fr; } .sadhya-banner__photo { width: 220px; margin-inline: auto; } }
.sadhya-stat { text-align: center; }
.sadhya-stat strong { font-family: var(--font-display); font-size: 2.6rem; display: block; color: var(--gold-light); }
.sadhya-stat span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255, 253, 245,.75); }

.course-block { margin-bottom: 54px; }
.course-block__title {
  display: flex; align-items: center; gap: 12px; font-size: 1.5rem; margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 2px dashed rgba(255,255,255,.20);
}
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.dish-card {
  background: var(--white); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); position: relative;
}
.dish-card--signature { border: 1.5px solid var(--gold); }
.dish-card__ribbon {
  position: absolute; top: -10px; right: 14px; background: var(--gold); color: var(--maroon-950); font-size: .66rem;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.dish-card__name { font-weight: 700; font-size: 1.02rem; margin-bottom: 2px; }
.dish-card__mal { font-size: .82rem; color: var(--ink-soft); font-style: italic; margin-bottom: 8px; display: block; }
.dish-card__desc { font-size: .85rem; margin: 0; color: var(--ink-soft); }

.leaf-note {
  display: flex; gap: 18px; background: var(--cream-deep); border-radius: var(--radius-lg); padding: 30px; align-items: flex-start;
}
.leaf-note svg { width: 42px; height: 42px; color: var(--green); flex-shrink: 0; }

.seating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.seating-card { background: var(--white); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); }
.seating-card__time { font-family: var(--font-display); font-size: 1.3rem; color: var(--maroon); font-weight: 700; }
.seating-card__cap { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

/* =========================================================
   Gallery / Browse
   ========================================================= */
.gallery-grid { column-count: 3; column-gap: 20px; }
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 560px) { .gallery-grid { column-count: 1; } }
.gallery-card {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); background: var(--white); cursor: pointer; transition: transform .2s ease;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card.is-hidden { display: none; }
.gallery-card__media { position: relative; aspect-ratio: var(--ar, 4/3); }
.gallery-card__media img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.35);
}
.gallery-card__play svg { width: 52px; height: 52px; color: var(--cream); filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.gallery-card__badge {
  position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.78); color: var(--ivory); font-size: .68rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px;
}
.gallery-card__caption { padding: 14px 16px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.gallery-card__caption span { display: block; font-weight: 400; color: var(--ink-soft); font-size: .78rem; margin-top: 2px; }
.gallery-card--soon .gallery-card__caption { color: var(--ink-soft); }

.lightbox {
  position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center;
  background: rgba(20, 10, 6, .88); padding: 5vh 5vw;
}
.lightbox.is-open { display: flex; }
.lightbox__stage { max-width: 900px; width: 100%; max-height: 85vh; }
.lightbox__stage img, .lightbox__stage iframe { width: 100%; max-height: 78vh; border-radius: var(--radius); background: #000; }
.lightbox__stage iframe { aspect-ratio: 16/9; height: auto; }
.lightbox__caption { color: var(--cream); text-align: center; margin-top: 14px; font-size: .92rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed; background: rgba(255, 253, 245,.12); border: 1px solid rgba(255, 253, 245,.3); color: var(--cream);
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--gold); color: var(--maroon-950); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 20px; height: 20px; }
@media (max-width: 700px) { .lightbox__prev, .lightbox__next { display: none; } }

/* =========================================================
   FAQ accordion (native <details>)
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin-inline: auto; }
.faq-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-weight: 700; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--maroon); transition: transform .2s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item__answer { padding: 0 24px 22px; margin: 0; color: var(--ink-soft); }

/* =========================================================
   Schedule timeline
   ========================================================= */
.timeline { max-width: 820px; margin-inline: auto; position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border-grey); }
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute; left: -34px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--maroon);
  border: 3px solid var(--black); box-shadow: 0 0 0 2px rgba(244,201,0,.45);
}
.timeline__item[data-category="games"] .timeline__marker { background: var(--red); }
.timeline__item[data-category="culturals"] .timeline__marker { background: #5b3f8f; }
.timeline__item[data-category="sadhya"] .timeline__marker { background: var(--green); }
.timeline__item[data-category="ceremony"] .timeline__marker { background: var(--gold-dark); }
.timeline__time { font-size: .8rem; font-weight: 800; letter-spacing: .04em; color: var(--maroon); text-transform: uppercase; margin-bottom: 4px; }
.timeline__card { background: var(--white); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); }
.timeline__title { font-weight: 700; font-size: 1.06rem; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.timeline__desc { font-size: .88rem; margin: 0; color: var(--ink-soft); }
.timeline__venue { font-size: .78rem; color: var(--green); font-weight: 700; margin-top: 6px; display: inline-block; }

/* =========================================================
   Registration
   ========================================================= */
.progress-bar { background: rgba(255, 253, 245,.15); border-radius: 999px; height: 10px; overflow: hidden; margin-top: 10px; }
.section--cream .progress-bar, .progress-bar.on-light { background: var(--cream-deep); }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 999px; transition: width .4s ease; }

.pass-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 20px; }
.pass-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm);
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
}
.pass-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pass-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pass-card:has(input:checked) { border-color: var(--maroon); background: var(--cream-soft); }
.pass-card__ribbon {
  position: absolute; top: -12px; left: 26px; background: var(--maroon); color: var(--on-accent); font-size: .66rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 5px 12px; border-radius: 999px;
}
.pass-card__name { font-size: 1.2rem; margin-bottom: 2px; }
.pass-card__tagline { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.pass-card__price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--maroon); margin-bottom: 16px; }
.pass-card__features { display: flex; flex-direction: column; gap: 9px; }
.pass-card__features li { display: flex; gap: 8px; font-size: .86rem; color: var(--ink); align-items: flex-start; }
.pass-card__features svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

.reg-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-section-title { font-size: 1.15rem; margin-bottom: 18px; padding-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 700; color: var(--heading); }
.form-field .req { color: var(--red); }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="tel"],
.form-field input[type="number"], .form-field select, .form-field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-grey); background: var(--charcoal-2);
  font: inherit; font-size: .94rem; color: var(--ink); transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--maroon); background: var(--white);
}
.form-field .help-text { font-size: .78rem; color: var(--ink-soft); }
.form-field .errorlist { color: var(--red); font-size: .8rem; margin: 0; padding: 0; list-style: none; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.check-pill { display: flex; align-items: center; gap: 10px; background: var(--cream-soft); border: 1.5px solid var(--border-grey); border-radius: var(--radius-sm); padding: 11px 14px; font-size: .87rem; font-weight: 600; }
.check-pill input { accent-color: var(--maroon); width: 16px; height: 16px; }
.consent-row { display: flex; gap: 12px; align-items: flex-start; background: var(--cream-deep); padding: 18px 20px; border-radius: var(--radius-sm); margin-bottom: 26px; }
.consent-row input { margin-top: 3px; accent-color: var(--maroon); width: 17px; height: 17px; flex-shrink: 0; }
.consent-row label { font-size: .86rem; color: var(--ink); }

/* =========================================================
   Alerts (django messages)
   ========================================================= */
.alert-stack { position: fixed; top: 90px; right: 20px; z-index: 400; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.alert {
  padding: 16px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow); font-size: .9rem; font-weight: 600;
  border-left: 4px solid var(--maroon); background: var(--white); color: var(--ink);
}
.alert--success { border-color: var(--green); }
.alert--error { border-color: var(--red); }
.alert--info, .alert--debug { border-color: var(--gold-dark); }
.alert--warning { border-color: var(--gold-dark); }

/* =========================================================
   Misc: reveal-on-scroll, back to top, contact page
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--maroon);
  color: var(--cream); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--maroon-950); color: var(--cream); border-radius: var(--radius-lg); padding: 36px; }
.contact-info-card h3 { color: var(--cream); }
.contact-info-card ul { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-card li { display: flex; gap: 14px; }
.contact-info-card svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.contact-info-card strong { display: block; font-size: .95rem; }
.contact-info-card span { font-size: .86rem; color: rgba(255, 253, 245,.7); }

.hero-mini { background: var(--cream-deep); padding-block: 56px; text-align: center; }
.hero-mini h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.stat-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 46px; }
.stat-strip .stat { text-align: center; }
.stat-strip strong { font-family: var(--font-display); font-size: 2.6rem; color: var(--maroon); display: block; }
.stat-strip span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }

.sponsor-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; }
.sponsor-badge {
  display: flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); font-weight: 700; color: var(--heading); font-size: .95rem;
}
.sponsor-badge img { width: 28px; height: 28px; object-fit: contain; }
.sponsor-badge .tier-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.cta-band {
  background: linear-gradient(120deg, #241d02 0%, var(--charcoal) 60%, var(--black) 100%); border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center; color: var(--cream); position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(255, 253, 245,.78); max-width: 560px; margin: 0 auto 24px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.empty-note { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-note .icon { font-size: 2.6rem; margin-bottom: 12px; }

/* =========================================================
   Event highlights — accent-tinted cards with an icon medallion
   ========================================================= */
.highlight-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.highlight-card {
  /* Per-card accent, overridden by the --<accent> modifiers below. */
  --accent: var(--onam-gold);
  --accent-wash: rgba(244, 201, 0, .14);
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.highlight-card--maroon { --accent: var(--onam-gold); --accent-wash: rgba(244, 201, 0, .14); }
.highlight-card--orange { --accent: var(--warm-gold); --accent-wash: rgba(232, 185, 0, .12); }
.highlight-card--green  { --accent: var(--ivory);     --accent-wash: rgba(255, 255, 255, .10); }
.highlight-card--gold   { --accent: var(--gold-light); --accent-wash: rgba(255, 216, 61, .16); }

/* Soft petal of colour bleeding in from the top-right corner. */
.highlight-card::before {
  content: ''; position: absolute; top: -46px; right: -46px; width: 132px; height: 132px;
  border-radius: 50%; background: var(--accent-wash);
  transition: transform .35s ease; pointer-events: none;
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.highlight-card:hover::before { transform: scale(1.4); }
.highlight-card:hover .highlight-card__medallion { transform: rotate(-8deg) scale(1.06); }

.highlight-card__medallion {
  position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent-wash); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.highlight-card__medallion svg { width: 30px; height: 30px; }
.highlight-card__label {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700;
  font-size: 1.14rem; line-height: 1.25; color: var(--heading); margin: 0;
}
.highlight-card__blurb {
  position: relative; z-index: 1; font-size: .89rem; line-height: 1.55; color: var(--ink-soft); margin: 0;
}
/* The accent rule that ties the card back to its colour. */
.highlight-card__rule {
  position: relative; z-index: 1; width: 34px; height: 3px; border-radius: 2px;
  background: var(--accent); margin-top: auto; opacity: .85;
}
@media (prefers-reduced-motion: reduce) {
  .highlight-card, .highlight-card::before, .highlight-card__medallion { transition: none; }
  .highlight-card:hover { transform: none; }
  .highlight-card:hover::before, .highlight-card:hover .highlight-card__medallion { transform: none; }
}

/* =========================================================
   Decorative illustration bands
   ========================================================= */
.scene-art { display: block; width: 100%; height: auto; }
.leaf-art { display: block; width: 100%; height: auto; }
.hero__scene { position: relative; z-index: 2; margin-top: 30px; }
/* The hero art sits on the cream page below the maroon hero, so give it its own ground. */
.hero__scene-ground { background: var(--bg); line-height: 0; }
.dot-band { line-height: 0; }
.dot-band svg { display: block; width: 100%; height: auto; }

/* =========================================================
   Sadhya price block
   ========================================================= */
/* Booking banner: text left, leaf art right — collapses to one column on mobile.
   Kept as a class (not an inline style) so the media query below can win. */
.sadhya-banner--booking { grid-template-columns: 1.1fr .9fr; margin-bottom: 0; align-items: center; }
.sadhya-banner__heading { font-size: 1.6rem; }
@media (max-width: 700px) {
  .sadhya-banner--booking { grid-template-columns: 1fr; text-align: left; }
  .sadhya-banner--booking .leaf-art { max-width: 320px; margin-inline: auto; }
}
.price-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1;
  padding: 12px 26px; border-radius: var(--radius); margin-bottom: 6px;
}
.price-tag svg { width: 22px; height: 22px; flex-shrink: 0; }
.price-note {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius);
  padding: 18px 20px; margin-top: 16px; font-size: .95rem; color: rgba(255,248,236,.92);
}
.price-note strong { color: var(--gold-light); }
.pay-summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: var(--cream-deep); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 26px;
}
.pay-summary__label { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.pay-summary__value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--maroon); }
.pay-summary__note { font-size: .84rem; color: var(--ink-soft); width: 100%; margin: 0; }

@media (max-width: 700px) {
  .section { padding-block: 64px; }
  .footer__grid { gap: 28px; }
}

/* =========================================================
   Blinking Register button — draws the eye to the one CTA
   ========================================================= */
@keyframes cta-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243, 198, 75, .75); }
  50%      { box-shadow: 0 0 0 12px rgba(243, 198, 75, 0); }
}
.btn--blink { animation: cta-blink 1.7s ease-out infinite; }
.btn--blink:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .btn--blink { animation: none; } }

/* =========================================================
   Deadline flag — the "register before the 19th" line
   ========================================================= */
.deadline-flag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--onam-gold); color: var(--black);
  border: 1px solid var(--gold-dark); border-radius: 999px;
  padding: 10px 20px; margin: 18px 0 0; font-size: .92rem; font-weight: 700;
}
.deadline-flag svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--black); }
.deadline-flag--center { display: flex; width: fit-content; margin: 24px auto 0; }

/* =========================================================
   UPI payment panel
   ========================================================= */
.upi-panel {
  background: var(--charcoal); border: 1px solid var(--border-grey); color: var(--ivory);
  border-radius: var(--radius-lg); overflow: hidden;
  max-width: 760px; margin: 0 auto 34px; box-shadow: var(--shadow);
}
.upi-panel__head {
  text-align: center; padding: 26px 24px 20px;
  background: rgba(0, 0, 0, .16); border-bottom: 1px solid rgba(255, 253, 245, .16);
}
.upi-panel__kicker {
  display: block; font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-light);
}
.upi-panel__price {
  font-family: var(--font-display); font-weight: 700; font-size: 3.1rem;
  line-height: 1.05; color: var(--cream); margin-top: 4px;
}
.upi-panel__price span { font-size: 2rem; vertical-align: .12em; margin-right: 2px; }
.upi-panel__per {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255, 253, 245, .72);
}
.upi-panel__body {
  display: grid; grid-template-columns: auto 1fr; gap: 26px;
  align-items: center; padding: 26px 28px;
}
.upi-panel__qr { text-align: center; }
.upi-panel__qr img {
  width: 168px; height: 168px; border-radius: 14px;
  /* Literal white, not the card surface: a QR needs a light quiet zone to scan. */
  background: #ffffff; padding: 9px; display: block;
}
.upi-panel__qr span {
  display: block; margin-top: 9px; font-size: .78rem; color: rgba(255, 253, 245, .72);
}
.upi-panel__details { margin: 0; display: grid; gap: 4px; }
.upi-panel__details dt {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light); margin-top: 12px;
}
.upi-panel__details dt:first-child { margin-top: 0; }
.upi-panel__details dd {
  margin: 0; display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; font-size: 1rem; font-weight: 600;
}
.upi-panel__details code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: .95rem; word-break: break-all;
}
.copy-btn {
  background: rgba(255, 253, 245, .14); color: var(--cream);
  border: 1px solid rgba(255, 253, 245, .3); border-radius: 999px;
  padding: 3px 12px; font-size: .74rem; font-weight: 700;
  transition: background .15s ease;
}
.copy-btn:hover { background: rgba(255, 253, 245, .26); }
.copy-btn.is-copied { background: var(--gold); color: var(--maroon-950); border-color: var(--gold); }
.upi-panel__note {
  margin: 0; padding: 16px 28px 24px; font-size: .86rem; line-height: 1.6;
  color: rgba(255, 253, 245, .78);
}
.upi-panel__note strong { color: var(--cream); }
@media (max-width: 620px) {
  .upi-panel__body { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .upi-panel__details dd { justify-content: center; }
}

/* =========================================================
   Numbered "how to register" steps
   ========================================================= */
.step-list {
  list-style: none; margin: 0 0 38px; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.step-list li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px; position: relative;
}
.step-list__num {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--maroon); color: var(--on-accent);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
}
.step-list h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-list p { font-size: .9rem; margin: 0; }

/* =========================================================
   Committees
   ========================================================= */
.committee-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px;
}
.committee-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.committee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.committee-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.committee-card__emoji { font-size: 1.7rem; line-height: 1; }
.committee-card__head h2 { font-size: 1.2rem; margin: 0; }
.committee-card__group + .committee-card__group { margin-top: 14px; }
.committee-card__role {
  display: block; font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px;
}
.committee-card__people { margin: 0; padding: 0; list-style: none; }
.committee-card__people li { font-size: .92rem; color: var(--ink-soft); padding: 2px 0; }
.committee-card__people--lead li { font-weight: 700; color: var(--ink); }

/* =========================================================
   File inputs in the registration form
   ========================================================= */
.form-field input[type="file"] {
  width: 100%; padding: 12px 14px; font-size: .9rem;
  background: var(--cream-soft); border: 1px dashed var(--line);
  border-radius: var(--radius-sm); color: var(--ink-soft); cursor: pointer;
}
.form-field input[type="file"]:hover { border-color: var(--maroon); }
.consent-row--declaration {
  background: var(--onam-gold); color: var(--black); border-color: var(--warm-gold); font-weight: 600;
}

/* =========================================================
   Malayalam names alongside the English game titles
   ========================================================= */
.activity-card__title-ml {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .88rem; color: var(--gold-dark); margin-top: 3px;
}
.detail-hero__title-ml {
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  color: var(--gold-light); margin: -6px 0 14px;
}

/* Meta row under a hero-mini heading (date / venue) */
.hero-mini__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px;
}
.hero-mini__meta span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: .86rem; font-weight: 600; color: var(--ink);
}
.hero-mini__meta svg { width: 15px; height: 15px; color: var(--maroon); }

/* =========================================================
   Real photography — feature shot, mosaic, partner logos, quotes
   ========================================================= */

/* A single wide hero photograph with a caption. */
.feature-photo { margin: 0; }
.feature-photo img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); display: block;
}
.feature-photo figcaption {
  margin-top: 12px; text-align: center; font-size: .86rem; color: var(--ink-soft);
}

/* Host / venue logo lockup. */
.partner-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 38px;
}
.partner-strip__label {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.partner-strip img {
  height: 40px; width: auto; object-fit: contain;
  background: var(--ivory); border-radius: 10px; padding: 8px 14px;
}
.partner-strip__divider { width: 1px; height: 30px; background: var(--border-grey); }
@media (max-width: 560px) {
  .partner-strip { gap: 12px; }
  .partner-strip img { height: 32px; }
  .partner-strip__divider { display: none; }
}

/* Footer logo chips — white plates so dark-ink logos stay legible. */
.partner-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.partner-logo {
  background: var(--ivory); border-radius: 10px; padding: 9px 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.partner-logo img { height: 30px; width: auto; object-fit: contain; display: block; }

/* Mosaic: one wide lead image, then a row of supporting shots. */
.photo-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.photo-mosaic__item { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.photo-mosaic__item--wide { grid-column: span 4; }
.photo-mosaic__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  aspect-ratio: 4 / 3; transition: transform .4s ease;
}
.photo-mosaic__item--wide img { aspect-ratio: 16 / 8; }
.photo-mosaic__item:hover img { transform: scale(1.04); }
.photo-mosaic__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; font-size: .84rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .88), transparent);
}
@media (max-width: 900px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
  .photo-mosaic__item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .photo-mosaic { grid-template-columns: 1fr; }
  .photo-mosaic__item--wide { grid-column: span 1; }
}

/* Testimonials */
.quote-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.quote-card {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.quote-card blockquote {
  margin: 0; font-size: 1rem; line-height: 1.65; color: var(--ink); position: relative;
  padding-top: 26px; flex: 1;
}
.quote-card blockquote::before {
  content: '\201C'; position: absolute; top: -10px; left: -4px;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: .55;
}
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.quote-card figcaption img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.quote-card figcaption span { display: flex; flex-direction: column; line-height: 1.3; }
.quote-card figcaption strong { font-size: .93rem; color: var(--heading); }
.quote-card figcaption small { font-size: .8rem; color: var(--ink-soft); }
