/* ============================================================
   AN EDGE CONSULTING — PREMIUM DESIGN SYSTEM
   World-class training and consulting website
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Instrument+Serif:ital@0;1&display=swap");

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:       #060f1c;
  --navy:      #0a2240;
  --blue:      #0d4a83;
  --sky:       #2196c8;
  --gold:      #c9901c;
  --gold-lt:   #f0c04a;
  --cream:     #fdf8f0;
  --mist:      #f1f6fa;
  --surface:   #ffffff;
  --muted:     #566370;
  --muted-lt:  #8594a0;
  --line:      #dfe7ef;
  --line-dk:   rgba(10,34,64,.12);
  --shadow-sm: 0 4px 16px rgba(6,15,28,.07);
  --shadow:    0 12px 40px rgba(6,15,28,.10);
  --shadow-lg: 0 28px 80px rgba(6,15,28,.14);
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
  --ease:  cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .64, 1);
  --dur:   280ms;
  --dur-lg: 520ms;
}

::selection {
  background: rgba(33,150,200,.22);
  color: var(--ink);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 88px; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ─────────────────────────────────────────── */
.display {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.01;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; color: var(--ink); }
h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.lead  { font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 640px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.72; }
.em-serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--blue); }

/* ── Announcement bar ───────────────────────────────────── */
.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 10px 20px;
  background: var(--navy);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
  text-align: center;
}
.announcement-text { line-height: 1.4; }
.announcement a {
  color: var(--gold-lt);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.announcement a::after { content: "→"; transition: transform var(--dur) var(--ease); }
.announcement a:hover::after { transform: translateX(3px); }
.announcement-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-lt);
  box-shadow: 0 0 0 0 rgba(240,192,74,.5);
  animation: pulse-ring 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(240,192,74,.45); }
  70% { box-shadow: 0 0 0 10px rgba(240,192,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,192,74,0); }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
}
.skip-link:focus {
  left: 12px;
  outline: 2px solid var(--gold-lt);
  outline-offset: 2px;
}

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(6,15,28,.06);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 0;
}
.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 150ms, background 150ms;
}
.nav-toggle:hover { border-color: rgba(13,74,131,.35); background: var(--mist); }
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 200ms ease, opacity 200ms ease;
}
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(6,15,28,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-overlay[hidden],
.lightbox[hidden] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.nav-links a[aria-current="page"] {
  color: var(--navy);
  background: var(--mist);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0f3d73, var(--sky));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13,74,131,.3);
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background 150ms, color 150ms;
}
.nav-links a:hover { background: var(--mist); color: var(--navy); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
@media (hover: none) {
  .btn:hover { transform: none; }
  .card:hover, .feature-card:hover, .audience-card:hover, .event-card:hover,
  .stat-box:hover, .process-item:hover { transform: none; }
}
.btn-primary {
  background: linear-gradient(135deg, #0f3d73, var(--blue));
  color: #fff;
  box-shadow: 0 10px 28px rgba(13,74,131,.32);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(13,74,131,.40); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #1a0f00;
  box-shadow: 0 10px 28px rgba(201,144,28,.28);
}
.btn-gold:hover { box-shadow: 0 16px 38px rgba(201,144,28,.38); }
.btn-outline {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: rgba(13,74,131,.3); }
.btn-outline-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.55);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn:active { transform: translateY(0) scale(.98); }

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.btn-row .btn { max-width: 100%; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background: linear-gradient(165deg, #f7fbff 0%, #edf5fc 55%, #fdf8f0 100%);
}
/* Dotted grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,74,131,.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* Gold glow top-right */
.hero::after {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,144,28,.18), transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lead { margin-bottom: 28px; max-width: 540px; }
.hero-visual,
.hero-media { position: relative; z-index: 2; }

/* Homepage hero (no carousel) */
.hero--home {
  padding: 88px 0 72px;
  background: linear-gradient(155deg, #f8fbfe 0%, #edf5fc 50%, #fdf9f3 100%);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-photo-stack {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}
.hero-photo-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.8);
}
.hero-photo-main .site-img {
  height: clamp(320px, 38vw, 500px);
  border-radius: 0;
}
.hero-photo-main .site-img img {
  object-fit: cover;
  object-position: center 30%;
}
.hero-feature-card {
  display: block;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -28px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.hero-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,74,131,.2);
}
.hero-feature-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-feature-card strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero-feature-meta {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
}
.hero-feature-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero--home .hero-inner {
  align-items: center;
  gap: 56px;
}
.hero--home .hero-media {
  padding-bottom: 36px;
}

/* Hero stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.stat-box {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-box strong { display: block; font-size: 22px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -0.04em; margin-bottom: 4px; }
.stat-box span { font-size: 12px; font-weight: 600; color: var(--muted-lt); }

/* ── Carousel panel ─────────────────────────────────────── */
.carousel-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(155deg, #0a2240 0%, #0d4a83 60%, #1068b5 100%);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Decorative circles inside panel */
.carousel-panel::before {
  content: "";
  position: absolute;
  top: -90px; right: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.carousel-panel::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(240,192,74,.12);
  pointer-events: none;
}
/* Image slot at top of carousel panel */
.carousel-img-slot {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 210px;
  overflow: hidden;
}
.carousel-copy { position: relative; z-index: 2; }
.carousel-copy .kicker { color: rgba(255,255,255,.6); }
.carousel-copy h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.carousel-copy p { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 0; }
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.cdot {
  width: 28px; height: 5px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: background 200ms, width 200ms;
}
.cdot.active { background: var(--gold-lt); width: 44px; }

/* ── Image placeholder SVG component ───────────────────── */
.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(135deg, #e8f2fa, #d4e8f5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder--dark {
  background: linear-gradient(135deg, #0d2a48, #1058a0);
}
.img-placeholder--warm {
  background: linear-gradient(135deg, #fdf3e3, #f5ddb2);
}
.img-placeholder--muted {
  background: linear-gradient(135deg, #eef4f8, #dbe8f2);
}
.img-placeholder svg { opacity: .32; }
.img-placeholder--dark svg { opacity: .22; }
.img-ph-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.img-placeholder--dark .img-ph-label { color: rgba(255,255,255,.3); }

/* ── Sections ───────────────────────────────────────────── */
.section        { padding: 80px 0; }
.section--lg    { padding: 100px 0; }
.section--sm    { padding: 52px 0; }
.section--navy  { background: var(--navy); }
.section--mist  { background: var(--mist); }
.section--cream { background: var(--cream); }
.section--dark  {
  background: linear-gradient(180deg, #060f1c 0%, #0a2240 100%);
  color: #fff;
  padding: 88px 0;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.65); }
.section--dark .kicker { color: var(--gold-lt); }
.section--dark + .section,
.section--mist + .section,
.section + .section--dark {
  /* clear separation between contrasting bands */
  border-top: none;
}

.event-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}
.section--dark .event-card-label { color: var(--gold-lt); }
.event-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.event-card-meta {
  line-height: 1.5;
}

/* Past programmes spotlight (homepage) */
.section--past-highlights { padding: 96px 0; }
.past-highlights-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.past-highlights-intro .section-head { margin-bottom: 0; }
.past-highlights-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.past-highlights-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 120px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.past-highlights-stats strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-lt);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.past-highlights-stats span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.58);
  text-align: center;
}
.past-highlights-grid { gap: 28px; }
.past-highlights-foot { text-align: center; margin-top: 44px; }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head .kicker { margin-bottom: 8px; }
.section-head h2 { margin-bottom: 14px; }
.section-head.centered { margin: 0 auto 44px; text-align: center; }
.section-head.centered .lead { margin: 0 auto; }
.section-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }

