/* ==========================================================================
   Sukhpreet Singh Khalsa Dhadi Jatha
   Design system + components
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #050e1f;
  --navy-800: #0a1a35;
  --navy-700: #102546;
  --navy-600: #1a3560;
  --navy-500: #26477c;

  --gold-600: #b3832c;
  --gold-500: #d9a441;
  --gold-400: #e9bd67;
  --gold-300: #f4d89f;
  /* Text-safe gold: 5.5:1 on white, 4.6:1 on cream-200 (WCAG AA at any size).
     gold-600 only reaches 3.4:1 and must not be used for small text. */
  --gold-ink: #8a6218;

  --saffron: #e8821e;

  --cream-50: #fdfbf7;
  --cream-100: #faf6ee;
  --cream-200: #f2ebdd;
  --cream-300: #e5dac5;

  --ink-900: #16202f;
  --ink-700: #3c4757;
  --ink-500: #64707f;
  --ink-400: #8a94a1;

  /* Semantic */
  --bg: var(--cream-100);
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: var(--cream-300);
  --accent: var(--gold-500);
  --accent-strong: var(--gold-ink);

  /* Type */
  --font-display: "Marcellus", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-pa: "Noto Sans Gurmukhi", "Noto Serif Gurmukhi", var(--font-body);

  /* Layout */
  --container: 1200px;
  --container-narrow: 860px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 76px;

  /* Icon scale — every icon in the UI uses one of these six steps,
     so weights and optical sizes stay consistent across components. */
  --ico-xs:  14px;   /* dense metadata, top bar */
  --ico-sm:  16px;   /* inline with body text, card meta */
  --ico-md:  18px;   /* buttons, list bullets, footer */
  --ico-lg:  20px;   /* alerts, utility buttons */
  --ico-xl:  22px;   /* nav toggle, lightbox controls */
  --ico-2xl: 26px;   /* feature tiles, brand mark */
  --ico-hero: 48px;  /* empty states */

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(6, 16, 36, .06), 0 1px 3px rgba(6, 16, 36, .08);
  --shadow: 0 4px 12px rgba(6, 16, 36, .08), 0 2px 4px rgba(6, 16, 36, .05);
  --shadow-lg: 0 18px 40px rgba(6, 16, 36, .14), 0 6px 14px rgba(6, 16, 36, .08);
  --shadow-gold: 0 10px 30px rgba(217, 164, 65, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

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

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

/* ---------- Icons ----------
   Base size for every icon(); component rules below override it.
   Keeps an icon sane even in a context no rule anticipated. */
.ico {
  width: var(--ico-sm);
  height: var(--ico-sm);
  flex: none;
  display: inline-block;
  vertical-align: -.18em;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
figure { margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.8vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.08rem + .7vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Gurmukhi text */
.pa, [lang="pa"] {
  font-family: var(--font-pa);
  line-height: 1.85;
}

::selection { background: var(--gold-300); color: var(--navy-800); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 999;
  background: var(--gold-500); color: var(--navy-900);
  padding: 10px 18px; border-radius: 0 0 8px 8px; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--cream { background: var(--cream-100); }
.section--white { background: #fff; }
.section--navy { background: var(--navy-800); color: var(--cream-100); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }


/* A navy section carrying a photo behind it. The gradient is opaque enough
   that body copy stays above 4.5:1 whatever the photo underneath is doing. */
.section--media { position: relative; isolation: isolate; overflow: hidden; }
.section--media > .container { position: relative; z-index: 2; }
.section--media .section__bg { position: absolute; inset: 0; z-index: 0; }
.section--media .section__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.section--media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* Lightest stop is .74: composited over pure white - the brightest thing
     in any of these photos - body copy still measures 5.5:1. */
  background: linear-gradient(
    to bottom,
    rgba(5, 14, 31, .9),
    rgba(5, 14, 31, .74) 48%,
    rgba(5, 14, 31, .92)
  );
}

/* Shorter than .section, for bands that are a heading and two buttons. */
.section--snug { padding: clamp(36px, 4vw, 56px) 0; }
.section--snug .sec-head { margin-bottom: clamp(18px, 2.2vw, 28px); }
.section--snug .sec-head p { margin-bottom: 0; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); }

/* ---------- Section heading ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-strong);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.sec-head--center .eyebrow::after {
  content: ""; width: 28px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.section--navy .eyebrow,
.youth-band .eyebrow,
.quote-band .eyebrow,
.cta-band .eyebrow { color: var(--gold-400); }

.sec-head h2 { margin-bottom: .35em; }

.sec-head .subtitle-pa {
  font-family: var(--font-pa);
  font-size: 1.05rem;
  color: var(--accent-strong);
  margin-bottom: .6em;
}
.section--navy .sec-head .subtitle-pa,
.youth-band .sec-head .subtitle-pa { color: var(--gold-400); }

.sec-head p { color: var(--text-muted); font-size: 1.02rem; }
.section--navy .sec-head p,
.youth-band .sec-head p { color: rgba(250, 246, 238, .78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { box-shadow: 0 14px 34px rgba(217, 164, 65, .42); }

.btn--dark { background: var(--navy-800); color: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--navy-700); }

.btn--outline {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .06);
}
.btn--outline:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }

.btn--ghost { border-color: var(--border); color: var(--navy-800); background: #fff; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); }

.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

.btn svg { width: var(--ico-md); height: var(--ico-md); flex: none; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--accent-strong); font-size: .95rem;
}
.link-arrow svg { width: var(--ico-sm); height: var(--ico-sm); transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: rgba(250, 246, 238, .82);
  font-size: .8rem;
  border-bottom: 1px solid rgba(217, 164, 65, .18);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar__fateh {
  font-family: var(--font-pa);
  color: var(--gold-400);
  letter-spacing: .02em;
}
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__link { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar__link:hover { color: var(--gold-400); }
.topbar__link svg { width: var(--ico-xs); height: var(--ico-xs); }
.topbar__social { display: flex; gap: 10px; }
.topbar__social a {
  width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255, 255, 255, .08);
  transition: background .2s, color .2s;
}
.topbar__social a:hover { background: var(--gold-500); color: var(--navy-900); }
.topbar__social svg { width: var(--ico-xs); height: var(--ico-xs); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}

/* Holds its width on desktop; allowed to shrink once the menu collapses
   into the drawer, otherwise the long name pushes the toggle off-screen. */
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; }
.brand__mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: var(--ico-2xl); height: var(--ico-2xl); color: var(--gold-400); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand__name {
  font-family: var(--font-display); font-size: 1.02rem;
  color: var(--navy-800); font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap;
}
.brand__name-pa {
  font-family: var(--font-pa); font-size: .78rem;
  color: var(--accent-strong); margin-top: 2px;
}
/* The accent gold is tuned for light backgrounds. Wherever the brand sits on
   a dark surface — the drawer and the footer — the lighter gold is the
   readable one. */
.drawer__head .brand__name-pa,
.footer__brand .brand__name-pa { color: var(--gold-400); }

.nav__menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav__link {
  position: relative; display: block;
  padding: 10px 10px; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--ink-700);
  white-space: nowrap;           /* labels must never break mid-word */
  transition: color .2s, background-color .2s;
}
.nav__link:hover { color: var(--navy-800); background: var(--cream-100); }
.nav__link.is-active { color: var(--accent-strong); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

.nav__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--navy-800);
  place-items: center;
}
.nav__toggle svg { width: var(--ico-xl); height: var(--ico-xl); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }

.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 14, 31, .55);
  opacity: 0; transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.drawer.is-open .drawer__backdrop { opacity: 1; }

.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--navy-800); color: var(--cream-100);
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 50px rgba(0, 0, 0, .3);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.drawer__head .brand__name { color: #fff; }
.drawer__head .brand__mark { background: rgba(255, 255, 255, .08); }

.drawer__close {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid rgba(255, 255, 255, .18);
  background: transparent; color: #fff;
}
.drawer__close svg { width: var(--ico-lg); height: var(--ico-lg); }

.drawer__menu { list-style: none; padding: 12px; flex: 1; }
.drawer__menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 10px;
  font-size: 1rem; font-weight: 500;
  color: rgba(250, 246, 238, .88);
  transition: background .2s, color .2s;
}
.drawer__menu a:hover,
.drawer__menu a.is-active { background: rgba(217, 164, 65, .16); color: var(--gold-400); }
.drawer__menu a span.pa { font-size: .82rem; opacity: .7; }

.drawer__foot { padding: 20px; border-top: 1px solid rgba(255, 255, 255, .1); }
.drawer__foot .btn { width: 100%; }
.drawer__contact { margin-top: 16px; font-size: .85rem; color: rgba(250, 246, 238, .7); }
.drawer__contact a { display: block; padding: 4px 0; }
.drawer__contact a:hover { color: var(--gold-400); }