/* ── Grid layouts ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.split-6040 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.split-6040--center { align-items: center; }
.split-5050 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.process-visual__frame {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process-visual .site-img {
  width: 100%;
  height: var(--img-h, 520px);
  border-radius: 0;
}
.process-visual .site-img img {
  object-fit: cover;
  object-position: center center;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,74,131,.2);
  box-shadow: var(--shadow);
}
.card-body { padding: 28px; }
.card-accent-bar { height: 4px; background: linear-gradient(90deg, var(--sky), var(--gold-lt)); }
.card-img { width: 100%; }
.card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(33,150,200,.1);
  margin-bottom: 12px;
}

/* Feature cards */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms, box-shadow 220ms;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mist), #d4e9f7);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { color: var(--blue); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 15px; margin-bottom: 0; }

/* ── Dark panel ─────────────────────────────────────────── */
.dark-panel {
  background: linear-gradient(145deg, #060f1c, var(--navy) 60%, #0d4a83);
  border-radius: var(--r-xl);
  padding: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dark-panel::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,74,.15), transparent 65%);
  pointer-events: none;
}
.dark-panel h2, .dark-panel h3 { color: #fff; }
.dark-panel p, .dark-panel .kicker { color: rgba(255,255,255,.6); }
.dark-panel .kicker { color: var(--gold-lt); }

/* Callout section — spacing above the band (do not zero padding-top) */
.section--callout {
  padding-top: 72px;
  padding-bottom: 88px;
}
.section + .section--callout {
  padding-top: 56px;
}

/* ── Callout band ───────────────────────────────────────── */
.callout-band {
  background: linear-gradient(135deg, var(--cream), #fff9f0);
  border: 1px solid rgba(201,144,28,.22);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.callout-band::before {
  content: "";
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,144,28,.15);
  pointer-events: none;
}
.callout-band::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(240,192,74,.08);
  pointer-events: none;
}
.callout-band--center { text-align: center; }
.callout-band--center .lead { margin-left: auto; margin-right: auto; }

/* ── Timeline ───────────────────────────────────────────── */
.process-list { display: grid; gap: 16px; }
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.process-item:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.process-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a2240, var(--blue));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.process-item h3 { font-size: 16px; margin-bottom: 4px; }
.process-item p  { font-size: 14px; margin-bottom: 0; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after  { content: "\201D"; }
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line);
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--muted-lt); font-weight: 600; }