body.no-scroll { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.3s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s linear;
}
.hero__slide.is-active img { transform: scale(1); }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 14, 31, .93) 0%, rgba(5, 14, 31, .78) 42%, rgba(5, 14, 31, .42) 100%),
    linear-gradient(to top, rgba(5, 14, 31, .85), transparent 55%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding-block: clamp(60px, 9vw, 110px);
}
.hero__content { max-width: 680px; color: #fff; }

.hero__fateh {
  font-family: var(--font-pa);
  font-size: clamp(1.05rem, .9rem + .7vw, 1.5rem);
  color: var(--gold-400);
  margin-bottom: 18px;
  letter-spacing: .01em;
}

.hero__title { color: #fff; margin-bottom: .3em; text-wrap: balance; }
.hero__title-pa {
  display: block;
  font-family: var(--font-pa);
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.2rem);
  color: var(--gold-300);
  margin-top: .3em;
  font-weight: 500;
}

.hero__text {
  font-size: clamp(1rem, .96rem + .2vw, 1.12rem);
  color: rgba(255, 255, 255, .84);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__dots {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.hero__dot {
  position: relative;
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: none; background: rgba(255, 255, 255, .38);
  transition: width .3s var(--ease), background .3s;
}
/* Invisible 44px hit area — the dot stays small, the target does not. */
.hero__dot::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}
.hero__dot.is-active { width: 30px; border-radius: 6px; background: var(--gold-500); }

/* Hero quick cards */
.hero-strip {
  position: relative; z-index: 4;
  margin-top: -58px;
}
.hero-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-strip__item {
  background: #fff;
  padding: 26px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: background .25s var(--ease);
}
.hero-strip__item:hover { background: var(--cream-50); }
.hero-strip__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(140deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900);
}
.hero-strip__icon svg { width: var(--ico-2xl); height: var(--ico-2xl); }
/* The Gurmukhi tagline belongs on its own line under the English label,
   not running on after it. */
.hero-strip__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero-strip__label {
  font-weight: 600; color: var(--navy-800); font-size: .98rem; line-height: 1.25;
}
.hero-strip__sub { font-size: .82rem; color: var(--text-muted); line-height: 1.35; }
.hero-strip__sub.pa { font-family: var(--font-pa); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-banner__bg { position: absolute; inset: 0; z-index: -2; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(5, 14, 31, .94), rgba(10, 26, 53, .72));
}
.page-banner h1 { color: #fff; margin-bottom: .2em; }
.page-banner__pa {
  font-family: var(--font-pa);
  color: var(--gold-300);
  font-size: clamp(1.05rem, .9rem + .6vw, 1.4rem);
  margin-bottom: .5em;
}
.page-banner__lead { color: rgba(255, 255, 255, .8); max-width: 640px; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; font-size: .85rem;
  color: rgba(255, 255, 255, .62); margin-top: 18px;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.breadcrumb [aria-current] { color: var(--gold-400); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-200);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.card__title { font-size: 1.18rem; margin: 0; color: var(--navy-800); }
.card__title a:hover { color: var(--accent-strong); }
.card__title-pa { font-family: var(--font-pa); font-size: .92rem; color: var(--accent-strong); }
.card__text { color: var(--text-muted); font-size: .94rem; flex: 1; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; margin-top: auto;
  border-top: 1px solid var(--border);
  font-size: .84rem; color: var(--text-muted);
}
/* Date / location meta sits inline with its icon. */
.card__foot > span {
  display: inline-flex; align-items: center; gap: 7px;
  min-width: 0;
}
.card__foot svg {
  width: var(--ico-sm); height: var(--ico-sm);
  flex: none; color: var(--accent-strong);
}
.card__foot .link-arrow svg { color: inherit; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--cream-200); color: var(--accent-strong);
}
.badge--solid { background: var(--gold-500); color: var(--navy-900); }
.badge--navy { background: var(--navy-800); color: var(--gold-400); }
.badge--float {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(5, 14, 31, .82); color: var(--gold-400);
  backdrop-filter: blur(6px);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: #fff; padding: 30px 20px; text-align: center; }
.section--navy .stats { background: rgba(255, 255, 255, .12); }
.section--navy .stat { background: var(--navy-800); }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.9rem);
  color: var(--accent-strong);
  line-height: 1;
  margin-bottom: 8px;
}
.section--navy .stat__num { color: var(--gold-400); }
.stat__label {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.section--navy .stat__label { color: rgba(250, 246, 238, .7); }

/* ---------- Media + text split ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }

.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.split__media--stack { padding-bottom: 46px; padding-right: 46px; }
.split__media--stack .split__img-2 {
  position: absolute; right: 0; bottom: 0;
  width: 54%; aspect-ratio: 1;
  border: 6px solid var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.split__badge {
  position: absolute; top: 22px; left: -14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  padding: 14px 22px; border-radius: 12px;
  box-shadow: var(--shadow-gold);
  font-weight: 700; line-height: 1.2;
}
.split__badge small {
  display: block; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; opacity: .8;
}

/* ---------- Feature list ---------- */
.feature-list { list-style: none; display: grid; gap: 14px; margin: 24px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .96rem; color: var(--ink-700);
}
.feature-list svg {
  width: var(--ico-lg); height: var(--ico-lg); flex: none; margin-top: 3px;
  color: var(--accent-strong);
}
.section--navy .feature-list li,
.youth-band .feature-list li { color: rgba(250, 246, 238, .85); }
.section--navy .feature-list svg,
.youth-band .feature-list svg { color: var(--gold-400); }

/* ---------- Service cards ---------- */
.service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--saffron));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--cream-200), var(--cream-100));
  color: var(--accent-strong);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service:hover .service__icon {
  background: linear-gradient(140deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}
.service__icon svg { width: var(--ico-2xl); height: var(--ico-2xl); }
.service h3 { font-size: 1.15rem; margin-bottom: .25em; }
.service__pa { font-family: var(--font-pa); font-size: .88rem; color: var(--accent-strong); margin-bottom: 10px; }
.service p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ---------- Members ---------- */
.member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.member__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--navy-700); }
.member__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.member:hover .member__media img { transform: scale(1.05); }
.member__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(to top, rgba(5, 14, 31, .92), transparent);
}
.member__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 22px 20px; color: #fff;
}
.member__name { font-family: var(--font-display); font-size: 1.28rem; margin-bottom: 2px; }
.member__name-pa { font-family: var(--font-pa); font-size: .92rem; color: var(--gold-300); }
.member__role { font-size: .85rem; color: rgba(255, 255, 255, .78); margin-top: 6px; }