/* ── Capability tags ────────────────────────────────────── */
.capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.capability-grid--page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 12px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.capability-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition: background 180ms, border-color 180ms, transform 180ms, box-shadow 180ms;
}
.capability-tag:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); }
.capability-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }
/* Light mist section — must follow .capability-tag (same specificity, later wins) */
.capability-tag.capability-tag--light {
  background: var(--surface);
  border: 1px solid var(--line-dk);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.capability-tag.capability-tag--light:hover {
  border-color: rgba(13,74,131,.35);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.capability-tag.capability-tag--light .capability-tag-dot {
  background: var(--sky);
  box-shadow: 0 0 0 2px rgba(33,150,200,.15);
}
@media (max-width: 640px) {
  .capability-grid--page {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .capability-tag.capability-tag--light {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ── Audience cards ─────────────────────────────────────── */
.audience-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms, box-shadow 220ms;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.audience-img { height: 180px; }
.audience-body { padding: 26px; }
.audience-body h3 { margin-bottom: 8px; }
.audience-body p  { font-size: 15px; margin-bottom: 14px; }

/* ── Event cards ────────────────────────────────────────── */
.event-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0);
  transition: box-shadow var(--dur) var(--ease);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.event-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(13,74,131,.08);
}
.event-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.event-card-img .site-img img {
  transition: transform var(--dur-lg) var(--ease);
}
.event-card:hover .event-card-img .site-img img {
  transform: scale(1.06);
}
.event-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.event-card-meta { font-size: 13px; font-weight: 700; color: var(--sky); margin-bottom: 8px; }
.event-card h3   { margin-bottom: 10px; }
.event-card p    { font-size: 15px; margin-bottom: 18px; flex: 1; }
.event-card .btn { margin-top: auto; align-self: flex-start; }

/* Past programme spotlight cards (homepage dark section) */
.event-card--past-spotlight {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
}
.event-card--past-spotlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.38);
  border-color: rgba(212,175,55,.4);
}
.event-card--past-spotlight .event-card-img {
  height: 252px;
  position: relative;
}
.event-card--past-spotlight .event-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,15,28,.15) 0%, rgba(6,15,28,.55) 45%, rgba(6,15,28,.92) 100%);
  pointer-events: none;
}
.event-card-img .event-card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}
.event-card-img .event-card-hit:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: -4px;
  border-radius: 0;
}
.event-card-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 20px 20px;
  pointer-events: none;
}
.event-card-cap .year-tag {
  margin-bottom: 8px;
  background: rgba(212,175,55,.28);
  border: 1px solid rgba(212,175,55,.5);
  color: #fff;
  font-weight: 800;
}
.event-card--past-spotlight .event-card-cap-title {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.3;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card--past-spotlight .event-card-body {
  padding: 20px 22px 22px;
  background: var(--surface);
  color: var(--ink);
}
.event-card--past-spotlight .event-card-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue) !important;
  margin-bottom: 10px;
}
.event-card--past-spotlight .event-card-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted) !important;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card--past-spotlight .event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue) !important;
  transition: gap 180ms var(--ease), color 180ms;
}
.event-card--past-spotlight .event-card-cta:hover {
  gap: 10px;
  color: var(--navy) !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.faq-item p  { font-size: 15px; margin-bottom: 0; }

/* ── Page hero ──────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(165deg, #f7fbff, #edf5fc 60%, #fdf8f0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,74,131,.09) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero .kicker { margin-bottom: 12px; }
.page-hero h1     { margin-bottom: 18px; }
.page-hero .lead  { margin-bottom: 28px; }
.page-hero-inner  { position: relative; z-index: 2; }

/* ── About page ─────────────────────────────────────────── */
.about-hero-img {
  width: 100%; height: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-pillar {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.about-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mist), #c8e3f4);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pillar-list { display: grid; gap: 14px; }

/* ── Contact page ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 6px; }
.contact-form { display: grid; gap: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
  transition: border-color 150ms, box-shadow 150ms;
  background: var(--mist);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(33,150,200,.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; }
.form-alert {
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 24px;
  font-size: 14px;
}
.form-alert--ok {
  background: rgba(33,150,200,.08);
  border: 1px solid rgba(33,150,200,.2);
}
.form-alert--ok strong { color: var(--blue); display: block; margin-bottom: 4px; }
.form-alert--err {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.2);
  color: #b91c1c;
  padding: 16px;
  margin-bottom: 20px;
}
.contact-tips {
  margin-top: 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
}
.contact-tips h3 { font-size: 16px; margin-bottom: 10px; }
.contact-tips ul { list-style: none; display: grid; gap: 8px; }
.contact-tips li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.contact-tips li span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  margin-top: 7px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 20px;
  padding: 4px 0;
}
.back-link:hover { color: var(--navy); }
.event-details-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.event-details-body { padding: 24px; }
.event-details-body h3 { font-size: 16px; margin-bottom: 14px; }
.event-detail-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.event-detail-row + .event-detail-row { margin-top: 10px; }
.event-detail-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-lt);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.event-detail-value { font-size: 14px; font-weight: 600; color: var(--ink); }
.event-badge--light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(13,74,131,.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.contact-details { display: grid; gap: 14px; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { color: #fff; }
.contact-item-body h3 { font-size: 15px; margin-bottom: 3px; }
.contact-item-body p  { font-size: 14px; margin-bottom: 0; color: var(--muted-lt); }
.contact-map {
  width: 100%; height: 300px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 64px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-brand p  { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; }
.footer-col h4   { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a    { display: block; color: rgba(255,255,255,.55); font-size: 14px; margin-bottom: 10px; transition: color 150ms; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Divider ─────────────────────────────────────────────── */
.divider { border: none; height: 1px; background: var(--line); margin: 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .hero-inner, .split-6040, .split-5050, .contact-grid { grid-template-columns: 1fr; }
  .split-6040--center { align-items: stretch; }
  .process-visual { margin-top: 8px; }
  .process-visual__frame { max-width: 100%; }
  .hero-inner { gap: 40px; }
  .hero-visual,
  .hero-media { order: -1; }
  .hero-photo-stack { max-width: 100%; margin: 0 auto; }
  .hero-feature-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-row .btn { width: 100%; justify-content: center; }
  .dark-panel, .callout-band { padding: 40px; }
  .about-hero-img { height: 360px; }
  .page-hero { padding: 56px 0 44px; }
  .page-hero .split-5050 > div:last-child { order: -1; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: min(320px, 88vw);
    height: 100dvh;
    margin: 0;
    padding: 88px 20px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgba(6,15,28,.12);
    transform: translateX(100%);
    transition: transform 280ms ease;
    overflow-y: auto;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--r-sm);
  }
}

@media (max-width: 640px) {
  .container, .container--wide { padding: 0 18px; }
  html { scroll-padding-top: 76px; }
  .announcement { font-size: 12px; padding: 10px 14px; }
  .brand { font-size: 15px; gap: 9px; }
  .brand-mark { width: 36px; height: 36px; font-size: 12px; border-radius: 10px; }
  .site-nav { height: 64px; }
  .hero,
  .hero--home { padding: 48px 0 40px; }
  .hero--home .hero-media { padding-bottom: 0; }
  .hero-badges { justify-content: center; }
  .section { padding: 52px 0; }
  .section--lg { padding: 64px 0; }
  .section--sm { padding: 40px 0; }
  .section-head { margin-bottom: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 18px; }
  .past-highlights-stats { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .past-highlights-stats li { min-width: 0; }
  .section--past-highlights { padding: 72px 0; }
  .event-card--past-spotlight .event-card-img { height: 210px; }
  .event-card--past-spotlight .event-card-body { padding: 18px 16px 20px; }
  .calendar-section-head { flex-direction: column; align-items: center; text-align: center; }
  .calendar-section-copy { text-align: center; }
  .calendar-schedule { padding-left: 0; }
  .calendar-schedule::before,
  .cal-event-card::before { display: none; }
  .cal-event-card { grid-template-columns: 1fr; }
  .cal-event-card:hover { transform: translateY(-4px); }
  .cal-event-date {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 14px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .cal-event-days { font-size: 24px; }
  .cal-event-body { padding: 20px 18px 22px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-box { padding: 14px 12px; }
  .stat-box strong { font-size: 18px; }
  .stat-box span { font-size: 11px; }
  .trust-pill { font-size: 11px; padding: 6px 11px; }
  .dark-panel, .callout-band { padding: 28px 22px; border-radius: var(--r-lg); }
  .callout-band .btn-row .btn,
  .hero-copy .btn-row .btn,
  .page-hero .btn-row .btn { flex: 1 1 100%; justify-content: center; white-space: normal; text-align: center; }
  .btn { white-space: normal; }
  .btn-lg { padding: 14px 20px; font-size: 15px; }
  .hero-photo-main .site-img { height: 260px; }
  .event-badge { font-size: 11px; line-height: 1.45; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .lead { font-size: 16px; line-height: 1.7; }
  h1 { font-size: clamp(32px, 8.5vw, 38px); }
  h2 { font-size: clamp(26px, 6.5vw, 30px); }
  .testimonial-quote { font-size: 19px; }
  .testimonial-card { padding: 26px; }
  .feature-card, .card-body { padding: 24px; }
  .process-item { padding: 18px; grid-template-columns: 48px 1fr; gap: 14px; }
  .process-item:hover { transform: none; }
  .about-hero-img { height: 260px; border-radius: var(--r-lg); }
  .contact-form-card { padding: 24px 20px; border-radius: var(--r-lg); }
  .contact-form-card h2 { font-size: 22px; }
  .contact-map { height: 220px; }
  .contact-item { padding: 18px; }
  .faq-item { padding: 20px; }
  .capability-tag { font-size: 13px; padding: 10px 14px; }
  .section-row .section-head { margin-bottom: 0; }
  .page-hero .split-5050 { gap: 28px !important; }
  .callout-band .split-5050 > div:last-child { margin-top: 8px; }
}

@media (max-width: 380px) {
  .brand-name { max-width: 140px; }
  .stat-row { grid-template-columns: 1fr; }
}

/* ── Real photos from media archive ─────────────────────── */
.site-img {
  position: relative;
  width: 100%;
  height: var(--img-h, 280px);
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  background: var(--mist);
}
.site-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.event-card-img .site-img { height: 200px; border-radius: 0; }
.gallery-thumb.site-img { height: 220px; border-radius: var(--r-md); }

.hero--photo,
.page-hero--photo {
  position: relative;
  isolation: isolate;
}
.hero--photo::before,
.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}
.hero--photo::after,
.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(247,251,255,.94) 0%, rgba(237,245,252,.9) 55%, rgba(253,248,240,.92) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero--photo > .container,
.page-hero--photo > .container { position: relative; z-index: 1; }

.carousel-panel--photo {
  background: #0a2240;
}
.carousel-img-slot--photo {
  position: absolute;
  inset: 0;
  height: 100% !important;
  z-index: 0;
}
.carousel-slide-bg {
  position: absolute;
  inset: 0;
}
.carousel-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6,15,28,.08) 0%,
    rgba(6,15,28,.28) 42%,
    rgba(6,15,28,.78) 100%
  );
}
.carousel-img-slot--photo .site-img,
.carousel-img-slot--photo .site-img img {
  height: 100%;
  opacity: 0.6;
}
.carousel-slide-bg.is-active .site-img,
.carousel-slide-bg.is-active .site-img img {
  opacity: 0.65;
}
.carousel-panel--photo .carousel-copy {
  margin-top: auto;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

.year-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(33,150,200,.12);
  color: var(--blue);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 4px;
}
.year-tag--upcoming { background: rgba(201,144,28,.18); color: #8a5f00; }

/* ── 2026 public calendar (events page) ─────────────────── */
.section--calendar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef5fb 0%, var(--mist) 45%, #e4eef6 100%);
}
.section--calendar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,74,131,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,74,131,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.section--calendar > .container { position: relative; z-index: 1; }

.calendar-section-head {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 28px;
}
.calendar-section-copy { margin-bottom: 0; max-width: 640px; }
.calendar-year-plate {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy), #0d4a83);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(10,34,64,.22);
  position: relative;
  border: 2px solid rgba(255,255,255,.12);
}
.calendar-year-plate__ring {
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px dashed rgba(212,175,55,.45);
  pointer-events: none;
}
.calendar-year-plate__year {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-lt);
}
.calendar-year-plate__sub {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 0 0 28px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.calendar-legend li { display: inline-flex; align-items: center; gap: 8px; }
.calendar-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.calendar-legend-dot--open { background: var(--gold); box-shadow: 0 0 0 3px rgba(201,144,28,.2); }
.calendar-legend-dot--hrd { background: var(--sky); box-shadow: 0 0 0 3px rgba(33,150,200,.2); }
.calendar-legend-dot--venue { background: var(--navy); box-shadow: 0 0 0 3px rgba(10,34,64,.12); }

.calendar-schedule {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding-left: 8px;
}
.calendar-schedule::before {
  content: "";
  position: absolute;
  left: 59px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--sky), rgba(201,144,28,.85));
  border-radius: 2px;
  opacity: .45;
}