.member__body {
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.member__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .84rem; font-weight: 600; color: var(--accent-strong);
}
.member__tag svg { width: var(--ico-sm); height: var(--ico-sm); }

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; gap: 4px; }
.timeline::before {
  content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(to bottom, var(--gold-400), var(--cream-300));
}
.timeline__item {
  position: relative;
  padding: 0 0 30px 62px;
}
.timeline__dot {
  position: absolute; left: 10px; top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold-500);
  display: grid; place-items: center;
  box-shadow: 0 0 0 5px var(--bg);
}
.timeline__dot::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500);
}
.timeline__year {
  display: inline-block; font-family: var(--font-display);
  font-size: 1.3rem; color: var(--accent-strong); margin-bottom: 2px;
}
.timeline__title { font-size: 1.1rem; margin-bottom: .2em; }
.timeline__pa { font-family: var(--font-pa); font-size: .88rem; color: var(--text-muted); margin-bottom: 6px; }
.timeline__item p { color: var(--text-muted); font-size: .94rem; margin: 0; }

/* ---------- Quote ---------- */
.quote-band {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.quote-band::before {
  content: "❝";
  position: absolute; top: -30px; left: 3%;
  font-size: 18rem; line-height: 1;
  color: rgba(217, 164, 65, .1);
  font-family: Georgia, serif;
  z-index: -1;
}
.quote-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 1.4vw, 2rem);
  line-height: 1.5; text-align: center;
  max-width: 820px; margin: 0 auto 18px;
  text-wrap: balance;
}
.quote-band__pa {
  font-family: var(--font-pa);
  color: var(--gold-300);
  text-align: center;
  font-size: clamp(1rem, .9rem + .5vw, 1.25rem);
  margin-bottom: 16px;
}
.quote-band__cite {
  display: block; text-align: center;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400);
}

/* ---------- Gallery ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 34px;
}
.filter-btn {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff;
  font-size: .88rem; font-weight: 500; color: var(--ink-700);
  transition: all .22s var(--ease);
}
.filter-btn:hover { border-color: var(--gold-400); color: var(--accent-strong); }
.filter-btn.is-active {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}
.filter-btn .count { opacity: .55; font-size: .78rem; margin-left: 4px; }

/* While a filtered region is being fetched, dim it and block further clicks
   so a fast double-tap cannot queue two swaps. */
[data-filter-region] { transition: opacity .18s var(--ease); }
[data-filter-region].is-loading { opacity: .55; pointer-events: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative; display: block;
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-200);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5, 14, 31, .88) 0%, rgba(5, 14, 31, .1) 55%, transparent 100%);
  opacity: 0; transition: opacity .3s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; color: #fff;
}
.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay { opacity: 1; }
.gallery-item__cat { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400); }
.gallery-item__title { font-size: .88rem; font-weight: 500; line-height: 1.35; margin-top: 3px; }
.gallery-item__zoom {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); color: var(--navy-800);
  display: grid; place-items: center;
  transform: scale(.7); opacity: 0;
  transition: all .3s var(--ease);
}
.gallery-item:hover .gallery-item__zoom { transform: scale(1); opacity: 1; }
.gallery-item__zoom svg { width: var(--ico-md); height: var(--ico-md); }