.cal-event-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.cal-event-card::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px rgba(201,144,28,.35);
  z-index: 1;
}
.cal-event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(13,74,131,.22);
}

.cal-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 22px 14px;
  background: linear-gradient(180deg, #0a2240 0%, #0d4a83 100%);
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.cal-event-month {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--gold-lt);
}
.cal-event-days {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cal-event-year {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.cal-event-body {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cal-event-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
}
.cal-event-hrd {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .03em;
}
.cal-event-title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.3;
}
.cal-event-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 180ms;
}
.cal-event-title a:hover { color: var(--blue); }
.cal-event-when,
.cal-event-venue {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 8px;
}
.cal-event-when svg,
.cal-event-venue svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sky);
}
.cal-event-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 6px 0 18px;
}
.cal-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.calendar-section-foot {
  margin-top: 40px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.calendar-section-foot p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.events-year-block { margin-bottom: 56px; }
.events-year-block:last-child { margin-bottom: 0; }
.events-year-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold-lt);
  display: inline-block;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.event-gallery-item {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.event-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.event-gallery-item .site-img { height: 180px; }

.page-hero-cover {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-hero-cover .site-img { height: 360px; }

@media (max-width: 640px) {
  .event-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .event-gallery-item .site-img { height: 140px; }
  .page-hero-cover .site-img { height: 240px; }
  .carousel-panel--photo .carousel-copy { padding-top: 100px; }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM POLISH — animations, lightbox, components
   ══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
}
.reveal-stagger.is-visible .reveal-child,
.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

/* Logo marquee */
.logo-strip {
  padding: 28px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.logo-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-bottom: 16px;
}
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 48px;
  width: max-content;
  will-change: transform;
  animation: logo-marquee 32s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.logo-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 56px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: opacity .2s ease, transform .2s ease;
}
.logo-marquee-item:hover { opacity: .85; transform: scale(1.03); }
.logo-marquee-item img {
  display: block;
  max-width: 160px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.logo-marquee-item img[src$=".svg"] { max-height: 52px; }

/* FAQ accordion */
.faq-accordion { display: grid; gap: 10px; }
.faq-details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-details[open] {
  border-color: rgba(33,150,200,.35);
  box-shadow: var(--shadow);
}
.faq-details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 48px 20px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--sky);
  transition: transform var(--dur) var(--ease);
}
.faq-details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq-details summary:hover { color: var(--blue); }
.faq-details p {
  padding: 0 22px 20px;
  font-size: 15px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* Events year filter */
.events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  font-family: inherit;
}
.filter-pill:hover {
  border-color: rgba(13,74,131,.3);
  color: var(--navy);
}
.filter-pill.is-active {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(13,74,131,.25);
}
.events-year-block.is-hidden { display: none; }