/* Featured mosaic (home) */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.mosaic > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic > :nth-child(6) { grid-column: span 2; }
.mosaic .gallery-item { aspect-ratio: auto; height: 100%; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(3, 9, 20, .95);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  position: relative;
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  display: flex; flex-direction: column; gap: 12px;
}
.lightbox__stage img,
.lightbox__stage iframe,
.lightbox__stage video {
  max-width: 100%; max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  margin-inline: auto;
}
/* The stage sizes itself to whatever the media's real aspect ratio is —
   the Jatha's clips and reels are portrait, not 16:9. */
.lightbox__stage iframe,
.lightbox__stage video {
  border: 0;
  background: #000;
  aspect-ratio: var(--media-aspect, 16 / 9);
  width: auto;
  height: min(78vh, 900px);
  max-width: 94vw;
  border-radius: var(--radius);
}
.lightbox__stage video { object-fit: contain; }

/* Inline player used on the videos page rather than a lightbox. */
.player {
  position: relative;
  width: 100%;
  aspect-ratio: var(--media-aspect, 16 / 9);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.player > iframe,
.player > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 1;
}
/* Transparent so the blurred poster shows through the letterbox bars. */
.player > video { object-fit: contain; background: transparent; }
.player > iframe { background: #000; }

/* Blurred copy of the poster, filling anything the video does not cover. */
.player__backdrop {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
  filter: blur(26px) saturate(1.25) brightness(.55);
  transform: scale(1.18);
  pointer-events: none;
}

/* Featured video block.
   The player takes only the width its shape needs and the copy fills the
   rest, so a portrait reel does not leave a column of empty space beside it. */
.video-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
/* The width must not be a percentage: this sits in an `auto` grid track, so
   `100%` would resolve against a track that is itself sized by this element,
   and the column collapses to zero. `vw` is definite, so it is safe. */
.video-feature .player { width: min(560px, 46vw); }
/* Keep the copy to a comfortable measure rather than letting it run the
   full width left over beside a narrow reel. */
.video-feature > :last-child { max-width: 62ch; }

/* A portrait reel is sized by height, not width. Capping the width instead
   made it ~690px tall and it dominated the section. */
.player--portrait {
  width: auto;
  height: min(460px, 56vh);
  max-width: 100%;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .video-feature { grid-template-columns: minmax(0, 1fr); }
  .video-feature .player { width: 100%; }
  /* Must out-specify `.video-feature .player` above, or the reel goes
     full-bleed and becomes enormously tall again. */
  .video-feature .player--portrait,
  .player--portrait {
    width: min(100%, 320px);
    height: auto;
  }
}

/* In a card grid every player uses the same 16:9 box, so rows line up.
   Portrait footage letterboxes inside it, exactly as it does on YouTube. */
.player--card {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}
.player--card .player__play { width: 58px; height: 58px; }
.player--card .player__play svg { width: 22px; height: 22px; }
.player--card .player__label { padding: 12px 14px; font-size: .78rem; }

/* Click-to-load cover: keeps the third-party iframe (and its cookies) out of
   the page until the visitor actually asks to watch. */
.player__cover {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  padding: 0; border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}
.player__cover img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.player__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5, 14, 31, .55), rgba(5, 14, 31, .12) 60%);
  transition: background .3s var(--ease);
}
.player__cover:hover img { transform: scale(1.04); }
.player__cover:hover::after { background: linear-gradient(to top, rgba(5, 14, 31, .62), rgba(5, 14, 31, .2) 60%); }

.player__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--navy-800);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.player__cover:hover .player__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-500);
}
.player__play svg { width: 30px; height: 30px; margin-left: 4px; }

.player__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px 18px;
  color: #fff; font-size: .84rem;
  display: flex; align-items: center; gap: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}
.player__label svg { width: var(--ico-sm); height: var(--ico-sm); }

/* Shown when a link cannot be played on our own page. */
.player__fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
  padding: 24px; color: rgba(255, 255, 255, .85);
}
.player__fallback svg { width: var(--ico-hero); height: var(--ico-hero); color: var(--gold-500); margin: 0 auto 14px; }
.lightbox__caption { text-align: center; color: rgba(255, 255, 255, .8); font-size: .9rem; }
.lightbox__caption .pa { color: var(--gold-300); display: block; }

.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid; place-items: center;
  transition: background .2s;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .26); }
.lightbox__btn svg { width: var(--ico-xl); height: var(--ico-xl); }
.lightbox__prev { left: -66px; }
.lightbox__next { right: -66px; }

.lightbox__close {
  position: fixed; top: 20px; right: 20px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid; place-items: center;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .26); }
.lightbox__close svg { width: var(--ico-xl); height: var(--ico-xl); }

/* ---------- Video cards ---------- */
.video-card { cursor: pointer; }
.video-card .card__media { aspect-ratio: 16 / 9; }
.video-card__play {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: rgba(5, 14, 31, .28);
  transition: background .3s var(--ease);
}
.video-card:hover .video-card__play { background: rgba(5, 14, 31, .45); }
.video-card__play span {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255, 255, 255, .95); color: var(--navy-800);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transition: transform .3s var(--ease), background .3s;
}
.video-card:hover .video-card__play span {
  transform: scale(1.1);
  background: var(--gold-500);
}
.video-card__play svg { width: var(--ico-2xl); height: var(--ico-2xl); margin-left: 3px; }

.video-card__meta {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  background: rgba(5, 14, 31, .82); color: #fff;
  padding: 4px 10px; border-radius: 6px;
  font-size: .76rem; font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ---------- Events ---------- */
.event {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.event:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--gold-300); }

.event__date {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: #fff; border-radius: var(--radius-sm);
  display: grid; place-content: center; text-align: center;
  padding: 14px 8px; height: fit-content;
}
.event__day { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.event__month {
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400); margin-top: 4px; font-weight: 600;
}
.event__year { font-size: .72rem; color: rgba(255, 255, 255, .55); }

.event__title { font-size: 1.16rem; margin-bottom: .15em; }
.event__pa { font-family: var(--font-pa); font-size: .88rem; color: var(--accent-strong); margin-bottom: 8px; }
.event__meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: .86rem; color: var(--text-muted); margin-top: 8px;
}
.event__meta span { display: inline-flex; align-items: center; gap: 6px; }
.event__meta svg { width: var(--ico-sm); height: var(--ico-sm); color: var(--accent-strong); flex: none; }

.event--past { opacity: .82; }
.event--past .event__date { background: var(--ink-400); }
.event--past .event__month { color: #fff; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  height: 100%;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial::before {
  content: "❝";
  font-family: Georgia, serif;
  position: absolute; top: 14px; right: 26px;
  font-size: 4.5rem; line-height: 1;
  color: var(--cream-200);
}
.testimonial__stars { display: flex; gap: 3px; color: var(--gold-500); }
.testimonial__stars svg { width: var(--ico-sm); height: var(--ico-sm); }
.testimonial__text { font-size: 1rem; color: var(--ink-700); flex: 1; font-style: italic; }
.testimonial__who { display: flex; align-items: center; gap: 14px; padding-top: 6px; }
.testimonial__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  font-family: var(--font-display); font-size: 1.15rem;
  object-fit: cover;
}
.testimonial__name { font-weight: 600; color: var(--navy-800); font-size: .96rem; }
.testimonial__org { font-size: .84rem; color: var(--text-muted); }