/* Gallery zoom icon */
.event-gallery-item { position: relative; }
.gallery-zoom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.85);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}
.event-gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox — only visible when open (never use display: on base; it breaks [hidden]) */
.lightbox.is-open {
  display: grid;
  place-items: center;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 24px;
  background: rgba(6,15,28,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.lightbox-open { overflow: hidden; }
.lightbox-inner {
  max-width: min(1100px, 96vw);
  max-height: 85vh;
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.lightbox-caption {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin-top: 14px;
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Footer CTA band */
.footer-cta {
  background: linear-gradient(135deg, #060f1c 0%, var(--navy) 45%, #0d4a83 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,74,.15), transparent 65%);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-cta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}
.footer-cta p {
  color: rgba(255,255,255,.62);
  max-width: 520px;
  margin: 0;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13,74,131,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  display: grid;
  place-items: center;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(13,74,131,.4);
}

/* Testimonial polish */
.testimonial-card {
  position: relative;
  border-left: 4px solid var(--gold-lt);
}
.testimonial-quote {
  position: relative;
  z-index: 1;
}

/* Carousel fade */
.carousel-slide,
.carousel-slide-bg {
  transition: opacity var(--dur-lg) var(--ease);
}
.carousel-slide-bg:not(.is-active) .site-img,
.carousel-slide-bg:not(.is-active) .site-img img {
  opacity: 0.35;
}

/* Stat boxes gradient top */
.stat-box {
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--gold-lt));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.stat-box:hover::before { opacity: 1; }

/* Image load shimmer */
.site-img img {
  transition: transform var(--dur-lg) var(--ease), opacity .4s ease;
}
.site-img img[loading="lazy"] {
  background: linear-gradient(90deg, var(--mist) 25%, #e8f2fa 50%, var(--mist) 75%);
  background-size: 200% 100%;
}

/* Contact item hover */
.contact-item {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(33,150,200,.25);
}

@media (max-width: 940px) {
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta .btn-row { justify-content: center; width: 100%; }
  .footer-cta p { margin: 0 auto; }
}
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .back-to-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
  .logo-marquee-track { gap: 32px; animation-duration: 24s; }
  .logo-marquee-item { min-width: 100px; height: 48px; }
  .logo-marquee-item img { max-width: 130px; max-height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child { opacity: 1; transform: none; transition: none; }
  .logo-marquee { mask-image: none; }
  .logo-marquee-track { animation: none; justify-content: center; width: 100%; flex-wrap: wrap; gap: 24px 32px; }
  .logo-marquee-item[tabindex="-1"] { display: none; }
  .announcement-pulse { animation: none; }
}