/* ---------- Countries ---------- */
.countries {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.country-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .92rem; color: rgba(250, 246, 238, .92);
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.country-chip:hover {
  background: rgba(217, 164, 65, .18);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}
.country-chip__flag { font-size: 1.2rem; line-height: 1; }
.country-chip__pa { font-family: var(--font-pa); font-size: .82rem; opacity: .65; }

/* ---------- Youth highlight band ---------- */
/* Opaque, so the lightest part of the gradient stays dark enough for
   light text. The previous translucent version let the cream page colour
   through and dropped contrast to about 1.5:1. */
.youth-band {
  background: linear-gradient(115deg, #050e1f 0%, #0a1a35 48%, #1a3560 100%);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.youth-band__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.youth-band h2 { color: #fff; }
.youth-band__pa {
  font-family: var(--font-pa);
  color: var(--gold-300);
  font-size: clamp(1.05rem, .9rem + .6vw, 1.35rem);
  line-height: 1.8;
  margin-bottom: 18px;
}
.youth-band p { color: rgba(255, 255, 255, .82); }

.youth-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.youth-collage a {
  border-radius: var(--radius); overflow: hidden;
  position: relative; display: block;
  border: 2px solid rgba(255, 255, 255, .1);
}
.youth-collage a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.youth-collage a:nth-child(4) { grid-column: span 2; }
.youth-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.youth-collage a:hover img { transform: scale(1.08); }

/* ---------- Articles ---------- */
.article-body {
  font-size: 1.06rem; line-height: 1.85; color: var(--ink-700);
}
.article-body p { margin-bottom: 1.3em; }
.article-body h2, .article-body h3 { color: var(--navy-800); margin-top: 1.6em; }
.article-body img { border-radius: var(--radius); margin: 1.6em 0; }
.article-body blockquote {
  margin: 1.8em 0; padding: 20px 26px;
  border-left: 4px solid var(--gold-500);
  background: var(--cream-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-800);
}

.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
  font-size: .88rem; color: var(--text-muted);
  padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: var(--ico-sm); height: var(--ico-sm); color: var(--accent-strong); }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .86rem; font-weight: 600; color: var(--navy-800);
}
.field label .req { color: #c0392b; margin-left: 2px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  font: inherit; font-size: .95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, .18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364707f' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.field .hint { font-size: .8rem; color: var(--text-muted); }

.checks { display: grid; gap: 11px; }
.check {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .93rem; color: var(--ink-700); cursor: pointer;
}
.check input {
  width: 18px; height: 18px; flex: none; margin-top: 3px;
  accent-color: var(--gold-600); cursor: pointer;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

/* ---------- Alerts ---------- */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  margin-bottom: 20px;
  border: 1px solid;
}
.alert svg { width: var(--ico-lg); height: var(--ico-lg); flex: none; margin-top: 1px; }
.alert--success { background: #eefaf1; border-color: #a8dcb8; color: #1d6b38; }
.alert--error   { background: #fdeeee; border-color: #f0b6b6; color: #a32626; }
.alert--info    { background: #eef4fd; border-color: #b6cdf0; color: #22508f; }
.alert--warning { background: #fdf6e7; border-color: #ecd398; color: #8a6210; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 52px);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.newsletter h3 { color: #fff; font-size: 1.6rem; }
.newsletter p { color: rgba(255, 255, 255, .75); margin: 0; font-size: .95rem; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1 1 200px;
  padding: 14px 18px;
  min-height: 48px;
  border-radius: 999px;
  /* Measured on the lighter end of the card gradient: the old .22 border came
     out at 1.95:1 against navy-600, so the field had no visible edge. */
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .14); color: #fff; font: inherit; font-size: .94rem;
}
/* .55 measured 3.68:1 on navy-600 and failed; .78 gives 5.62:1. */
.newsletter__form input::placeholder { color: rgba(255, 255, 255, .78); }
.newsletter__form input:focus {
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, .2);
}
.newsletter__form input:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
  color: #fff; text-align: center;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(5, 14, 31, .93), rgba(26, 53, 96, .86));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 620px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-top: 44px; list-style: none;
}
.pagination a, .pagination span {
  display: grid; place-items: center;
  min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: 8px;
  background: #fff; font-size: .92rem; font-weight: 500;
  transition: all .2s var(--ease);
}
.pagination a:hover { border-color: var(--gold-500); color: var(--accent-strong); }
.pagination .is-current {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ---------- Empty state ---------- */
.empty {
  text-align: center; padding: 60px 20px;
  background: #fff; border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}
.empty svg { width: var(--ico-hero); height: var(--ico-hero); color: var(--cream-300); margin: 0 auto 16px; }
.empty h3 { color: var(--navy-800); font-size: 1.2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(250, 246, 238, .72);
  font-size: .92rem;
  padding-top: clamp(48px, 6vw, 72px);
}
/* Explicit tracks: auto-fit/auto-fill may not be combined with an `fr`
   track, which silently invalidates the whole declaration. */
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 40px 32px;
  padding-bottom: 44px;
}
.footer__grid > * { min-width: 0; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand .brand__name { color: #fff; font-size: 1.1rem; }
.footer__brand .brand__mark { background: rgba(255, 255, 255, .08); }
.footer__about { max-width: 360px; margin-bottom: 20px; line-height: 1.75; }

.footer h4 {
  color: #fff; font-family: var(--font-body);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { list-style: none; display: grid; gap: 4px; }
.footer__links a {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 36px; padding: 2px 0;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer__links a::before {
  content: ""; width: 0; height: 1px; background: var(--gold-500);
  transition: width .25s var(--ease);
}
.footer__links a:hover { color: var(--gold-400); }
.footer__links a:hover::before { width: 12px; }

.footer__contact { list-style: none; display: grid; gap: 14px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; }
.footer__contact svg { width: var(--ico-md); height: var(--ico-md); flex: none; margin-top: 3px; color: var(--gold-500); }
.footer__contact a:hover { color: var(--gold-400); }

.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .25s var(--ease);
}
.footer__social a:hover {
  background: var(--gold-500); color: var(--navy-900);
  border-color: var(--gold-500); transform: translateY(-3px);
}
.footer__social svg { width: var(--ico-md); height: var(--ico-md); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px;
  font-size: .85rem; color: rgba(250, 246, 238, .55);
}
.footer__fateh { font-family: var(--font-pa); color: var(--gold-400); }

/* Back to top */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold-400);
  border: 1px solid rgba(217, 164, 65, .35);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }
.to-top svg { width: var(--ico-lg); height: var(--ico-lg); }

/* WhatsApp float */
.wa-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  /* A white ring plus a real drop shadow: the button sits over photographs,
     and green-on-green or green-on-dark gave it almost no edge before. */
  box-shadow:
    0 0 0 3px #fff,
    0 10px 28px rgba(0, 0, 0, .30),
    0 4px 10px rgba(37, 211, 102, .55);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.08);
  box-shadow:
    0 0 0 3px #fff,
    0 14px 34px rgba(0, 0, 0, .36),
    0 6px 16px rgba(37, 211, 102, .65);
}
.wa-float svg { width: 34px; height: 34px; }

/* One slow halo so the button is noticed without nagging. Disabled wholesale
   by the prefers-reduced-motion block further down. */
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  animation: waPulse 2.6s cubic-bezier(.4, 0, .6, 1) infinite;
  pointer-events: none;
}
@keyframes waPulse {
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* Step aside once the footer is on screen so it never covers a link. */
.wa-float.is-hidden {
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
/* The nine-item menu needs ~1200px to sit on one line; below that it
   becomes the drawer and the brand is free to shrink. */
/* nav-cramped: just above the drawer breakpoint the nine menu labels, the
   brand and the CTA together need a few more pixels than the container has.
   Tightening the link padding keeps the full menu instead of dropping to the
   drawer on every 1200-wide laptop. */
@media (min-width: 1200px) and (max-width: 1339px) {
  .nav { gap: 14px; }
  .nav__link { padding-inline: 6px; }
  .nav__link.is-active::after { left: 6px; right: 6px; }
}
@media (max-width: 1199px) {
  .nav__menu { display: none; }
  .nav__toggle { display: grid; }
  .brand { flex: 0 1 auto; }
  .brand__name { white-space: normal; overflow-wrap: anywhere; }
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
}

@media (max-width: 1024px) {
  /* Brand block spans the top, the three link columns sit below it. */
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .footer__about { max-width: 560px; }
}

@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic > :nth-child(6) { grid-column: span 2; }
  .split--reverse > *:first-child { order: 0; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }

  .topbar__inner { justify-content: center; min-height: auto; padding-block: 8px; }
  .topbar__right { display: none; }

  .brand__mark { width: 40px; height: 40px; }
  .brand__mark svg { width: var(--ico-xl); height: var(--ico-xl); }
  .brand__name { font-size: .95rem; }
  .brand__name-pa { font-size: .72rem; }
  .nav__actions .btn { display: none; }

  .hero { min-height: 560px; }
  .hero-strip { margin-top: -30px; }
  .hero-strip__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr)); gap: 10px; }
  .mosaic { grid-auto-rows: 130px; gap: 10px; }

  .event { grid-template-columns: 72px 1fr; gap: 14px; padding: 16px; }
  .event__day { font-size: 1.6rem; }

  .split__media--stack { padding-bottom: 0; padding-right: 0; }
  .split__media--stack .split__img-2 { display: none; }
  .split__badge { left: 12px; top: 12px; padding: 10px 16px; font-size: .9rem; }

  .youth-collage { grid-auto-rows: 100px; }

  .testimonial { padding: 24px; }
  .newsletter { padding: 26px; }
  /* flex-basis is the HEIGHT once the container is a column, so the base
     `flex: 1 1 200px` stretched the email field into a 200px-tall oval. */
  .newsletter__form { flex-direction: column; align-items: stretch; }
  .newsletter__form input { flex: 0 0 auto; width: 100%; }
  .newsletter__form .btn { width: 100%; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .wa-float { width: 54px; height: 54px; left: 14px; bottom: 14px; }
  .wa-float svg { width: 30px; height: 30px; }
  .to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  /* Brand and contact span the row; the two link lists sit side by side
     so the footer does not become a very long single column. */
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .footer__grid > :first-child,
  .footer__grid > :last-child { grid-column: 1 / -1; }
  .footer__links a { min-height: 34px; font-size: .88rem; }
}

@media (max-width: 440px) {
  .container { padding-inline: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .filters { gap: 7px; }
  .filter-btn { padding: 7px 14px; font-size: .8rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* Keep the brand on one line beside the menu button. */
  .brand { gap: 9px; }
  .brand__name { font-size: .82rem; }
  .brand__name-pa { font-size: .66rem; }
  .brand__mark { width: 36px; height: 36px; border-radius: 10px; }
  .brand__mark svg { width: var(--ico-lg); height: var(--ico-lg); }
  .nav { gap: 10px; }
}

@media (max-width: 340px) {
  .brand__name { font-size: .75rem; }
  .brand__name-pa { display: none; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .site-footer, .to-top, .wa-float,
  .hero__dots, .filters, .drawer { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 16px 0; }
}
