:root {
  /* ── Surfaces & neutrals ─────────────────────────────── */
  --bg: #061815;
  --bg-soft: #f4faf8;
  --surface: #ffffff;
  --surface-dark: #0b2621;
  --text: #1a1a1a;               /* 90% Black (Charcoal) — body copy default */
  --text-light: #f3fbf8;
  --text-heading: #0c211d;
  --text-secondary: #1a1a1a;     /* 90% Black (Charcoal) — brand-compliant body */
  --muted: #5c736d;
  --line: #cfe1da;

  /* ── Brand-compliant body text colours (Open Sans) ───── */
  --body-text: #000000;          /* Pure Black */
  --body-text-charcoal: #1a1a1a; /* 90% Black (Charcoal) */
  --heading-primary: #004774;    /* Deep Current Blue for headings */
  --heading-secondary: #82BB26;  /* Hydrogen Green for accents/subheadings */
  --heading-on-dark: var(--text-light);

  /* ── AGHS 2026 brand palette ─────────────────────────── */
  --hydrogen-green:     #82BB26;   /* Primary — vibrant, energetic */
  --earth-core-green:   #47752D;   /* Secondary green — grounded   */
  --atmosphere-blue:    #94D4F0;   /* Light, breathable, clean     */
  --solar-flare-yellow: #E0D900;   /* Accent — bold, high-energy   */
  --deep-current-blue:  #004774;   /* Authority, technical         */
  --gridline-blue:      #1C75BC;   /* Structured, infrastructure   */

  /* ── Semantic aliases (mapped to brand) ─────────────── */
  --primary:              #004774;   /* Deep Current Blue  */
  --primary-strong:       #003a5e;   /* Deep Current Blue –15% */
  --secondary:            #82BB26;   /* Hydrogen Green     */
  --section-blue-surface: linear-gradient(
      150deg,
      #04121c 0%,
      #052842 40%,
      #004774 72%,
      #031929 100%
    );
  --section-blue-surface-balanced:
    radial-gradient(circle at 16% 28%, rgba(28, 117, 188, 0.12) 0%, transparent 40%),
    linear-gradient(150deg, #082238 0%, #0a314d 36%, #004774 72%, #031929 100%);
  --section-blue-glow-strong: radial-gradient(
      circle,
      rgba(28, 117, 188, 0.24) 0%,
      transparent 68%
    );
  --section-blue-glow-soft: radial-gradient(
      circle,
      rgba(0, 71, 116, 0.18) 0%,
      transparent 70%
    );
  --summit-bar-gradient:  linear-gradient(
      90deg,
      rgba(20, 52, 27, 0.2) 0%,
      rgba(14, 44, 35, 0.15) 22%,
      rgba(0, 53, 74, 0.19) 48%,
      rgba(0, 53, 86, 0.22) 78%,
      rgba(0, 35, 58, 0.28) 100%
    ),
    linear-gradient(
      90deg,
      rgb(71, 126, 48) 0%,
      rgb(101, 151, 48) 14%,
      rgb(125, 181, 46) 26%,
      rgb(103, 176, 91) 39%,
      rgb(79, 161, 142) 51%,
      rgb(61, 146, 183) 65%,
      rgb(36, 120, 180) 80%,
      rgb(16, 93, 149) 90%,
      rgb(0, 71, 116) 100%
    );
  --brand-accent:         #E0D900;   /* Solar Flare Yellow */
  --brand-accent-strong:  #b8b200;   /* Solar Flare Yellow –10% */
  --brand-accent-ink:     #1a260d;
  --brand-green-light:    #94D4F0;   /* Atmosphere Blue    */

  /* ── Borders ──────────────────────────────────────────── */
  --border: #d4e4dd;
  --border-strong: #bed9cf;

  /* ── Container system ───────────────────────────────── */
  --container-max:      1520px;             /* Unified content column — matches hero */
  --container-max-wide: 1520px;             /* Wide sections (hero, impact, map) */
  --container-gutter:   max(1.5rem, 4vw);  /* Unified responsive mobile gutter */
  --header-container-max: 1680px;
  --header-container-fluid: 97vw;

  /* ── Layout & effects ───────────────────────────────── */
  --header-height: 124px;
  --shadow: 0 24px 60px rgba(4, 29, 24, 0.16);
  --card-radius: 0.4rem;

  /* ── Radius scale ─────────────────────────────────────── */
  --radius-sm:     0.35rem;
  --radius-md:     var(--card-radius);
  --radius-lg:     0.95rem;
  --radius-pill:   999px;
  --radius-circle: 50%;

  /* ── Shadow scale ─────────────────────────────────────── */
  --shadow-sm: 0 4px 12px rgba(6, 20, 17, 0.08);
  --shadow-md: 0 8px 24px rgba(8, 26, 22, 0.13);
  --shadow-lg: 0 14px 30px rgba(7, 34, 28, 0.12);
  --shadow-xl: 0 24px 60px rgba(4, 29, 24, 0.16);

  /* ── Typography — AGHS 2026 brand fonts ─────────────── */
  --font-body:        "Open Sans",   sans-serif;  /* Body copy — sentence case */
  --font-heading:     "Montserrat",  sans-serif;  /* Titles — Bold, Title/UPPER */

  /* ── Typography scale ──────────────────────────────── */
  --text-xs:   0.75rem;    /* 12px — labels, tags, eyebrows       */
  --text-sm:   0.8125rem;  /* 13px — metadata, secondary info     */
  --text-base: 0.875rem;   /* 14px — table cells, card copy       */
  --text-md:   1rem;       /* 16px — comfortable body copy        */
  --text-lg:   1.125rem;   /* 18px — lead paragraphs              */
  --text-xl:   1.25rem;    /* 20px — prominent body               */

  /* ── Transitions ──────────────────────────────────────── */
  --ease-default: cubic-bezier(0.22, 0.68, 0, 1);
  --duration-fast: 0.18s;
  --duration-base: 0.28s;
  --duration-slow: 0.45s;

  /* ── Form states ──────────────────────────────────────── */
  --focus-ring:   #99d4bf;
  --focus-border: #8bc9b2;
  --error:        #c0392b;
  --error-bg:     #fdf2f2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
  position: relative;
  isolation: isolate;
  background: linear-gradient(125deg, #ffffff 0%, #eefaf5 42%, #f8fffc 100%);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 111, 178, 0.28), transparent 37%),
    radial-gradient(circle at 76% 16%, rgba(240, 154, 42, 0.24), transparent 35%),
    radial-gradient(circle at 80% 78%, rgba(24, 79, 138, 0.16), transparent 42%);
  filter: blur(28px) saturate(112%);
  animation: ambientFloat 18s ease-in-out infinite alternate;
}

body::after {
  background:
    repeating-linear-gradient(
      -12deg,
      rgba(31, 111, 178, 0.07) 0px,
      rgba(31, 111, 178, 0.07) 2px,
      transparent 2px,
      transparent 52px
    );
  opacity: 0.45;
  animation: ambientSweep 22s linear infinite;
}

@keyframes ambientFloat {
  0% {
    transform: translate3d(-2%, 0%, 0) scale(1);
  }

  50% {
    transform: translate3d(1.6%, -1.4%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(2.8%, 1.2%, 0) scale(1.08);
  }
}

@keyframes ambientSweep {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(64px);
  }
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -200px;
  z-index: 2000;
  padding: 0.55rem 0.9rem;
  border: 1px solid #ffffff;
  background: var(--surface-dark);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 0.85rem;
  outline: 2px solid #f09a2a;
  outline-offset: 2px;
}

.container {
  width: min(var(--container-max), 96vw);
  margin: 0 auto;
}

.site-header .container {
  width: min(var(--header-container-max), var(--header-container-fluid));
}

/* ══════════════════════════════════════════════════════════════════
   SITE HEADER — transparent by default on every page,
   becomes solid once the user scrolls (via .is-scrolled class
   toggled by ui.js → initHeaderScrollState).
   ══════════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(0);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(16, 35, 31, 0.12);
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 124px;
  transition: min-height 0.3s ease;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 148px;
}

/* ── Brand / Logo ── */

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  line-height: 0;
  gap: 0;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 180px;
  object-fit: contain;
  display: block;
  transform: scale(1);
  transform-origin: left center;
  transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* White logo visible by default (transparent header over dark hero) */
.brand .brand-logo--dark {
  display: none;
}

/* On scroll: show colour logo, hide white logo */
.site-header.is-scrolled .brand .brand-logo--light {
  display: none;
}

.site-header.is-scrolled .brand .brand-logo--dark {
  display: block;
}

.site-header.is-scrolled .brand img {
  height: 125px;
  transform: translateY(0.18rem) scale(1.14);
}

.brand strong {
  color: var(--secondary);
}

/* ── Brand lockup text (desktop only) ── */
.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1.25;
  letter-spacing: normal;
  transition: border-color 0.3s ease;
}

.brand__name {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.brand__tagline {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Scrolled state */
.site-header.is-scrolled .brand__text {
  border-left-color: rgba(16, 35, 31, 0.16);
}

.site-header.is-scrolled .brand__name {
  color: var(--text);
}

.site-header.is-scrolled .brand__tagline {
  color: rgba(16, 35, 31, 0.52);
}

/* ── Mobile menu toggle ── */

.mobile-menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.24s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  transform: translateY(-1px);
}

.site-header.is-scrolled .mobile-menu-toggle {
  background: transparent;
  border-color: transparent;
}

.mobile-menu-toggle__line {
  width: 1.2rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.site-header.is-scrolled .mobile-menu-toggle__line {
  background: #1a312b;
}

/* ── Primary nav ── */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: nowrap;
  gap: 1.6rem;
  margin: 0 1rem;
}

.main-nav a {
  position: relative;
  color: #edf8f4;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  background: var(--hydrogen-green);
}

/* Transparent header: white text, blue underline */
.main-nav a[aria-current="page"] {
  color: #ffffff;
}

.nav-dropdown a[aria-current="page"] {
  color: var(--primary);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scrolled (white) header: blue text, no underline */
.site-header.is-scrolled .main-nav a {
  color: #1a312b;
}

.site-header.is-scrolled .main-nav a[aria-current="page"] {
  color: var(--primary);
}

.site-header.is-scrolled .main-nav a[aria-current="page"]::after {
  transform: scaleX(0);
}

/* ── Nav dropdown ── */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.nav-chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.nav-item--has-dropdown:hover .nav-chevron,
.nav-item--has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-4px);
  min-width: 200px;
  padding: 12px 0 0.35rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.nav-dropdown::before {
  display: none;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Invisible bridge fills the gap between trigger and panel so hover never breaks */
.nav-dropdown::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  color: #1a2e25;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--primary);
  background-color: rgba(0, 71, 116, 0.06);
}

/* ── Nav utilities (countdown) ── */

.nav-utilities {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  flex: 0 0 auto;
}

.nav-countdown {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #e9faf4;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-countdown__time {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.nav-countdown__unit {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
}

.nav-countdown__unit span {
  display: inline-block;
  min-width: 1.4ch;
  text-align: right;
  line-height: 1;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-countdown__unit small {
  line-height: 1;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.site-header.is-scrolled .nav-countdown {
  color: #2a4a42;
}

.site-header.is-scrolled .nav-countdown__unit small {
  color: rgba(16, 35, 31, 0.6);
}

/* ── Nav Enquire button ── */
.nav-enquire {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: rgba(10, 32, 28, 0.85);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.nav-enquire:hover,
.nav-enquire:focus-visible {
  background: rgba(6, 55, 40, 0.98);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  outline: none;
}

.site-header.is-scrolled .nav-enquire {
  color: #ffffff;
  background: #0e3528;
  border-color: rgba(255, 255, 255, 0.25);
}

.site-header.is-scrolled .nav-enquire:hover,
.site-header.is-scrolled .nav-enquire:focus-visible {
  background: rgba(6, 55, 40, 0.98);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
/* ──────────────────────────────────────────────────────────────────────────
   Buttons — single source of truth
   Variations are modifiers on the base .btn class. No colour overrides
   should exist anywhere else in the codebase.
   ────────────────────────────────────────────────────────────────────────── */

/* Base — primary (Deep Current Blue) ------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid var(--deep-current-blue);
  border-radius: 0.25rem;
  background: var(--deep-current-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color     0.22s ease,
    color            0.22s ease,
    box-shadow       0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  outline: none;
}

/* Ghost — transparent outline ------------------------------------------- */
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

/* Small size variant ----------------------------------------------------- */
.btn--small {
  padding: 0.6rem 1.15rem;
  font-size: var(--text-xs);
}

.hero .hero-actions .btn:not(.btn--ghost),
.prog-cs__actions .btn:not(.btn--ghost) {
  border-color: var(--hydrogen-green);
  background-color: var(--hydrogen-green);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(4, 26, 21, 0.24);
}

.hero .hero-actions .btn:not(.btn--ghost):hover,
.hero .hero-actions .btn:not(.btn--ghost):focus-visible,
.prog-cs__actions .btn:not(.btn--ghost):hover,
.prog-cs__actions .btn:not(.btn--ghost):focus-visible {
  border-color: var(--hydrogen-green);
  background-color: #76ab22;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(4, 26, 21, 0.28);
}

/* ── Shared CTA underline animation ────────────────────────────────────── */

.about__cta::after,
.focus-cta::after,
.gallery-year-cta::after,
.footer-cta::after,
.opp-recommend--journey .opp-recommend__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--brand-accent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.32s var(--ease-default);
}

.about__cta::after {
  background: var(--primary);
}

.about__cta:hover::after,
.about__cta:focus-visible::after,
.focus-cta:hover::after,
.focus-cta:focus-visible::after,
.gallery-year-cta:hover::after,
.gallery-year-cta:focus-visible::after,
.footer-cta:hover::after,
.footer-cta:focus-visible::after,
.opp-recommend--journey .opp-recommend__cta:hover::after,
.opp-recommend--journey .opp-recommend__cta:focus-visible::after {
  transform: scaleX(1);
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom left, #3c9b73 0%, #0f463a 44%, #031410 100%);
  color: var(--text-light);
  min-height: calc(64vh - var(--header-height));
  min-height: calc(64svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 5rem 0 5rem;
}

.hero .container {
  width: min(var(--container-max-wide), 96vw);
}

.above-fold {
  display: flex;
  flex-direction: column;
}

.above-fold .hero {
  min-height: calc(85vh - var(--header-height));
  min-height: calc(85svh - var(--header-height));
}

/* All heroes extend behind the transparent fixed header.
   Each hero handles its own top padding to clear the nav. */
body[data-page="home"] .hero {
  margin-top: 0;
  min-height: calc(78vh - var(--header-height));
  min-height: calc(78svh - var(--header-height));
  padding-top: calc(4rem + var(--header-height));
  padding-bottom: 4rem;
}

/* Inner-page hero (shared by resources, plan-your-trip, enquiries,
   opportunities, saghs-2022, saghs-2023, past-events, etc.) */
.programme-page-hero {
  padding-top: calc(2.8rem + var(--header-height));
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(0, 71, 116) 0%, rgb(0, 71, 116) 40%, rgba(0, 71, 116, 0) 100%);
  pointer-events: none;
  animation: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/stock-images/AdobeStock_713788288.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transform: scale(1.02);
  will-change: transform, opacity;
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 0;
}

.eyebrow {
  margin: 0;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--heading-secondary);
}

.eyebrow.dark {
  color: var(--heading-primary);
}

.hero-copy h1,
.section-head h2,
.focus-stream h3,
.about__title,
.partners__title {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.6vw, 5.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: none;
  text-transform: uppercase;
}

/* Inner-page hero headings — smaller than home / programme.
   High specificity beats all responsive .hero-copy h1 overrides. */
body:not([data-page="home"]):not([data-page="programme"]) .hero-copy h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: var(--heading-secondary);
}

.hero-lead {
  margin: 0;
  padding-top: 0.5rem;
  max-width: none;
  white-space: nowrap;
  color: #d6eee6;
  font-size: 1.02rem;
}

/* ── SAGHS 2022 / SAGHS 2023 / Enquiries hero lead ──────────────────────
   Root cause: .programme-page-intro { max-width: 74ch } in _home.css
   constrains the whole intro block, making the lead paragraph narrow.
   Override that cap for these three pages so the text spans the full
   container width and wraps only when the viewport forces it to.
   white-space: nowrap (the base .hero-lead rule) is also cleared so
   text can wrap naturally instead of overflowing.
   The programme page's 74ch cap is intentional and stays untouched.  */
body[data-page="saghs-2022"] .programme-page-intro,
body[data-page="saghs-2023"] .programme-page-intro,
body[data-page="saghs-2025"] .programme-page-intro,
body[data-page="enquiries"]  .programme-page-intro {
  max-width: none;
  width: 100%;
}

body[data-page="saghs-2022"] .hero-lead,
body[data-page="saghs-2023"] .hero-lead,
body[data-page="saghs-2025"] .hero-lead,
body[data-page="enquiries"]  .hero-lead {
  white-space: normal;
  overflow-wrap: break-word;
}

@media (max-width: 860px) {
  .hero-lead { white-space: normal; }
}

/* Inner-page lead — allow full container width so it reads as one line on desktop */
body:not([data-page="home"]):not([data-page="programme"]) .hero-lead {
  max-width: none;
}

.hero-meta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.2rem;
  row-gap: 0.5rem;
  font-family: var(--font-heading);
  color: #e6f7f0;
}

.hero-meta p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-meta__label {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading-secondary);
  flex-shrink: 0;
}

.hero-meta__full {
  flex-basis: 100%;
  padding-top: 0.6rem;
  margin-top: 0.2rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Hero buttons inherit all colour from _buttons.css — no overrides here */
.hero .hero-actions .btn {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

@keyframes heroGlowShift {
  0% {
    opacity: 0.86;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0.8%, -0.6%, 0) scale(1.03);
  }
}

@keyframes heroBackdropDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-1.1%, -1%, 0);
  }
}

/* ── Partners marquee ── */

.partners {
  padding: 4rem 0 3.5rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.partners__title {
  margin: 0 0 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  color: var(--heading-primary);
}

.partners__accent {
  color: var(--heading-secondary);
}

@media (max-width: 860px) {
  .partners .container {
    padding-inline: var(--container-gutter);
  }

  .partners__title {
    text-align: center;
  }
}

.partners__rotator {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.partners__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: partners-scroll 90s linear infinite;
}

.partners__track:hover {
  animation-play-state: paused;
}

.partners__static {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.partners__logo {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: saturate(0) opacity(0.55);
  transition: filter 0.25s ease;
}

.partners__logo:hover {
  filter: saturate(1) opacity(1);
}

.partners__static .partners__logo {
  height: clamp(86px, 8vw, 128px);
  max-width: clamp(220px, 24vw, 360px);
}

@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .partners__static {
    justify-content: center;
    gap: 2rem;
  }

  .partners__static .partners__logo {
    height: 78px;
    max-width: min(72vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
  }
  .partners__rotator {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 1.6rem;
  max-width: 80ch;
}

.section-head h2 {
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--heading-primary);
}

.section-head p {
  margin: 0;
  color: var(--body-text-charcoal);
}

.site-alert-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid #f0a12e;
  background: linear-gradient(180deg, rgba(25, 63, 99, 0.94), rgba(22, 56, 90, 0.94));
  box-shadow: 0 12px 30px rgba(7, 33, 58, 0.1);
}

.site-alert-banner--flush {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.site-alert-banner svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  color: #f0a12e;
}

.site-alert-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: var(--text-md);
  line-height: 1.58;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.8rem;
}

/* Shared summit gradient bars */
.impact,
.trip-hero__facts,
.enq-contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.impact > .container::before,
.trip-hero__facts > .container::before,
.enq-contact-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 18vw, 320px);
  height: clamp(220px, 18vw, 320px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image: url("../images/molecules.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 220% auto;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 42%, transparent 76%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 42%, transparent 76%);
}

.impact::before,
.impact::after,
.trip-hero__facts::before,
.trip-hero__facts::after,
.enq-contact-section::before,
.enq-contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(280px, 24vw, 430px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.44;
  background-image: url("../images/molecules.svg");
  background-repeat: no-repeat;
  background-size: 255% auto;
}

.impact::before,
.trip-hero__facts::before,
.enq-contact-section::before {
  left: 0.9rem;
  background-position: 18% center;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, transparent 100%);
}

.impact::after,
.trip-hero__facts::after,
.enq-contact-section::after {
  right: -1.5rem;
  background-position: 82% center;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 42%, transparent 100%);
}

.impact .container,
.trip-hero__facts > .container,
.enq-contact-heading,
.enq-contact-strip {
  position: relative;
  z-index: 1;
}

.enq-contact-strip::before {
  z-index: 0;
}

@media (max-width: 860px) {
  .site-alert-banner {
    gap: 0.75rem;
    margin-top: 1.1rem;
    padding: 0.9rem 0.95rem;
  }

  .site-alert-banner--flush {
    margin-top: 0;
    margin-bottom: 1.1rem;
  }

  .site-alert-banner p {
    font-size: 0.95rem;
  }

  .impact > .container::before,
  .trip-hero__facts > .container::before,
  .enq-contact-strip::before {
    width: clamp(160px, 24vw, 220px);
    height: clamp(160px, 24vw, 220px);
    opacity: 0.14;
    background-size: 235% auto;
  }

  .impact::before,
  .impact::after,
  .trip-hero__facts::before,
  .trip-hero__facts::after,
  .enq-contact-section::before,
  .enq-contact-section::after {
    width: clamp(190px, 32vw, 290px);
    opacity: 0.34;
    background-size: 270% auto;
  }

  .impact::before,
  .trip-hero__facts::before,
  .enq-contact-section::before {
    left: 0.4rem;
  }

  .impact::after,
  .trip-hero__facts::after,
  .enq-contact-section::after {
    right: -1rem;
  }
}

/* ── About ── */

.about {
  overflow: hidden;
  background: var(--surface);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.about__copy {
  display: flex;
  flex-direction: column;
  padding: 4.5rem clamp(2rem, 4vw, 3.5rem) 3.5rem 0;
}

.about__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(2.85rem, 5.6vw, 4.9rem);
  line-height: 1.08;
  color: var(--heading-primary);
}

.about__sub {
  margin: 0 0 1.1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--heading-secondary);
}

.about__lead {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body-text-charcoal);
}

.about__body {
  margin: 0 0 1.4rem;
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--body-text-charcoal);
}

.about__list {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-md);
  color: var(--body-text-charcoal);
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--primary);
}

.about__accent {
  color: var(--heading-secondary);
}

.about__cta {
  display: flex;
  width: fit-content;
  margin-left: auto;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0;
  padding-top: 2.5rem;
  padding-bottom: 0.3rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  transition: color 0.24s ease;
}

.about__cta::after {
  background: var(--solar-flare-yellow);
}

.about__cta:hover,
.about__cta:focus-visible {
  color: #000000;
  outline: none;
}

/* Carousel */

.about-carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.about-carousel__track {
  position: relative;
  height: 100%;
}

.about-carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.about-carousel__slide.is-active {
  opacity: 1;
}

.about-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 20, 16, 0.5) 0%, transparent 55%);
  pointer-events: none;
}

.about-carousel__ui {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-carousel__btn {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.18s ease;
}

.about-carousel__btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.about-carousel__btn:hover,
.about-carousel__btn:focus-visible {
  color: #fff;
  outline: none;
}

.about-carousel__dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.about-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-carousel__dot.is-active {
  background: var(--brand-accent);
  width: 26px;
  height: 7px;
  border-radius: 4px;
}

/* Stats strip */

/* ── Impact strip ── */

.impact {
  position: relative;
  padding: 0;
  border-top: 0;
  background: var(--summit-bar-gradient);
  overflow: hidden;
  color: #ffffff;
}

.impact-molecule {
  display: none;
}

.impact-molecule path {
  fill: none;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  stroke-width: 6;
}

@keyframes molecule-drift {
  0%   { transform: translateY(-50%) rotate(0deg); }
  50%  { transform: translateY(calc(-50% - 4px)) rotate(3deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .impact-molecule { animation: none; }
}

.impact .container {
  position: relative;
  z-index: 1;
  --impact-strip-bleed-left: clamp(6rem, 6.4vw, 7.55rem);
  --impact-strip-bleed-right: clamp(5.25rem, 5.5vw, 6.5rem);
  width: min(calc(var(--container-max) + var(--impact-strip-bleed-left) + var(--impact-strip-bleed-right)), 98vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0;
  transform: translateX(calc((var(--impact-strip-bleed-right) - var(--impact-strip-bleed-left)) / 2));
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 0;
}

.impact__grid--4 {
  grid-template-columns: repeat(4, minmax(0, auto));
}

.impact__grid--expanded {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.impact__grid--5col {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
  min-height: 120px;
}

.impact__stat {
  padding: 0 2.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.impact__stat:first-child {
  padding-left: 0;
}

.impact__stat:last-child {
  border-right: 0;
}

.impact__grid--expanded .impact__stat,
.impact__grid--expanded .impact__stat:first-child,
.impact__grid--expanded .impact__stat:last-child,
.impact__grid--5col .impact__stat,
.impact__grid--5col .impact__stat:first-child,
.impact__grid--5col .impact__stat:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  position: relative;
  padding: 0.6rem 1.4rem 0.62rem;
  border-right: 0;
  background: transparent;
}

.impact__grid--5col .impact__stat,
.impact__grid--5col .impact__stat:first-child,
.impact__grid--5col .impact__stat:last-child {
  padding: 1.45rem clamp(1.6rem, 2.4vw, 2.4rem);
}

.impact__grid--expanded .impact__stat::after,
.impact__grid--5col .impact__stat::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.7rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.28);
}

.impact__grid--expanded .impact__stat:last-child::after,
.impact__grid--5col .impact__stat:last-child::after {
  display: none;
}

.impact__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.impact__number {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.impact__suffix {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  color: #ffffff;
}

.impact__label {
  margin: 0.18rem 0 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.impact__grid--expanded .impact__label,
.impact__grid--5col .impact__label {
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.45;
}

.impact__note {
  margin: 0.18rem auto 0;
  max-width: 20ch;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.68);
}

.section-dark {
  background: linear-gradient(145deg, #071d19, #0f3029 55%, #134338);
  color: var(--text-light);
}

.section-dark .section-head h2,
.section-dark h3 {
  color: var(--heading-on-dark);
}

.section-dark .section-head p {
  color: rgba(243, 251, 248, 0.82);
}

.programme-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 1rem;
  align-items: start;
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.programme-card {
  position: relative;
  border: 1px solid rgba(220, 244, 236, 0.25);
  border-radius: var(--card-radius);
  padding: 1rem 1rem 1rem 1.3rem;
  background: rgba(220, 244, 236, 0.04);
}

.programme-card::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: rgba(158, 232, 209, 0.45);
}

.programme-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.programme-day {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0.23rem 0.62rem;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f3a2d;
  background: #b9ecd9;
}

.programme-card p {
  margin: 0;
}

.programme-date {
  font-size: var(--text-xs);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #a8e2d0;
  font-weight: 700;
}

.programme-card h3 {
  margin: 0.55rem 0 0.7rem;
  font-size: 1.7rem;
  line-height: 1;
  padding-left: 1rem;
}

.programme-card ul {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.programme-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.55rem;
  color: #d8ede6;
  font-size: var(--text-md);
  line-height: 1.6;
}

.programme-item-index {
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  border-radius: var(--radius-pill);
  padding: 0.11rem 0.45rem;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #d4f4e8;
  border: 1px solid rgba(185, 236, 217, 0.55);
  background: rgba(185, 236, 217, 0.1);
}

.programme-panel {
  border: 0;
  border-left: 1px solid rgba(220, 244, 236, 0.24);
  border-radius: 0;
  padding: 0 0 0 1rem;
  background: transparent;
}

.programme-panel__eyebrow {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9cdcc8;
}

.programme-panel h3 {
  margin: 0.5rem 0 0;
  font-size: 2rem;
  line-height: 1.1;
}

.programme-panel ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.programme-panel li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--text-md);
  color: #d8ede6;
}

.programme-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: var(--radius-pill);
  background: #9ce5cf;
}

.programme-logistics {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(220, 244, 236, 0.2);
  padding-top: 0.75rem;
}

.programme-logistics ul {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.programme-logistics li {
  position: relative;
  padding-left: 0.95rem;
  font-size: var(--text-base);
  color: #d8ede6;
}

.programme-logistics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: var(--radius-pill);
  background: #9ce5cf;
}

.focus-block {
  margin-top: 1.05rem;
}

.focus-block h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  font-size: 2.1rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(220, 244, 236, 0.22);
  border-bottom: 1px solid rgba(220, 244, 236, 0.22);
}

.focus-stream {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.78rem;
  padding: 0.9rem 0.15rem 0.86rem;
  border-top: 1px solid rgba(220, 244, 236, 0.18);
}

.focus-stream:first-child {
  border-top: 0;
}

.focus-stream__index {
  margin: 0;
  min-width: 2.2ch;
  font-size: var(--text-xs);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9cdcc8;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 0.22rem;
}

.focus-stream h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--heading-on-dark);
}

.focus-stream__copy p {
  margin: 0.35rem 0 0;
  color: #d9eee7;
  font-size: var(--text-base);
  max-width: 78ch;
}

.programme-page-hero {
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: linear-gradient(to bottom left, #3c9b73 0%, #0f463a 44%, #031410 100%);
  min-height: 52vh;
  min-height: 52svh;
}

.programme-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(0, 71, 116) 0%, rgb(0, 71, 116) 40%, rgba(0, 71, 116, 0) 100%);
}

.programme-page-hero .programme-page-shell {
  position: relative;
  z-index: 2;
}

.programme-page-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.programme-page-intro {
  max-width: 74ch;
}

.programme-page-title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.6vw, 5.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.programme-page-title .hero-accent {
  color: var(--heading-secondary);
}

.programme-page-schedule .section-head {
  max-width: 80ch;
}

body[data-page="programme"] .programme-layout--clean {
  grid-template-columns: minmax(0, 1.26fr) minmax(300px, 0.74fr);
  gap: 1.2rem;
}

body[data-page="programme"] .programme-grid {
  gap: 0.9rem;
}

body[data-page="programme"] .programme-card {
  border-color: var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.05rem 1.05rem 1.3rem;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 34, 28, 0.08);
}

body[data-page="programme"] .programme-card::before {
  left: 0.65rem;
  background: linear-gradient(180deg, rgba(209, 223, 51, 0.95), rgba(27, 112, 84, 0.85));
}

body[data-page="programme"] .programme-day {
  color: #173e33;
  background: #d9f0e7;
}

body[data-page="programme"] .programme-date {
  color: #335c51;
}

body[data-page="programme"] .programme-card h3 {
  color: var(--heading-primary);
}

body[data-page="programme"] .programme-card li {
  color: #2d4942;
}

body[data-page="programme"] .programme-item-index {
  color: #184939;
  border-color: #c5dd74;
  background: #f4f9d7;
}

body[data-page="programme"] .programme-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(165deg, #ffffff 0%, #f3faf7 100%);
  box-shadow: 0 14px 30px rgba(7, 34, 28, 0.06);
}

body[data-page="programme"] .programme-panel__eyebrow {
  color: #1c6653;
}

body[data-page="programme"] .programme-panel h3 {
  color: var(--heading-primary);
}

body[data-page="programme"] .programme-panel li,
body[data-page="programme"] .programme-logistics li {
  color: #2d4942;
}

body[data-page="programme"] .programme-panel li::before,
body[data-page="programme"] .programme-logistics li::before {
  background: #6eb59f;
}

body[data-page="programme"] .programme-logistics {
  border-top-color: #d8e7e1;
}

body[data-page="programme"] .focus-grid {
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body[data-page="programme"] .focus-stream {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.95rem 0.9rem;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 34, 28, 0.06);
}

body[data-page="programme"] .focus-stream:first-child {
  border-top: 1px solid var(--border);
}

body[data-page="programme"] .focus-stream__index {
  color: #2a7c67;
}

body[data-page="programme"] .focus-stream h3 {
  color: var(--heading-primary);
}

body[data-page="programme"] .focus-stream__copy p {
  color: #4a655f;
}

/* ══════════════════════════════════════════════════════════════════════════
   Programme — Full-Screen Coming Soon
   ══════════════════════════════════════════════════════════════════════════ */
body[data-page="programme"] {
  height: 100svh;
  overflow-y: hidden;
  overscroll-behavior-y: none;
}

body[data-page="programme"] #main-content {
  height: 100svh;
  overflow: hidden;
}

.prog-cs {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Clears the transparent home-page header (logo 180px tall at default breakpoint) */
  padding-top: 180px;
  box-sizing: border-box;
  background: linear-gradient(to bottom left, #3c9b73 0%, #0f463a 44%, #031410 100%);
}

/* Reuse existing .hero-backdrop for the photo layer — just lower opacity */
.prog-cs__backdrop {
  opacity: 0.28 !important;
  animation-play-state: paused !important; /* keep it static */
}

.prog-cs.has-video .prog-cs__backdrop {
  opacity: 0.08 !important;
}

.prog-cs__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease;
}

.prog-cs__video.is-ready {
  opacity: 0.42;
}

/* Radial colour glows matching the hero atmosphere */
.prog-cs__glows {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top right, rgba(0, 43, 70, 0.46) 0%, rgba(0, 55, 85, 0.24) 44%, rgba(3, 20, 16, 0.08) 72%),
    radial-gradient(circle at 10% 18%, rgba(19, 193, 143, 0.22), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(129, 227, 178, 0.15), transparent 46%),
    radial-gradient(circle at 55% 82%, rgba(0, 71, 116, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(3, 20, 16, 0.18) 0%, rgba(3, 20, 16, 0.66) 100%);
}

/* ── Content ── */

.prog-cs__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  text-align: center;
  padding: 3rem max(1.5rem, 5vw) 4rem;
  margin: 0 auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

/* Location / date eyebrow — sits below the heading, single line on desktop */
.prog-cs__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem 1rem;
  margin: 0 0 2.8rem;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.prog-cs__eyebrow-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brand-accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Status badge */
.prog-cs__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0.35rem 1.05rem;
  border: 1px solid rgba(224, 217, 0, 0.35);
  background: rgba(224, 217, 0, 0.07);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading-secondary);
}

.prog-cs__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: progcs-pulse 2.4s ease-in-out infinite;
}

@keyframes progcs-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Main heading — single horizontal line */
.prog-cs__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.prog-cs__title-accent {
  display: block;
  color: var(--heading-secondary);
}

/* ── Countdown ── */

.prog-cs__countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 2.4rem;
}

.prog-cs__unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0 clamp(1rem, 3vw, 2.2rem);
}

.prog-cs__unit:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: -0.15em;
  top: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--heading-secondary);
  opacity: 0.6;
}

.prog-cs__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
}

.prog-cs__lbl {
  display: block;
  font-family: 'Montserrat', var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Body text */
.prog-cs__body {
  margin: 0 auto 2.5rem;
  max-width: 64ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
}

/* CTA buttons */
.prog-cs__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.prog-cs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.75rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease,
              box-shadow 0.22s ease, transform 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.prog-cs__btn:hover,
.prog-cs__btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

/* Primary — yellow */
.prog-cs__btn:not(.prog-cs__btn--ghost) {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--brand-accent-ink);
  box-shadow: 0 8px 24px rgba(6, 20, 17, 0.28);
}

.prog-cs__btn:not(.prog-cs__btn--ghost):hover,
.prog-cs__btn:not(.prog-cs__btn--ghost):focus-visible {
  background: var(--brand-accent-strong);
  border-color: var(--brand-accent-strong);
  box-shadow: 0 14px 32px rgba(6, 20, 17, 0.35);
}

/* Ghost */
.prog-cs__btn--ghost {
  background: rgba(8, 32, 27, 0.45);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.prog-cs__btn--ghost:hover,
.prog-cs__btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

/* ── Responsive ── */

@media (max-width: 1240px) {
  .prog-cs {
    padding-top: 185px; /* matches home transparent nav-wrap min-height at 1240px */
  }
}

@media (max-width: 1080px) {
  .prog-cs {
    padding-top: 168px;
  }
}

@media (max-width: 860px) {
  .prog-cs {
    padding-top: 140px;
  }

  .prog-cs__content {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .prog-cs__eyebrow {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .prog-cs {
    padding-top: 124px;
  }

  .prog-cs__unit {
    padding: 0 clamp(0.5rem, 3.5vw, 1rem);
  }

  .prog-cs__unit:not(:last-child)::after {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .prog-cs__num {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    min-width: 1.8ch;
  }

  .prog-cs__lbl {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .prog-cs__btn {
    padding: 0.85rem 1.4rem;
    font-size: var(--text-xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prog-cs__video {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   Schedule accordion (programme page — for when programme is published)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Schedule accordion (programme page) ──────────────────────────────────── */

.sched-section {
  padding: 6rem 0 7rem;
  background: #ffffff;
  position: relative;
}

.sched-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 10%, rgba(31, 111, 178, 0.035) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(24, 79, 138, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.sched-section .container {
  position: relative;
  z-index: 1;
}

.sched-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.sched-section__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--heading-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

.sched-section__title-accent {
  color: var(--heading-secondary);
  white-space: nowrap;
}

.sched-section__lead {
  margin: 0;
  color: var(--body-text-charcoal);
  font-size: var(--text-md);
  line-height: 1.65;
  max-width: 48ch;
  align-self: end;
}

/* Accordion container */

.sched-accordion {
  display: flex;
  flex-direction: column;
}

/* Individual day */

.sched-day {
  border-top: 1px solid rgba(16, 35, 31, 0.1);
}

.sched-day:last-child {
  border-bottom: 1px solid rgba(16, 35, 31, 0.1);
}

/* Trigger button */

.sched-day__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  row-gap: 0.55rem;
  column-gap: 2.5rem;
  padding: 2.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.sched-day__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.sched-day__meta {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sched-day__label {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1;
  transition: color 0.2s ease;
}

.sched-day.is-open .sched-day__label {
  color: var(--primary-strong);
}

.sched-day__dot {
  width: 3px;
  height: 3px;
  background: rgba(16, 35, 31, 0.25);
  flex-shrink: 0;
}

.sched-day__date {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
}

.sched-day__title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--heading-primary);
  line-height: 1;
  transition: color 0.2s ease;
}

.sched-day__trigger:hover .sched-day__title,
.sched-day__trigger:focus-visible .sched-day__title {
  color: var(--primary-strong);
}

/* Toggle icon: chevron (matches FAQ section) */

.sched-day__icon {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  color: rgba(12, 33, 29, 0.45);
  transition: transform 0.38s var(--ease-default), color 0.25s ease;
}

.sched-day__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.sched-day__trigger:hover .sched-day__icon {
  color: var(--primary);
}

.sched-day.is-open .sched-day__icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Expand/collapse panel via grid trick */

.sched-day__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease-default);
}

.sched-day.is-open .sched-day__panel {
  grid-template-rows: 1fr;
}

/* Inner sessions wrapper – must have min-height: 0 for grid trick */

.sched-sessions {
  min-height: 0;
  overflow: hidden;
}

.sched-sessions__inner {
  padding-bottom: 2.5rem;
}

.sched-section__download {
  margin-top: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.sched-sessions__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.sched-download-btn {
  margin-top: 0;
  margin-left: auto;
}

/* Individual session row */

.sched-session {
  display: grid;
  grid-template-columns: 5.5rem 1px 1fr;
  align-items: start;
  gap: 0 1.6rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(16, 35, 31, 0.055);
}

.sched-session:first-child {
  border-top: 0;
}

.sched-session__time {
  font-variant-numeric: tabular-nums;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-top: 0.15rem;
  white-space: nowrap;
}

.sched-session__rule {
  display: block;
  width: 1px;
  background: rgba(16, 35, 31, 0.1);
  align-self: stretch;
}

.sched-session__title {
  margin: 0;
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.55;
  color: var(--body-text-charcoal);
}

/* Responsive */

@media (max-width: 860px) {
  .sched-section .container {
    padding-inline: var(--container-gutter);
  }

  .sched-section__head {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 2.2rem;
  }

  .sched-section__download {
    margin-left: 0;
  }

  .sched-section__title {
    white-space: normal;
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .sched-day__trigger {
    padding: 1.8rem 0;
    column-gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .sched-section {
    padding: 4rem 0 5rem;
  }

  .sched-section__head {
    margin-bottom: 1.8rem;
  }

  .sched-sessions__actions {
    margin-bottom: 0.7rem;
  }

  .sched-day__trigger {
    padding: 1.5rem 0;
    row-gap: 0.4rem;
  }

  .sched-session {
    grid-template-columns: 4.5rem 1px 1fr;
    gap: 0 1rem;
    padding: 0.8rem 0;
  }

  .sched-session__time {
    font-size: var(--text-xs);
  }

  .sched-session__title {
    font-size: var(--text-base);
  }
}

/* ── End schedule accordion ─────────────────────────────────────────────── */

/* ── Coming Soon (programme placeholder) ─────────────────────────────────── */

.coming-soon-section {
  padding: 6rem 0 8rem;
  background: #ffffff;
  position: relative;
}

.coming-soon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 10%, rgba(31, 111, 178, 0.035) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(24, 79, 138, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.coming-soon {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.coming-soon__title {
  margin: 0 0 1.4rem;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading-primary);
}

.coming-soon__body {
  margin: 0 0 2.4rem;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--body-text-charcoal);
  max-width: 52ch;
  margin-inline: auto;
}

.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.coming-soon__ghost {
  border-color: rgba(0, 71, 116, 0.25);
  color: var(--primary);
}

.coming-soon__ghost:hover,
.coming-soon__ghost:focus-visible {
  background: rgba(0, 71, 116, 0.06);
  border-color: rgba(0, 71, 116, 0.45);
}

@media (max-width: 560px) {
  .coming-soon-section {
    padding: 4rem 0 5rem;
  }

  .coming-soon__actions {
    flex-direction: column;
    align-items: center;
  }

  .coming-soon__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Section heading ── */

.resource-section__title,
.section-head h2.resource-section__title {
  margin: 0 0 2.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--heading-primary);
  text-transform: uppercase;
}

.sched-section__title-accent { color: var(--heading-secondary); }

/* ── Filter bar ── */

.resource-controls {
  margin-bottom: 1.5rem;
  display: grid;
  gap: 1rem;
}

.resource-filters {
  display: grid;
  grid-template-columns: minmax(200px, 1.6fr) repeat(3, minmax(130px, 1fr)) auto;
  align-items: end;
  gap: 0.75rem;
}

.resource-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.resource-field span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 33, 29, 0.45);
}

.resource-field input,
.resource-field select {
  height: 2.6rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(12, 33, 29, 0.14);
  border-radius: 0.25rem;
  background: #ffffff;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.resource-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230c211d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.6rem;
  padding-right: 2rem;
}

.resource-field input:focus,
.resource-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 71, 116, 0.08);
}

.resource-clear {
  align-self: end;
  height: 2.6rem;
  border: 1px solid rgba(12, 33, 29, 0.18);
  border-radius: 0.25rem;
  padding: 0 1rem;
  background: transparent;
  color: rgba(12, 33, 29, 0.55);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.resource-clear:hover,
.resource-clear:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}

/* ── Meta row (count + pagination) ── */

.resource-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.resource-count {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12, 33, 29, 0.4);
}

/* ── Pagination ── */

.resource-pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.resource-pagination.is-hidden { display: none; }

.resource-page {
  border: 1px solid rgba(12, 33, 29, 0.14);
  border-radius: 0.25rem;
  background: transparent;
  color: rgba(12, 33, 29, 0.55);
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.resource-page:hover,
.resource-page:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}

.resource-page.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

/* ── Empty state ── */

.resource-empty {
  margin: 0;
  padding: 1.5rem 0;
  color: rgba(12, 33, 29, 0.45);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(12, 33, 29, 0.08);
}

/* ── Resource grid container ── */

.resource-grid { display: block; }

/* ── Table wrapper ── */

.resource-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Table ── */

.resource-table {
  width: 100%;
  border-collapse: collapse;
}

.resource-table thead {
  border-bottom: 1px solid rgba(12, 33, 29, 0.1);
}

.resource-table th {
  padding: 0 1rem 0.85rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(12, 33, 29, 0.35);
  white-space: nowrap;
}

.resource-table th:first-child { padding-left: 0; }

.resource-table td {
  padding: 1.2rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(12, 33, 29, 0.06);
  line-height: 1.5;
}

.resource-table td:first-child { padding-left: 0; }

.resource-table tbody tr:last-child td { border-bottom: none; }

.resource-table tbody tr {
  transition: background 0.15s ease;
}

.resource-table tbody tr:hover td {
  background: rgba(0, 71, 116, 0.025);
}

/* ── Row index number ── */

.resource-table__num {
  width: 2.5rem;
  text-align: left;
}

.resource-table__idx {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(12, 33, 29, 0.25);
}

/* ── Title + description column ── */

.resource-table__col-desc { width: 42%; }

.resource-table__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.resource-table__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--heading-primary);
  line-height: 1.35;
}

.resource-table__desc-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(12, 33, 29, 0.5);
  line-height: 1.6;
}

.resource-table__desc--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-table__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.resource-table__readmore {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.resource-table__readmore:hover { opacity: 0.65; }

.resource-table__publisher-inline {
  display: none;
}

.resource-table__desc-empty {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(12, 33, 29, 0.3);
  font-style: italic;
}

/* ── Date column ── */

.resource-table__date {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(12, 33, 29, 0.45);
  white-space: nowrap;
}

/* ── Download action column ── */

.resource-table__action {
  width: 7rem;
  text-align: right;
  vertical-align: middle !important;
}

.resource-table__pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: rgba(12, 33, 29, 0.3);
  border-radius: 0.25rem;
  transition: color 0.18s ease, background 0.18s ease;
}

.resource-table__pdf-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  stroke: currentColor;
}

.resource-table__pdf-btn:hover {
  color: var(--primary);
  background: rgba(0, 71, 116, 0.06);
}

.resource-table__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem 0.9rem;
  border: 1.5px solid var(--primary);
  border-radius: 0.25rem;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

.resource-table__link:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ── Responsive ── */

@media (max-width: 860px) {
  .resource-filters {
    grid-template-columns: 1fr 1fr;
  }

  .resource-field--search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .resource-filters {
    grid-template-columns: 1fr;
  }

  .resource-table__col-desc { width: auto; }
}

/* Inline resource editor */

.resource-table__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.resource-table__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.25rem;
  background: transparent;
  color: rgba(12, 33, 29, 0.35);
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.resource-table__icon-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  stroke: currentColor;
}

.resource-table__icon-btn:hover,
.resource-table__icon-btn:focus-visible {
  color: var(--primary);
  background: rgba(0, 71, 116, 0.06);
  outline: none;
}

.resource-table__icon-btn--danger:hover,
.resource-table__icon-btn--danger:focus-visible {
  color: var(--error);
  background: rgba(192, 57, 43, 0.08);
}

.resource-editor-add {
  height: 2.1rem;
  margin-left: 0.35rem;
  border: 1px solid var(--primary);
  border-radius: 0.25rem;
  padding: 0 0.85rem;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.resource-editor-add:hover,
.resource-editor-add:focus-visible {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  outline: none;
}

.resource-editor-row td {
  background: rgba(0, 71, 116, 0.035);
  vertical-align: top;
}

.resource-editor-row:hover td {
  background: rgba(0, 71, 116, 0.045) !important;
}

.resource-editor-row--upload td {
  padding-top: 0;
}

.resource-editor-field {
  display: grid;
  gap: 0.35rem;
}

.resource-editor-field span {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12, 33, 29, 0.48);
}

.resource-editor-field input,
.resource-editor-field textarea {
  width: 100%;
  border: 1px solid rgba(12, 33, 29, 0.16);
  border-radius: 0.25rem;
  background: #ffffff;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.84rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.resource-editor-field input {
  min-height: 2.45rem;
  padding: 0 0.75rem;
}

.resource-editor-field textarea {
  min-height: 7.2rem;
  padding: 0.72rem 0.75rem;
  resize: vertical;
  line-height: 1.55;
}

.resource-editor-field input:focus,
.resource-editor-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 71, 116, 0.08);
}

.resource-editor-upload {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px dashed rgba(0, 71, 116, 0.3);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-heading);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.resource-editor-upload:hover,
.resource-editor-upload:focus-within,
.resource-editor-upload.is-dragging {
  border-color: var(--primary);
  background: #ffffff;
}

.resource-editor-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.resource-editor-upload__title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.resource-editor-upload__meta,
.resource-editor-status {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(12, 33, 29, 0.55);
}

.resource-editor-status {
  min-height: 1.2rem;
  margin: 0.55rem 0 0;
  color: var(--error);
}

.resource-editor-status[data-state="info"] {
  color: var(--primary);
}

.resource-editor-row-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.resource-editor-save,
.resource-editor-cancel {
  min-height: 2.1rem;
  border-radius: 0.25rem;
  padding: 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.resource-editor-save {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.resource-editor-cancel {
  border: 1px solid rgba(12, 33, 29, 0.18);
  background: transparent;
  color: rgba(12, 33, 29, 0.55);
}

.resource-editor-save:hover,
.resource-editor-save:focus-visible {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  outline: none;
}

.resource-editor-cancel:hover,
.resource-editor-cancel:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}

.has-resource-confirm-open {
  overflow: hidden;
}

.resource-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: var(--container-gutter);
  background: rgba(3, 27, 47, 0.58);
}

.resource-confirm-dialog {
  width: min(100%, 430px);
  padding: clamp(1.25rem, 4vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.resource-confirm-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hydrogen-green);
}

.resource-confirm-dialog h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--deep-current-blue);
}

.resource-confirm-copy {
  margin: 0.8rem 0 1.35rem;
  color: rgba(12, 33, 29, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.resource-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.resource-confirm-cancel,
.resource-confirm-delete {
  min-height: 2.45rem;
  border-radius: 0.25rem;
  padding: 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.resource-confirm-cancel {
  border: 1px solid rgba(12, 33, 29, 0.18);
  background: transparent;
  color: rgba(12, 33, 29, 0.58);
}

.resource-confirm-delete {
  border: 1px solid var(--error);
  background: var(--error);
  color: #ffffff;
}

.resource-confirm-cancel:hover,
.resource-confirm-cancel:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}

.resource-confirm-delete:hover,
.resource-confirm-delete:focus-visible {
  border-color: #9f1d1d;
  background: #9f1d1d;
  outline: none;
}

@media (max-width: 560px) {
  .resource-table__actions,
  .resource-editor-row-actions {
    justify-content: flex-start;
  }

  .resource-confirm-actions {
    justify-content: stretch;
  }

  .resource-confirm-cancel,
  .resource-confirm-delete {
    flex: 1 1 8rem;
  }
}

/* Editor login */

body[data-page="editor-login"] {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0, 71, 116, 0.08), rgba(130, 187, 38, 0.08)),
    var(--bg-soft);
  color: var(--body-text-charcoal);
}

.editor-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: max(2rem, 6vw) var(--container-gutter);
}

.editor-login-panel {
  width: min(100%, 430px);
  padding: clamp(1.5rem, 5vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.editor-login-brand {
  display: inline-flex;
  margin-bottom: 1.75rem;
}

.editor-login-brand img {
  width: min(245px, 72vw);
  height: auto;
  display: block;
}

.editor-login-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hydrogen-green);
}

.editor-login-panel h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 6vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--deep-current-blue);
}

.editor-login-copy {
  margin: 0.85rem 0 1.65rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.editor-login-form {
  display: grid;
  gap: 1rem;
}

.editor-login-field {
  display: grid;
  gap: 0.4rem;
}

.editor-login-field span {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12, 33, 29, 0.55);
}

.editor-login-field input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-heading);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.editor-login-field input:focus-visible {
  border-color: var(--deep-current-blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 116, 0.1);
}

.editor-login-submit {
  min-height: 2.95rem;
  margin-top: 0.25rem;
  border: 1px solid var(--hydrogen-green);
  border-radius: var(--radius-sm);
  background: var(--hydrogen-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.editor-login-submit:hover,
.editor-login-submit:focus-visible {
  background: var(--earth-core-green);
  border-color: var(--earth-core-green);
  outline: none;
}

.editor-login-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.editor-login-status {
  min-height: 1.35rem;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--error);
}
/* ── Focus Areas ─────────────────────────────────────────────────────────── */

.focus-accent { color: var(--heading-secondary); }

.focus-areas {
  padding: 6rem 0 5.5rem;
  background: var(--section-blue-surface-balanced);
  position: relative;
  overflow: hidden;
}

/* Molecule watermark */
.focus-areas__molecule {
  position: absolute;
  top: 50%;
  right: -4%;
  width: 38%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url('../images/molecules.svg') center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glows */
.focus-areas::before,
.focus-areas::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.focus-areas::before {
  top: -25%; right: -12%;
  width: 52%; aspect-ratio: 1;
  background: var(--section-blue-glow-strong);
}

.focus-areas::after {
  bottom: -20%; left: -10%;
  width: 46%; aspect-ratio: 1;
  background: var(--section-blue-glow-soft);
}

/* ── Header ── */

.focus-areas__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.focus-areas__header-text { flex: 1; min-width: 0; }

.focus-areas__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--heading-secondary);
  margin: 0 0 0.9rem;
}

.focus-areas__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.focus-areas__title-accent { color: var(--heading-secondary); }

.focus-areas__header-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
  padding-bottom: 0.2rem;
}

/* ── Separator ── */

.focus-rule {
  height: 1px;
  margin-bottom: 0;
  background: linear-gradient(
    to right,
    var(--solar-flare-yellow) 0%,
    rgba(130, 187, 38, 0.5) 30%,
    rgba(0, 71, 116, 0.25) 65%,
    transparent 100%
  );
  position: relative;
  z-index: 1;
}

/* ── Focus list ── */

.focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.focus-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  padding: 1.6rem 1.5rem 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  cursor: default;
  transition: border-color 0.32s ease, padding-left 0.28s ease;
}

.focus-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }


/* Gradient bottom line — replaces border on hover */
.focus-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--hydrogen-green) 0%,
    rgba(130, 187, 38, 0.45) 45%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.focus-item:hover {
  border-bottom-color: transparent;
  padding-left: 1.25rem;
}


.focus-item:hover::after {
  transform: scaleX(1);
}


.focus-item__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: center;
}

.focus-item__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  transition: color 0.28s ease;
}

.focus-item:hover .focus-item__title { color: #ffffff; }

.focus-item__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  transition: color 0.28s ease;
}

.focus-item:hover .focus-item__desc { color: #ffffff; }

/* ── CTAs ── */

.focus-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.55rem;
  background: transparent;
  border: none;
  color: rgba(235, 250, 242, 0.6);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  transition: color 0.22s ease;
}

.focus-cta::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--solar-flare-yellow);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.32s var(--ease-default);
}

.focus-cta:hover,
.focus-cta:focus-visible {
  color: var(--heading-secondary);
  outline: none;
}

.focus-cta:hover::after,
.focus-cta:focus-visible::after { transform: scaleX(1); }

.focus-cta--dark { color: var(--primary); }
.focus-cta--dark::after { background: var(--primary); }
.focus-cta--dark:hover,
.focus-cta--dark:focus-visible { color: var(--primary-strong); }

/* ── Responsive ── */

@media (max-width: 860px) {
  .focus-areas { padding: 4.5rem 0 4rem; }

  .focus-areas__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .focus-areas__title { white-space: normal; }

  .focus-item__body { grid-template-columns: 1fr; gap: 0.4rem; }

  .focus-item__desc { font-size: 0.88rem; }
}

@media (max-width: 560px) {
  .focus-item { padding: 1.25rem 1rem 1.25rem 0; }
}
/* ────────────────────────────────────────────────────────────────────────── */

.gallery-section {
  background: var(--section-blue-surface-balanced);
  padding: 6rem 0 5.5rem;
  overflow: hidden;
  position: relative;
}

/* Molecule watermark */
.gallery-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4%;
  width: 49.4%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url('../images/molecules.svg') center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* AGHS logo watermark — left side, behind cards */
.gallery-section__logo-bg {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 55%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

body[data-page="saghs-2022"] .gallery-section__logo-bg,
body[data-page="saghs-2023"] .gallery-section__logo-bg,
body[data-page="saghs-2025"] .gallery-section__logo-bg {
  opacity: 0.101;
}

/* Ambient glow */
.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--section-blue-glow-soft);
  pointer-events: none;
  z-index: 0;
}

.gallery-head {
  margin-bottom: 2.5rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.gallery-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.gallery-accent {
  color: var(--heading-secondary);
}

/* ── Summit Gallery Stacks ───────────────────────────────────────────────── */

.summit-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

/* ── Individual stack link wrapper ── */
.gallery-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.gallery-stack:focus-visible .stack img:last-child {
  box-shadow:
    0 0 0 3px rgba(224, 217, 0, 0.7),
    0 20px 50px rgba(0, 0, 0, 0.55);
}

/* ── Stack container ── */
.stack {
  position: relative;
  width: 100%;
  /* Height driven by front image; back images are absolute */
}

/* ── All stack images share base traits ── */
.stack img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  transition:
    transform 0.5s cubic-bezier(0.22, 0.68, 0, 1),
    opacity   0.5s cubic-bezier(0.22, 0.68, 0, 1),
    box-shadow 0.5s cubic-bezier(0.22, 0.68, 0, 1);
}

.stack img.gallery-stack__logo {
  object-fit: contain;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: #ffffff;
}

.stack img.gallery-stack__logo--dark {
  background:
    linear-gradient(135deg, rgba(14, 65, 104, 0.94), rgba(7, 26, 49, 0.98)),
    var(--heading-primary);
}

/* Back layer 1 — furthest behind */
.stack img:nth-child(1) {
  position: absolute;
  top: 0; left: 0;
  transform: translate(18px, -18px) rotate(3.5deg) scale(0.96);
  opacity: 0.38;
  z-index: 0;
}

/* Back layer 2 — middle */
.stack img:nth-child(2) {
  position: absolute;
  top: 0; left: 0;
  transform: translate(9px, -9px) rotate(1.5deg) scale(0.98);
  opacity: 0.62;
  z-index: 1;
}

/* Front image — dominant, in flow */
.stack img:last-child {
  position: relative;
  transform: none;
  opacity: 1;
  z-index: 2;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ── Hover: stack expands with depth ── */
.gallery-stack:hover .stack img:nth-child(1),
.gallery-stack:focus-visible .stack img:nth-child(1) {
  transform: translate(28px, -28px) rotate(4.5deg) scale(0.95);
  opacity: 0.5;
}

.gallery-stack:hover .stack img:nth-child(2),
.gallery-stack:focus-visible .stack img:nth-child(2) {
  transform: translate(14px, -14px) rotate(2deg) scale(0.97);
  opacity: 0.72;
}

.gallery-stack:hover .stack img:last-child,
.gallery-stack:focus-visible .stack img:last-child {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(28, 117, 188, 0.18);
}

/* ── Year label ── */
.gallery-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.gallery-label h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--heading-secondary);
  line-height: 1;
  transition: color 0.3s ease;
}

.gallery-label span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.gallery-stack:hover .gallery-label h3,
.gallery-stack:focus-visible .gallery-label h3 {
  color: #ffffff;
}

.gallery-stack:hover .gallery-label span,
.gallery-stack:focus-visible .gallery-label span {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .summit-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 3rem 0 3.5rem;
  }

  .summit-gallery-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Static depth on mobile — no hover */
  .stack img:nth-child(1) {
    transform: translate(12px, -12px) rotate(3deg) scale(0.96);
  }

  .stack img:nth-child(2) {
    transform: translate(6px, -6px) rotate(1deg) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stack img {
    transition: none;
  }

  .gallery-stack:hover .stack img:last-child,
  .gallery-stack:focus-visible .stack img:last-child {
    transform: none;
  }
}

/* ── Past event gallery layouts ─────────────────────────────────────────── */

.gallery-rotator {
  position: relative;
  z-index: 1;
}

.gallery-rotator {
  width: min(1320px, calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
}

.gallery-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.75rem, 1.3vw, 1rem);
  align-items: stretch;
}

.gallery-track > img[aria-hidden="true"] {
  display: none;
}

.gallery-track > img {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 5px;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  clip-path: inset(0 round 5px);
  cursor: zoom-in;
  transition: transform 0.42s ease, filter 0.42s ease;
  transform-origin: center;
}

@media (min-width: 600px) {
  .gallery-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .gallery-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .gallery-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .gallery-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .gallery-rotator {
    width: calc(100% - (var(--container-gutter) * 2));
  }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-track > img:hover {
    filter: brightness(1.04);
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track > img {
    transition: none;
  }

  .gallery-track > img:hover {
    transform: none;
    filter: none;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 1.2rem 2.7rem;
  background: rgba(3, 17, 14, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: 90vh;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.gallery-lightbox__close {
  position: absolute;
  right: -2.5rem;
  top: -0.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(220, 244, 236, 0.86);
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  color: #ffffff;
  transform: scale(1.04);
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--hydrogen-green);
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.gallery-lightbox__close svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.gallery-lightbox__nav svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.gallery-lightbox__nav--prev {
  left: -3.75rem;
}

.gallery-lightbox__nav--next {
  right: -3.75rem;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  color: var(--hydrogen-green);
  transform: translateY(-50%) scale(1.04);
  opacity: 0.82;
}

.gallery-lightbox__dialog img {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
  cursor: pointer;
}

/* ── Trip Hero — extends .programme-page-hero ────────────────────────────── */

.trip-hero {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* keep children full-width (overrides .hero align-items:center) */
  padding-bottom: 0;
  min-height: calc(88vh - var(--header-height));
  min-height: calc(88svh - var(--header-height));
}

/* Shell flex-grows to fill all space above the fact strip */
.trip-hero__shell {
  flex: 1;
  display: flex;
  align-items: center; /* vertically centre the copy block */
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

/* Plan-your-trip heading — bigger than the generic inner-page cap */
body[data-page="plan-your-trip"] .hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Eyebrow above the h1 */
.trip-hero .eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heading-secondary);
  margin-bottom: 1rem;
}

/* ── Hero Fact Strip ─────────────────────────────────────────────────────── */

.trip-hero__facts {
  position: relative;
  z-index: 3;
  background: var(--summit-bar-gradient);
  border-top: 0;
}

.trip-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trip-fact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2.1rem;
  position: relative;
}

/* Gradient divider between facts */
.trip-fact:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent
  );
}

.trip-fact:first-child { padding-left: 0; }
.trip-fact:last-child  { padding-right: 0; }

@media (min-width: 861px) {
  body[data-page="plan-your-trip"] .trip-hero__facts > .container {
    --trip-strip-bleed-left: clamp(7.5rem, 8.1vw, 9.6rem);
    --trip-strip-bleed-right: clamp(3.75rem, 4.1vw, 4.9rem);
    width: min(calc(var(--container-max) + var(--trip-strip-bleed-left) + var(--trip-strip-bleed-right)), 98vw);
    transform: translateX(calc((var(--trip-strip-bleed-right) - var(--trip-strip-bleed-left)) / 2));
  }

  body[data-page="plan-your-trip"] .trip-fact {
    justify-content: center;
    min-width: 0;
  }

  body[data-page="plan-your-trip"] .trip-fact:first-child {
    padding-left: 2.1rem;
  }

  body[data-page="plan-your-trip"] .trip-fact:last-child {
    padding-right: 2.1rem;
  }
}

.trip-fact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.trip-fact__icon svg {
  width: 1rem;
  height: 1rem;
}

.trip-fact__body { min-width: 0; }

.trip-fact__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
  margin-bottom: 0.35rem;
}

.trip-fact__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 0.3rem;
  white-space: nowrap;
}

.trip-fact__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  margin: 0;
}

.trip-fact__contact {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.45rem;
  flex-wrap: wrap;
}

.trip-fact__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.trip-fact__contact a:hover,
.trip-fact__contact a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.trip-fact__contact svg {
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

  .trip-fact:nth-child(3) {
    grid-column: 1 / -1;
    padding: 1.5rem 0 1.35rem;
  }

  .trip-fact:nth-child(3)::after { display: none; }
  .trip-fact:nth-child(2)::after { display: none; }
}

@media (max-width: 560px) {
  .trip-facts { grid-template-columns: 1fr; }

  .trip-fact,
  .trip-fact:first-child,
  .trip-fact:last-child,
  .trip-fact:nth-child(3) {
    padding: 1.25rem 0;
  }

  .trip-fact::after { display: none; }

  .trip-fact__value { white-space: normal; }
}

/* ── (end Trip Hero) ─────────────────────────────────────────────────────── */

/* ── Accommodation tier legend (accommodation.html) ────────────────────── */

.accmd-tiers {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(12, 33, 29, 0.08);
}

.accmd-tier {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 200px;
}

.accmd-tier__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
}

.accmd-tier__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.accmd-tier__body strong {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--heading-primary);
}

.accmd-tier__body span {
  font-size: 0.85rem;
  color: #4a6b62;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .accmd-tiers { flex-direction: column; gap: 1.5rem; }
}


/* â”€â”€ Support Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.support-section {
  padding: 6rem 0;
  background: var(--section-blue-surface-balanced);
  position: relative;
  isolation: isolate;
}

.support-head {
  margin-bottom: 3.5rem;
  max-width: 60ch;
}

body[data-page="plan-your-trip"] .section-dark {
  background: var(--section-blue-surface-balanced);
}

.support-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 0.9rem;
}

.support-title .hero-accent {
  color: var(--heading-secondary);
}

.support-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-item + .support-item {
  padding-left: 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.support-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.support-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand-accent);
}

.support-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.6rem;
}

.support-item__text {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

.support-item__text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-item {
    padding: 2rem 0;
    border-left: none !important;
  }

  .support-item + .support-item {
    padding-left: 0;
  }
}

/* ── Trip Page Extended Components ───────────────────────────────────────── */

/* Alert / warning box */
.trip-alert {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fff8ed;
  border: 1.5px solid #e8900a;
  border-radius: var(--card-radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

.trip-alert__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #c97300;
  margin-top: 0.1rem;
}

.trip-alert__body {
  flex: 1;
}

.trip-alert__body strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7a3d00;
  margin-bottom: 0.25rem;
}

.trip-alert__body p {
  margin: 0;
  font-size: var(--text-base);
  color: #5a3200;
  line-height: 1.5;
}

/* Venue info block */
.trip-venue-info {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 0.9rem 1rem;
  margin-top: 0.8rem;
}

.trip-venue-info__icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
  margin-top: 0.15rem;
}

.trip-venue-info address {
  font-style: normal;
  font-size: var(--text-md);
  color: var(--text);
  line-height: 1.55;
}

/* ── Accreditation section redesign ── */
.accred-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.accred-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.08;
  color: var(--text-light);
  text-transform: uppercase;
}

.accred-heading-accent {
  color: var(--heading-secondary);
  display: block;
}

.accred-schedule {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accred-copy > p {
  margin: 0 0 1.5rem;
  color: rgba(243, 251, 248, 0.7);
  font-size: var(--text-md);
  line-height: 1.65;
}

.accred-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid #e8900a;
  background: rgba(232, 144, 10, 0.08);
  border-radius: 0 4px 4px 0;
}

.accred-notice svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #e8900a;
  margin-top: 0.2rem;
}

.accred-notice p {
  margin: 0;
  font-size: var(--text-base);
  color: rgba(243, 251, 248, 0.85);
  line-height: 1.55;
}

.accred-schedule__label {
  margin: 0 0 1.25rem;
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heading-secondary);
}

.accred-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.accred-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accred-list__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accred-list__day {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.accred-list__meta {
  font-size: var(--text-sm);
  color: rgba(243, 251, 248, 0.5);
  letter-spacing: 0.02em;
}

.accred-list__note {
  font-size: var(--text-xs);
  color: var(--heading-secondary);
  font-style: italic;
}

@media (max-width: 768px) {
  .accred-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Hotel Map Section
───────────────────────────────────────────────────────────────────────── */
.map-section {
  padding-bottom: 5rem;
}

.map-section .container {
  width: min(var(--container-max-wide), 96vw);
}

.map-section__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.map-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--heading-primary);
  margin-bottom: 0.45rem;
}

.map-section__title .hero-accent {
  color: var(--heading-secondary);
}

.map-section__sub {
  font-size: var(--text-base);
  color: var(--body-text-charcoal);
  max-width: 52ch;
  line-height: 1.6;
  margin: 0;
}

/* ── Map + Panel layout ──────────────────────────────────────────────── */
.venue-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  gap: 0;
  margin-bottom: 2.4rem;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(246, 250, 248, 0.96), rgba(241, 247, 244, 0.94));
  box-shadow: 0 28px 60px rgba(5, 35, 28, 0.12);
}

.venue-intro__media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 440px;
  scroll-margin-top: calc(var(--header-height) + 1rem);
  box-shadow: none;
}

.venue-intro__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(to top, rgba(6, 24, 21, 0.18), transparent);
  pointer-events: none;
}

.venue-intro__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.venue-intro__media:hover .venue-intro__image,
.venue-intro__media:focus-within .venue-intro__image {
  transform: scale(1.01);
}

.venue-intro__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--hydrogen-green);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.venue-intro__media:hover .venue-intro__nav,
.venue-intro__media:focus-within .venue-intro__nav {
  opacity: 1;
}

.venue-intro__nav--prev {
  left: 1rem;
}

.venue-intro__nav--next {
  right: 1rem;
}

.venue-intro__nav:hover,
.venue-intro__nav:focus-visible {
  color: var(--hydrogen-green);
  transform: translateY(-50%) scale(1.04);
  opacity: 0.82;
}

.venue-intro__nav:focus-visible {
  outline: none;
}

.venue-intro__nav svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.venue-intro__copy {
  position: relative;
  padding: clamp(2rem, 3vw, 2.8rem);
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.71), rgba(244, 248, 246, 0.67)),
    url("../images/Branding & Build- up_66.jpg") center/cover no-repeat;
}

.venue-intro__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.39), rgba(255, 255, 255, 0.21)),
    linear-gradient(180deg, rgba(248, 250, 249, 0.33), rgba(248, 250, 249, 0.21));
  pointer-events: none;
}

.venue-intro__copy::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 42%;
  height: 48%;
  background: radial-gradient(circle at bottom left, rgba(163, 198, 70, 0.18), transparent 74%);
  pointer-events: none;
}

.venue-intro__title,
.venue-intro__text,
.venue-intro__highlights {
  position: relative;
  z-index: 1;
}

.venue-intro__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: var(--heading-primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 0 12px rgba(255, 255, 255, 0.16);
}

.venue-intro__text {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.8;
  color: #4f685f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
}

.venue-intro__highlights {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-intro__highlights li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #506960;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.66);
}

.venue-intro__highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--heading-secondary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.88), 0 1px 0 rgba(255, 255, 255, 0.7);
}

.venue-intro__highlights strong {
  color: var(--heading-primary);
  font-weight: 700;
}

.travel-partner-note {
  margin: 0.85rem 0 1.8rem;
  padding: 1.45rem 0 0;
  border-top: 1px solid rgba(18, 65, 52, 0.12);
}

.site-alert-banner + .travel-partner-note {
  margin-top: 0.9rem;
}

.travel-partner-note__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
  color: var(--heading-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.1;
}

.travel-partner-note__eyebrow span {
  color: var(--hydrogen-green);
}

.travel-partner-note__eyebrow > span {
  color: var(--heading-primary);
}

.travel-partner-note__logo {
  display: block;
  width: auto;
  height: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 11rem;
  object-fit: contain;
}

.travel-partner-note__text {
  margin: 0;
  max-width: none;
  color: #4f685f;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.8;
}

.travel-partner-note__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.95rem;
  flex-wrap: wrap;
}

.travel-partner-note__contact-name {
  color: var(--heading-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
}

.travel-partner-note__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.1rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.travel-partner-note__button:hover,
.travel-partner-note__button:focus-visible {
  outline: none;
}

.travel-partner-note__button--primary {
  background: var(--hydrogen-green);
  border-color: var(--hydrogen-green);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.travel-partner-note__button--primary:hover,
.travel-partner-note__button--primary:focus-visible {
  background: #6fa51f;
  border-color: #6fa51f;
}

.travel-partner-note__button--email {
  background: var(--deep-current-blue);
  border-color: rgba(3, 22, 48, 0.35);
  color: #ffffff;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: none;
}

.travel-partner-note__button--email:hover,
.travel-partner-note__button--email:focus-visible {
  background: #1e355f;
  border-color: #1e355f;
}

.travel-partner-note__button svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.hotel-map-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: 100svh;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(5, 35, 28, 0.08);
  overflow: hidden;
}

.hotel-map-wrap {
  overflow: hidden;
  border-left: 1px solid var(--line);
}

#hotel-map {
  height: 100%;
  width: 100%;
  display: block;
}

/* ── Side panel ──────────────────────────────────────────────────────── */
.hotel-map-panel {
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

.hotel-map-panel::-webkit-scrollbar {
  width: 3px;
}
.hotel-map-panel::-webkit-scrollbar-track {
  background: transparent;
}
.hotel-map-panel::-webkit-scrollbar-thumb {
  background: #c8d9d3;
  border-radius: 0;
}

.hmp-loading {
  padding: 2rem 1.6rem;
  font-size: var(--text-base);
  color: var(--muted);
}

/* Venue item — sticky header at top of panel */
.hmp-venue {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  background: #0b2d26;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 20px rgba(6, 24, 20, 0.25);
}

.hmp-venue:hover {
  background: #114236;
}

.hmp-venue.is-active {
  background: #0f5c3f;
}

.hmp-venue:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: -2px;
}

.hmp-venue__pin {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border: none;
  border-radius: 50%;
}

.hmp-venue__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hmp-venue__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
}

.hmp-venue__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading-secondary);
}

/* Tier group headings */
.hmp-tier__heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem 0.7rem;
  background: #f7fbf9;
  border-bottom: 1px solid #e8f0ec;
  border-top: 1px solid #e8f0ec;
  margin-top: 0;
  position: sticky;
  top: 67px;
  z-index: 8;
}

.hmp-tier__heading:first-of-type {
  border-top: none;
}

.hmp-tier__dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hmp-tier__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3d5850;
  margin: 0;
}

.hmp-tier__count {
  margin-left: auto;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #3d5850;
  background: #e0ede7;
  border: none;
  border-radius: 0;
  min-width: 1.6rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
}

/* Hotel list items */
.hmp-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #eef4f1;
}

.hmp-item:last-of-type {
  border-bottom-color: transparent;
}

.hmp-item__select {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.18s ease;
}

.hmp-item__select:hover {
  background: #f4faf7;
}

.hmp-item__select.is-active {
  background: #edf7f2;
  box-shadow: inset 3px 0 0 var(--primary);
}

.hmp-item__select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.hmp-item__pin {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hmp-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}

.hmp-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--heading-primary);
  line-height: 1.3;
  display: block;
}

.hmp-item__meta {
  font-size: var(--text-sm);
  color: #6b8480;
  display: block;
}

.hmp-item__book {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 1.2rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  border-left: 1px solid #eef4f1;
  transition: color 0.18s ease, background 0.18s ease;
}

.hmp-item__book:hover {
  color: var(--primary-strong);
  background: #f0f6ff;
}

.hmp-item__book:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  .hotel-map-panel {
    scroll-behavior: auto;
  }

  .hmp-item__select,
  .hmp-item__book,
  .hmp-venue {
    transition: none;
  }
}

/* ── Google Maps InfoWindow — sharp edge overrides ───────────────────── */
.gm-style .gm-style-iw-c {
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: 0 4px 24px rgba(6, 24, 20, 0.18), 0 1px 6px rgba(6, 24, 20, 0.1) !important;
  border: none !important;
  overflow: visible !important;
}
.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
  max-height: none !important;
}
/* Remove the tail/arrow entirely */
.gm-style .gm-style-iw-tc,
.gm-style-iw-t,
.gm-style-iw-t::after,
.gm-style .gm-style-iw-t::after {
  display: none !important;
}
/* Close button — clean X */
.gm-ui-hover-effect {
  top: 0 !important;
  right: 0 !important;
  width: 28px !important;
  height: 28px !important;
  opacity: 1 !important;
  background: rgba(255,255,255,0.9) !important;
  border-left: 1px solid #e8eeec !important;
  border-bottom: 1px solid #e8eeec !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.gm-ui-hover-effect img {
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
  filter: brightness(0) opacity(0.5) !important;
}
.gm-ui-hover-effect:hover {
  background: #f0f5f2 !important;
}
.gm-ui-hover-effect:hover img {
  filter: brightness(0) opacity(0.85) !important;
}

/* ── Popup content ───────────────────────────────────────────────────── */
.map-popup {
  display: flex;
  flex-direction: column;
  width: 240px;
  background: #ffffff;
  border-top: 3px solid #0e5e44;
  font-family: var(--font-body), sans-serif;
}

.map-popup__header {
  padding: 1rem 2.5rem 0.75rem 1rem;
  border-bottom: 1px solid #eef2f0;
}

.map-popup__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0e5e44;
  margin-bottom: 0.3rem;
}

.map-popup__label--hotel {
  color: var(--muted);
}

.map-popup__name {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--heading-primary);
  line-height: 1.3;
}

.map-popup__addr {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.6;
}

.map-popup__meta {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.2rem;
}

.map-popup__footer {
  display: block;
}

.map-popup__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  background: #f5f8f6;
  text-decoration: none;
  border-top: 1px solid #eef2f0;
  transition: background 0.15s ease, color 0.15s ease;
}

.map-popup__link::after {
  content: '\2192';
  font-size: var(--text-sm);
  color: #0e5e44;
}

.map-popup__link:hover {
  background: #0e5e44;
  color: #ffffff;
  text-decoration: none;
}

.map-popup__link:hover::after {
  color: #d1df33;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .venue-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .venue-intro__media,
  .venue-intro__media img {
    min-height: 360px;
  }
  .venue-intro__copy {
    padding: 1.7rem 1.45rem;
  }
  .venue-intro__copy::before {
    inset: 0;
  }
  .venue-intro__copy::after {
    width: 160px;
    height: 160px;
  }
  .venue-intro__text,
  .venue-intro__highlights {
    max-width: none;
  }
  .travel-partner-note {
    margin-top: 0;
  }
  .hotel-map-layout {
    grid-template-columns: 1fr;
    border-radius: 0.55rem;
  }
  .hotel-map-panel {
    height: auto;
    max-height: 340px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.4rem;
  }
  .hotel-map-wrap {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .hmp-tier__heading {
    top: 60px;
  }
  #hotel-map {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .venue-intro {
    margin-bottom: 1.75rem;
  }
  .venue-intro__media,
  .venue-intro__media img {
    min-height: 260px;
  }
  .venue-intro__nav {
    opacity: 1;
    width: 2.7rem;
    height: 2.7rem;
  }
  .venue-intro__nav--prev {
    left: 0.75rem;
  }
  .venue-intro__nav--next {
    right: 0.75rem;
  }
  .venue-intro__highlights li {
    padding-left: 1.7rem;
    font-size: 0.95rem;
  }
  .travel-partner-note {
    margin-bottom: 1.6rem;
    padding-top: 0.75rem;
  }
  .travel-partner-note__eyebrow {
    font-size: 1rem;
  }
  .travel-partner-note__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .travel-partner-note__actions {
    margin-top: 0.85rem;
  }
  .travel-partner-note__button {
    padding: 0.5rem 0.95rem;
  }
  .hmp-item {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .hmp-item__book {
    margin: 0 0 0.45rem 0.7rem;
    justify-self: start;
  }
  #hotel-map {
    height: 300px;
  }
}


/* â”€â”€ Transport Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.transport-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.transport-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.transport-split__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--heading-primary);
  margin: 0 0 1rem;
}

.transport-split__title .hero-accent {
  color: var(--heading-secondary);
}

.transport-split__lead {
  font-size: 1rem;
  color: var(--body-text-charcoal);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 44ch;
}

/* Checklist block */
.transport-checklist {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.transport-checklist__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.transport-checklist ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.transport-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-md);
  color: var(--text);
  line-height: 1.5;
}

.transport-checklist li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-accent);
  margin-top: 0.55em;
}

.transport-checklist__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.transport-checklist__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.18s;
}

.transport-checklist__links a:hover {
  color: var(--heading-secondary);
}

.transport-checklist__links a svg {
  width: 13px;
  height: 13px;
}

/* Right providers column */
.transport-split__providers-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.transport-rows {
  display: flex;
  flex-direction: column;
}

.transport-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}

.transport-row--static {
  cursor: default;
}

a.transport-row:hover .transport-row__name {
  color: var(--primary);
}

a.transport-row:hover .transport-row__arrow {
  transform: translate(2px, -2px);
  color: var(--primary);
}

.transport-row__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  flex-shrink: 0;
}

.transport-row__icon svg {
  width: 16px;
  height: 16px;
  color: var(--text);
}

.transport-row__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.transport-row__name {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--heading-primary);
  transition: color 0.18s;
}

.transport-row__sub {
  font-size: var(--text-sm);
  color: var(--muted);
}

.transport-row__arrow {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.transport-row__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.2rem 0.55rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .transport-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .transport-split__lead {
    max-width: 100%;
  }
}

/* â”€â”€ Dining Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.dining-section {
  background: var(--surface);
}

/* Full-width two-column dining split — self-contained layout */
.dining-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.dining-copy {
  padding: 4rem clamp(2rem, 4vw, 4rem) 4rem max(1.5rem, calc((100vw - var(--container-max)) / 2));
  background: var(--surface);
  display: flex;
  align-items: center;
}

.dining-copy__inner {
  max-width: 560px;
  width: 100%;
}

.dining-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.0;
  color: var(--heading-primary) !important;
  margin: 0 0 0.5rem !important;
}

.dining-title__accent {
  color: var(--heading-secondary);
}

.dining-sub {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  margin: 0 0 1.5rem;
}

/* Restaurant rows */
.dining-rows {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.dining-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  border-radius: 0;
  margin: 0 -0.5rem;
  transition: background 0.18s ease, padding-left 0.18s ease;
  cursor: pointer;
}

.dining-row:hover {
  background: rgba(31, 111, 178, 0.05);
  padding-left: 1rem;
}

.dining-row:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.dining-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.dining-row__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}

.dining-row:hover .dining-row__name {
  color: var(--primary);
}

.dining-row__addr {
  font-size: var(--text-sm);
  color: var(--muted);
}

.dining-row__dist {
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  flex-shrink: 0;
  text-align: right;
}

/* Dining carousel */
.dining-carousel {
  min-height: 560px;
}

@media (max-width: 900px) {
  .dining-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dining-copy {
    padding: 3.5rem 1.5rem;
  }

  .dining-copy__inner {
    max-width: 100%;
  }

  .dining-carousel {
    min-height: 380px;
    order: -1;
  }
}

/* ── Why Attend ─────────────────────────────────────────────────────────── */

.why-attend {
  background: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Full-bleed split — mirrors .about-split */
.why-attend__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  align-items: stretch;
}

/* Left panel — copy, right-aligned within its half, mirrors .about-copy */
.why-attend__copy-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6rem clamp(2rem, 5vw, 5rem) 6rem max(1.5rem, calc((100vw - var(--container-max)) / 2));
}

/* Inner copy constrained like .about-copy__inner */
.why-attend__copy {
  width: 100%;
  max-width: 660px;
}

.why-attend__heading {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: clamp(2.85rem, 5.6vw, 4.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading-primary);
}

.why-attend__accent {
  color: var(--heading-secondary);
}

.why-attend__lead {
  margin: 0 0 2.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--heading-secondary);
}

.why-attend__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-attend__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.1rem 0;
}

.why-attend__num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
  width: 2.5rem;
  text-align: right;
}

.why-attend__item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2e4d45;
}

.why-attend__item p strong {
  font-weight: 700;
  color: var(--text-heading);
}

/* ── Image mosaic — right panel, full-bleed to viewport edge ── */

.why-attend__media {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.why-attend__mosaic {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.25rem;
  min-height: 0;
  overflow: hidden;
}

.why-attend__photo {
  background-size: cover;
  background-position: center;
  min-height: 0;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.why-attend__photo:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
}

.why-attend__photo--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

.why-attend__photo--br-top {
  grid-column: 2;
  grid-row: 1;
}

.why-attend__photo--br-btm {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 980px) {
  .why-attend__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .why-attend__media {
    order: -1;
    flex: none;
  }

  .why-attend__mosaic {
    aspect-ratio: 16 / 9;
  }

  .why-attend__copy-wrap {
    justify-content: flex-start;
    padding: 4rem max(1.5rem, 4vw);
  }

  .why-attend__copy {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .gallery-section .container,
  .faq-section .container,
  .site-footer .container {
    padding-inline: var(--container-gutter);
  }
}

@media (max-width: 560px) {
  .why-attend__mosaic {
    aspect-ratio: 4 / 3;
  }

  .why-attend__heading {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  .why-attend__lead {
    font-size: 1rem;
  }

  .why-attend__item {
    gap: 1.25rem;
  }

  .why-attend__num {
    font-size: 1.25rem;
  }

  .why-attend__copy-wrap {
    padding: 3rem 1.2rem 4rem;
  }
}

/* ── Shared form field styles ─────────────────────────────────────────────── */

.resource-field input,
.resource-field select,
.reg-field input,
.reg-field select,
.reg-field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  background: #ffffff;
  font: inherit;
  font-size: var(--text-base);
}

.resource-field input,
.resource-field select,
.reg-field input,
.reg-field select {
  height: 2.75rem;
  padding: 0 0.72rem;
}

.resource-field input::placeholder,
.reg-field input::placeholder,
.reg-field textarea::placeholder {
  color: #6a827c;
}

.resource-field input:focus-visible,
.resource-field select:focus-visible,
.reg-field input:focus-visible,
.reg-field select:focus-visible,
.reg-field textarea:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 1px;
  border-color: var(--focus-border);
}

.reg-field input.is-invalid,
.reg-field select.is-invalid,
.reg-field textarea.is-invalid {
  border-color: var(--error);
}

/* ── Shared label pattern ── */

.resource-field span,
.reg-field label {
  margin: 0;
  color: #2f4e45;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
/* ── FAQ Section ─────────────────────────────────────────────────────────── */

.faq-section {
  padding: 5rem 0;
  background: #fafcfb;
}

.faq-header {
  text-align: left;
  margin-bottom: 3.5rem;
}

.faq-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.85rem, 5.6vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--heading-primary);
  text-transform: uppercase;
}

.faq-accent {
  color: var(--heading-secondary);
}

.faq-item {
  border-top: 1px solid rgba(12, 33, 29, 0.1);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(12, 33, 29, 0.1);
}

/* ── Trigger (replaces <summary>) ── */
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq-item__q {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--heading-primary);
  line-height: 1.35;
  transition: color 0.25s ease;
}

.faq-item__trigger:hover .faq-item__q,
.faq-item.is-open .faq-item__q {
  color: var(--heading-primary);
}

/* ── Chevron icon ── */
.faq-item__icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(12, 33, 29, 0.45);
  transition: transform 0.38s var(--ease-default), color 0.25s ease;
}

.faq-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.faq-item__trigger:hover .faq-item__icon,
.faq-item.is-open .faq-item__icon {
  color: var(--heading-secondary);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

/* ── Answer panel ── */
.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s var(--ease-default);
}

.faq-item__body p {
  margin: 0;
  padding: 0 0 1.4rem 0;
  font-size: var(--text-md);
  line-height: 1.65;
  color: #4a6b62;
}

@media (max-width: 560px) {
  .faq-section {
    padding: 3.5rem 0;
  }

  .faq-item__trigger {
    padding: 1.1rem 0;
  }

  .faq-item__q {
    font-size: 1.05rem;
  }
}

.site-footer {
  position: relative;
  background: #ffffff;
  color: #1a1a1a;
  padding: 0 0 0;
  border-top: 1px solid #d4e4dd;
}

.footer-accent {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.footer-wrap {
  display: grid;
  gap: 0;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  align-self: flex-start;
  margin-left: -2.4rem;
}

.footer-logo {
  height: 120px;
  width: auto;
  opacity: 0.92;
}

.footer-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--heading-primary);
}

.footer-subtitle {
  margin: 0.15rem 0 0;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5c736d;
  font-weight: 600;
}

.footer-blurb {
  margin: 0;
  color: #3d5c52;
  font-size: var(--text-base);
  line-height: 1.55;
  max-width: 42ch;
}

.footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  padding-bottom: 0.3rem;
  margin-top: 1rem;
  border: none;
  background: transparent;
  color: var(--heading-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: var(--primary);
  outline: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-column h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--heading-primary);
}

.footer-column a {
  position: relative;
  color: #3d5c52;
  font-size: var(--text-base);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--brand-accent-strong);
  transition: width 0.28s var(--ease-default);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--primary);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  width: 100%;
}

.footer-column a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: var(--text-sm);
  color: #5c736d;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-powered {
  font-size: var(--text-xs);
  font-weight: 500;
  color: #8aa89f;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.22s ease;
}

.footer-powered:hover,
.footer-powered:focus-visible {
  color: #3d5c52;
  outline: none;
}

.footer-legal a {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #5c736d;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 0.35rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--primary);
  background: rgba(0, 71, 116, 0.06);
}

.scroll-top-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  box-shadow: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.2s ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
}

.scroll-top-button:focus-visible {
  outline: 2px solid rgba(0, 71, 116, 0.4);
  outline-offset: 2px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  :root {
    --header-height: 110px;
  }

  .nav-wrap {
    min-height: 185px;
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: 150px;
  }

  .brand img {
    height: 165px;
  }

  .site-header.is-scrolled .brand img {
    height: 115px;
  }

  .main-nav {
    gap: 1.15rem;
    margin: 0 0.7rem;
  }

  .main-nav a {
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
  }

  .nav-dropdown a {
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
  }
}

@media (max-width: 1080px) {
  .brand__text {
    display: none;
  }
}

/* ── Mid-desktop: nav links + countdown + enquire button getting cramped ──
   Hide the enquire button between 860px–960px to free up space for nav links.
   The countdown shrinks and nav links already reduce at 1080px.            */
@media (max-width: 960px) {
  .nav-enquire {
    display: none;
  }

  .main-nav {
    gap: 0.7rem;
    margin: 0 0.35rem;
  }

  .nav-utilities {
    gap: 0.8rem;
  }

  .nav-countdown__unit span {
    font-size: 0.95rem;
    min-width: 1.3ch;
  }

  .nav-countdown__unit small {
    font-size: 0.6rem;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 100px;
  }

  .programme-layout {
    grid-template-columns: 1fr;
  }

  .programme-panel {
    border-left: 0;
    border-top: 1px solid rgba(220, 244, 236, 0.24);
    padding: 0.9rem 0 0;
  }

  .about__inner {
    min-height: 520px;
  }

  .about__copy {
    padding-right: 1.5rem;
    padding-bottom: 3rem;
  }

  body[data-page="programme"] .programme-layout--clean {
    grid-template-columns: 1fr;
  }

  body[data-page="programme"] .programme-panel {
    border: 1px solid var(--border);
    padding: 1rem;
  }

  .main-nav {
    gap: 0.9rem;
    margin: 0 0.5rem;
  }

  .main-nav a {
    font-size: var(--text-xs);
    letter-spacing: 0.03em;
  }

  .nav-dropdown a {
    font-size: var(--text-xs);
    letter-spacing: 0.03em;
  }

  .brand img {
    height: 145px;
  }

  .site-header.is-scrolled .brand img {
    height: 100px;
  }

  .nav-wrap {
    min-height: 168px;
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: 130px;
  }

  .nav-countdown {
    padding: 0;
  }

  .nav-countdown__unit span {
    font-size: 1rem;
  }

  .resource-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-field--search {
    grid-column: 1 / -1;
  }

  .resource-clear {
    justify-self: start;
  }

  .attendee-grid,
  .trip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transport-grid {
    grid-template-columns: 1fr;
  }

  .dining-list {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 84px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    min-height: 140px;
    padding: 0.45rem 0;
    position: relative;
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: 112px;
  }

  .brand {
    order: 1;
    z-index: 2;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .brand img {
    height: 120px;
  }

  .site-header.is-scrolled .brand img {
    height: 88px;
  }

  .site-header.is-menu-open .mobile-menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 23, 20, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 997;
  }

  .site-header.is-menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(24rem, 100vw);
    height: calc(100svh - var(--header-height));
    margin: 0;
    padding: 1rem 1.1rem max(1rem, env(safe-area-inset-bottom));
    border-left: 1px solid rgba(16, 35, 31, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -18px 0 38px rgba(9, 21, 19, 0.18);
    overflow-y: auto;
    transform: translateX(103%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
  }

  .site-header.is-menu-open .main-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.28s ease;
  }

  .main-nav a {
    color: var(--text);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    padding: 0.9rem 0.4rem;
    border-bottom: 1px solid rgba(16, 35, 31, 0.08);
  }

  .main-nav a::after {
    bottom: 0.7rem;
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-item__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-chevron {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    min-width: 0;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    color: rgba(10, 40, 32, 0.6);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    padding: 0.62rem 0.4rem 0.62rem 1rem;
    border-bottom: 1px solid rgba(16, 35, 31, 0.06);
    background: transparent !important;
  }

  .nav-dropdown a:hover {
    color: var(--heading-secondary);
  }

  .nav-utilities {
    display: none;
    order: 2;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    gap: 0.55rem;
    margin-top: 0;
    z-index: 1;
  }

  .site-header.is-scrolled .nav-utilities {
    display: inline-flex;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
    z-index: 2;
  }

  .nav-utilities .btn,
  .nav-enquire {
    display: none;
  }

  .nav-countdown {
    color: #2a4a42;
    gap: 0.22rem;
  }

  .nav-countdown__time {
    gap: 0.18rem;
  }

  .nav-countdown__unit span {
    font-size: clamp(0.92rem, 2.8vw, 1.12rem);
    min-width: 1.35ch;
  }

  .nav-countdown__unit small {
    font-size: 0.62rem;
    color: rgba(16, 35, 31, 0.6);
  }

  .site-header.is-scrolled .mobile-menu-toggle {
    margin-left: 0;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero-grid,
  .section-head.split,
  .trip-layout {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about__copy {
    padding: 3rem 0;
  }

  .about-carousel {
    min-height: 380px;
  }

  body[data-page="programme"] .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    align-content: end;
    justify-items: center;
    gap: 1.2rem;
  }

  body[data-page="home"] .hero {
    min-height: 0;
    padding-top: calc(0.75rem + var(--header-height));
    padding-bottom: 1.2rem;
  }

  .hero-backdrop {
    background-position: 68% center;
  }

  .hero .container {
    box-sizing: border-box;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    margin-bottom: 0.74rem;
    font-size: clamp(2.1rem, 9.8vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: 0.012em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }

  .hero-lead {
    max-width: 34ch;
    font-size: 1.02rem;
    line-height: 1.52;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-actions {
    margin-top: 1.22rem;
    width: 100%;
    justify-content: center;
    gap: 0.66rem;
  }

  .hero .hero-actions .btn {
    width: min(100%, 430px);
    min-height: 52px;
    padding: 0.95rem 1.35rem;
    font-size: var(--text-sm);
    letter-spacing: 0.075em;
    border-radius: 1rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1rem;
    row-gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-meta p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    font-size: var(--text-md);
    max-width: 100%;
  }

  .hero-meta__label {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  /* Hosted by — fix flex-basis: 100% which becomes height in column flex */
  .hero-meta__full {
    flex-basis: auto;
    width: 100%;
    padding-top: 1rem;
    margin-top: 0.25rem;
  }

  .programme-grid,
  .trip-grid {
    grid-template-columns: 1fr;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .dining-list {
    grid-template-columns: 1fr;
  }

  .impact .container {
    justify-content: center;
  }

  .impact__grid {
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .impact__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .impact__grid--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact__grid--expanded .impact__stat:nth-child(2n)::after {
    display: none;
  }

  .impact__grid--5col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .impact__grid--5col .impact__stat:nth-child(3n)::after {
    display: none;
  }

  .impact__stat,
  .impact__stat:first-child,
  .impact__stat:last-child {
    padding: 0 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  .impact__stat:last-child {
    border-right: 0;
  }

  .impact__value {
    justify-content: center;
  }

  .impact__number {
    font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  }

  .impact__suffix {
    font-size: clamp(0.9rem, 2.8vw, 1.4rem);
  }

  .impact__label {
    font-size: var(--text-xs);
    text-align: center;
  }

  .impact__grid--expanded .impact__label {
    max-width: 16ch;
  }

  .impact__note {
    font-size: 0.72rem;
  }

  .gallery-lightbox {
    padding: 1rem 2rem;
  }

  .gallery-lightbox__close {
    right: -1.6rem;
    top: -0.32rem;
    font-size: 1.7rem;
  }

  .gallery-lightbox__nav {
    width: 2.75rem;
    height: 2.75rem;
  }

  .gallery-lightbox__nav--prev {
    left: -2.5rem;
  }

  .gallery-lightbox__nav--next {
    right: -2.5rem;
  }

  .scroll-top-button {
    right: 0.85rem;
    bottom: 0.9rem;
    width: 2.05rem;
    height: 2.05rem;
    font-size: 1.75rem;
  }
}

@media (max-width: 560px) {
  .resource-controls {
    gap: 0.62rem;
  }

  .resource-filters {
    grid-template-columns: 1fr;
  }

  .resource-field--search {
    grid-column: auto;
  }

  .resource-clear {
    width: 100%;
  }

  .resource-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .resource-table th,
  .resource-table td {
    padding: 0.75rem 0.85rem;
  }

  .resource-table__desc {
    display: none;
  }

  .resource-table__col-desc {
    display: none;
  }

  .about-carousel {
    min-height: 300px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: calc(92svh - var(--header-height));
    padding-top: 1.7rem;
    padding-bottom: 1.1rem;
  }

  body[data-page="home"] .hero {
    min-height: 0;
    padding-top: calc(0.58rem + var(--header-height));
    padding-bottom: 1.05rem;
  }

  .hero-copy h1 {
    margin-bottom: 0.58rem;
    font-size: clamp(1.9rem, 10.4vw, 2.5rem);
    line-height: 1.07;
    letter-spacing: 0.01em;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-lead {
    max-width: 33ch;
    font-size: var(--text-md);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-actions {
    margin-top: 1rem;
    gap: 0.52rem;
  }

  .hero .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 0.92rem 1rem;
    font-size: var(--text-xs);
    letter-spacing: 0.075em;
  }

  .hero-meta p {
    font-size: 1.2rem;
  }

  .hero-meta__label {
    font-size: 1.2rem;
  }

  .hero-meta__full {
    flex-basis: auto;
    width: 100%;
    padding-top: 0.9rem;
    margin-top: 0.2rem;
  }

  .nav-wrap {
    min-height: 124px;
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: 92px;
  }

  .brand img {
    height: 100px;
  }

  .site-header.is-scrolled .brand img {
    height: 68px;
  }

  .main-nav {
    gap: 0.32rem 0.62rem;
  }

  .main-nav a {
    font-size: var(--text-xs);
    letter-spacing: 0.035em;
  }

  .nav-dropdown a {
    font-size: var(--text-xs);
    letter-spacing: 0.035em;
  }

  .nav-countdown {
    gap: 0.18rem;
  }

  .nav-countdown__time {
    gap: 0.14rem;
  }

  .nav-countdown__unit span {
    font-size: 0.88rem;
    min-width: 1.25ch;
  }

  .nav-countdown__unit small {
    font-size: 0.58rem;
    color: rgba(16, 35, 31, 0.6);
  }

  .gallery-lightbox {
    padding: 0.75rem 1.35rem;
  }

  .gallery-lightbox__close {
    right: -1.05rem;
    top: -0.38rem;
    font-size: 1.5rem;
  }

  .gallery-lightbox__nav {
    width: 2.35rem;
    height: 2.35rem;
  }

  .gallery-lightbox__nav--prev {
    left: -1.55rem;
  }

  .gallery-lightbox__nav--next {
    right: -1.55rem;
  }

  .attendee-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem 0 1.6rem;
  }

  .footer-brand {
    gap: 0.7rem;
  }

  .footer-logo {
    height: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.6rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 0;
  }

  .footer-bottom p,
  .footer-powered {
    text-align: center;
  }

  .footer-legal {
    gap: 0.3rem;
  }

  .scroll-top-button {
    right: 0.7rem;
    bottom: 0.75rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   OPPORTUNITIES PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Banner ── */
.opp-banner {
  background: linear-gradient(160deg, #061815 0%, #0b3525 48%, #196640 100%);
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  overflow: hidden;
  position: relative;
}

.opp-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(209, 223, 51, 0.12), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(31, 111, 178, 0.18), transparent 40%);
  pointer-events: none;
}

.opp-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.opp-banner__copy .eyebrow {
  color: var(--heading-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
  display: block;
}

.opp-banner__title {
  margin: 0 0 1.2rem;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #edfbf6;
}

.opp-banner__accent {
  color: var(--heading-secondary);
}

.opp-banner__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(243, 251, 248, 0.72);
  max-width: 58ch;
}

/* ── Banner stats ── */
.opp-banner__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 0.6rem;
  min-width: 340px;
}

.opp-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  user-select: none;
}

.opp-stat:hover,
.opp-stat.is-active {
  background: rgba(209, 223, 51, 0.14);
  border-color: rgba(209, 223, 51, 0.5);
  transform: translateY(-2px);
}

.opp-stat__count {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #edfbf6;
}

.opp-stat__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 251, 248, 0.55);
  margin-top: 0.3rem;
}

/* ── Disclaimer bar ── */
.opp-disclaimer {
  background: #fffbeb;
  border-bottom: 1px solid #f5e2a0;
  padding: 0.9rem 0;
}

.opp-disclaimer p {
  margin: 0;
  font-size: var(--text-base);
  color: #7a5b0a;
  line-height: 1.55;
}

.opp-disclaimer strong {
  color: #5a3f00;
}

/* ── Controls ── */
.opp-controls {
  margin-bottom: 2rem;
}

.opp-type-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.opp-type-tabs::-webkit-scrollbar {
  display: none;
}

.opp-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.3rem;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.opp-tab:hover {
  color: var(--text);
  border-bottom-color: #c8ddd8;
}

.opp-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: transparent;
}

.opp-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: flex-end;
}

.opp-search {
  flex: 1 1 280px;
}

.opp-meta {
  margin-top: 0.75rem;
}

/* ── Opportunity results container ── */
.opp-grid {
  display: block;
}

.opp-empty {
  text-align: center;
  color: var(--body-text-charcoal);
  padding: 3rem 0;
  font-size: var(--text-md);
}

/* ── Table wrapper ── */
.opp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}

/* ── Table column widths ── */
.opp-col--org    { width: 13%; }
.opp-col--opp    { width: 30%; }
.opp-col--type   { width: 10%; }
.opp-col--sector { width: 14%; }
.opp-col--target { width: 14%; }
.opp-col--status { width: 12%; }
.opp-col--link   { width: 7%; }

/* ── Table ── */
.opp-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.opp-table thead {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.opp-table th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.opp-table td {
  padding: 1rem 1.1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  line-height: 1.5;
}

.opp-table tbody tr:last-child td {
  border-bottom: none;
}

.opp-table tbody tr {
  transition: background 0.14s ease;
}

.opp-table tbody tr:hover td {
  background: #f7fcfa;
}

/* ── Table cell content ── */
.opp-table__org {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading-primary);
  white-space: normal;
  word-break: break-word;
  max-width: 14ch;
}

.opp-table__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--heading-primary);
  line-height: 1.4;
}

.opp-table__desc-wrap {
  margin-top: 0.3rem;
}

.opp-table__desc {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--body-text-charcoal);
  line-height: 1.6;
}

/* ── Read more button ── */
.opp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.45rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  transition: color 0.2s ease;
  line-height: 1;
}

.opp-read-more:hover,
.opp-read-more:focus-visible {
  color: var(--primary-strong);
  outline: none;
}

.opp-read-more__icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.32s var(--ease-default);
}

.opp-read-more[aria-expanded="true"] .opp-read-more__icon {
  transform: rotate(180deg);
}

/* Type — plain clean text */
.opp-table__type-plain {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

/* Status — dot only with tooltip */
.opp-col--status {
  width: 2.4rem;
  text-align: center;
  vertical-align: middle !important;
}

.opp-status-dot[data-tooltip] {
  position: relative;
  cursor: default;
  display: inline-block;
}

.opp-status-dot[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-heading);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.opp-status-dot[data-tooltip]:hover::after {
  opacity: 1;
}

.opp-table__type {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.opp-type-text--bursary    { color: #174b82; }
.opp-type-text--research   { color: #0f5a3d; }
.opp-type-text--employment { color: #7a4d00; }
.opp-type-text--business   { color: #3d2070; }
.opp-type-text--mentorship { color: #8a1a1a; }

.opp-table__sector,
.opp-table__target {
  font-size: var(--text-sm);
  color: var(--body-text-charcoal);
  white-space: nowrap;
}

.opp-table__status {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #3d5850;
  white-space: nowrap;
}

.opp-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.opp-dot--active   { background: #22c55e; }
.opp-dot--periodic { background: #f59e0b; }
.opp-dot--closed   { background: #94a3b8; }

.opp-table__link {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  transition: color 0.16s ease;
}

.opp-table__link:hover {
  color: var(--primary-strong);
}

.opp-table__link svg {
  width: 12px;
  height: 12px;
}

/* ── Past Events CTA Banner (impact-style strip)
   background and bubble styles inherited from .impact ───────────────────── */

.pe-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  min-height: 0;
}

.pe-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.3vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.02;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  flex: 1 1 auto;
}

.pe-cta__accent {
  color: var(--heading-secondary);
}

.pe-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.55rem;
  min-height: 46px;
  margin-left: auto;
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pe-cta__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.pe-cta__btn:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--text);
}

.pe-cta__btn:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

.pe-cta__btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .pe-cta__title {
    white-space: normal;
    font-size: clamp(1.25rem, 5.3vw, 1.8rem);
  }

  .pe-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .pe-cta__btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

/* ── Recommend CTA section ── */
.opp-recommend {
  background: linear-gradient(135deg, #061815 0%, #0b2e22 60%, #163a28 100%);
  padding: 5rem 0;
}

.opp-recommend__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.opp-recommend__copy h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #edfbf6;
}

.opp-recommend__accent {
  color: var(--heading-secondary);
  display: block;
}

.opp-recommend__copy p {
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.65;
  color: rgba(243, 251, 248, 0.65);
  max-width: 52ch;
}

.opp-recommend__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--brand-accent);
  color: var(--brand-accent-ink);
  font-weight: 700;
  font-size: var(--text-md);
  letter-spacing: 0.04em;
  border-radius: 0.35rem;
  transition: background 0.2s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.opp-recommend__cta:hover {
  background: var(--brand-accent-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ── SAGHS 2022 "Journey Continued" — full redesign ── */

.opp-recommend--journey {
  --journey-base-layer:
    linear-gradient(135deg,
      #02253c 0%,
      #004774 38%,
      #0a5c90 70%,
      #17304b 100%
    );
  --journey-overlay-layer:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.82) 20%,
      rgba(0, 0, 0, 0.42) 48%,
      rgba(0, 0, 0, 0.12) 70%,
      transparent 86%
    ),
    linear-gradient(to right,
      #004774 0%,
      #004774 30%,
      rgba(0, 71, 116, 0.78) 56%,
      rgba(0, 71, 116, 0.18) 78%,
      transparent 100%
    );
  --journey-overlay-layer-mobile:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.76) 20%,
      rgba(0, 0, 0, 0.34) 50%,
      transparent 78%
    ),
    linear-gradient(to bottom,
      #004774 0%,
      rgba(0, 71, 116, 0.72) 54%,
      #004774 100%
    );
  --journey-texture-image: none;
  --journey-texture-position: 10% 50%;
  --journey-texture-size: auto 78%;
  --journey-texture-opacity: 0;
  --journey-texture-transform: rotate(0deg) scale(1);
  --journey-texture-veil: none;
  --journey-texture-image-mobile: none;
  --journey-texture-position-mobile: 50% 42%;
  --journey-texture-size-mobile: auto 56%;
  --journey-texture-opacity-mobile: 0;
  --journey-texture-transform-mobile: rotate(0deg) scale(1);
  --journey-texture-veil-mobile: none;
  --journey-bg-layer:
    url('../images/past-events/saghs-2023/gallery-05.jpg') calc(100% + 200px) 42% / 86% auto no-repeat;
  --journey-bg-layer-mobile:
    url('../images/past-events/saghs-2023/gallery-05.jpg') 66% 44% / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.82) 20%,
      rgba(0, 0, 0, 0.42) 48%,
      rgba(0, 0, 0, 0.12) 70%,
      transparent 86%
    ),
    var(--journey-base-layer);
}

.opp-recommend--journey-2025 {
  --journey-texture-image: url('../images/logos/NEW%20logos/AGHS_logo_tilt.png');
  --journey-texture-position: calc(6% - 50px) 50%;
  --journey-texture-size: auto 226%;
  --journey-texture-opacity: 0.18;
  --journey-texture-transform: rotate(0deg) scale(1);
  --journey-texture-veil:
    linear-gradient(to right,
      rgba(0, 71, 116, 0.48) 0%,
      rgba(0, 71, 116, 0.34) 36%,
      rgba(0, 71, 116, 0.14) 58%,
      transparent 78%
    );
  --journey-texture-image-mobile: url('../images/logos/NEW%20logos/AGHS_logo_tilt.png');
  --journey-texture-position-mobile: 40% 44%;
  --journey-texture-size-mobile: auto 166%;
  --journey-texture-opacity-mobile: 0.12;
  --journey-texture-transform-mobile: rotate(0deg) scale(1);
  --journey-texture-veil-mobile:
    radial-gradient(circle at 40% 42%, rgba(0, 71, 116, 0.5) 0%, rgba(0, 71, 116, 0.24) 42%, transparent 72%);
  --journey-bg-layer:
    url('../images/brand-building.jpg') calc(100% + 210px) calc(42% - 10px) / 74% auto no-repeat;
  --journey-bg-layer-mobile:
    url('../images/brand-building.jpg') 62% calc(48% - 10px) / cover no-repeat;
}

.opp-recommend--journey-2023 {
  --journey-texture-image: url('../images/logos/NEW%20logos/AGHS_logo_tilt.png');
  --journey-texture-position: calc(6% - 50px) 50%;
  --journey-texture-size: auto 226%;
  --journey-texture-opacity: 0.18;
  --journey-texture-transform: rotate(0deg) scale(1);
  --journey-texture-veil:
    linear-gradient(to right,
      rgba(0, 71, 116, 0.48) 0%,
      rgba(0, 71, 116, 0.34) 36%,
      rgba(0, 71, 116, 0.14) 58%,
      transparent 78%
    );
  --journey-texture-image-mobile: url('../images/logos/NEW%20logos/AGHS_logo_tilt.png');
  --journey-texture-position-mobile: 40% 44%;
  --journey-texture-size-mobile: auto 166%;
  --journey-texture-opacity-mobile: 0.12;
  --journey-texture-transform-mobile: rotate(0deg) scale(1);
  --journey-texture-veil-mobile:
    radial-gradient(circle at 40% 42%, rgba(0, 71, 116, 0.5) 0%, rgba(0, 71, 116, 0.24) 42%, transparent 72%);
  --journey-bg-layer:
    url('../images/past-events/saghs-2023/gallery-01.jpg') calc(100% + 70px) 44% / 52% auto no-repeat;
  --journey-bg-layer-mobile:
    url('../images/past-events/saghs-2023/gallery-01.jpg') 50% 48% / cover no-repeat;
}

/* Photographic layer — balanced against a directional gradient */
.journey-img-layer {
  position: absolute;
  inset: 0;
  background:
    var(--journey-overlay-layer),
    var(--journey-bg-layer);
  pointer-events: none;
  z-index: 0;
}

.journey-img-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--journey-texture-image);
  background-position: var(--journey-texture-position);
  background-size: var(--journey-texture-size);
  background-repeat: no-repeat;
  opacity: var(--journey-texture-opacity);
  transform: var(--journey-texture-transform);
  transform-origin: 20% 50%;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 34%, transparent 68%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 34%, transparent 68%);
}

.journey-img-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--journey-texture-veil);
}

.journey-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Copy block — left-aligned, max half-width so image shows right */
.journey-copy {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

/* Eyebrow */
.journey-eyebrow {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--heading-secondary);
  opacity: 0.85;
}

/* Main heading */
.journey-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #edfbf6;
  white-space: nowrap;
}

.journey-heading .opp-recommend__accent {
  display: inline;
}

.journey-copy > * {
  width: 100%;
}

.journey-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

body[data-page="saghs-2022"] .journey-actions,
body[data-page="saghs-2023"] .journey-actions {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
}

.journey-actions .opp-recommend__cta {
  align-self: flex-start;
}

/* Body copy */
.journey-lead {
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.7;
  color: rgba(243, 251, 248, 0.65);
  max-width: none;
}

/* CTA — clean text link with animated underline (reuses existing ::after rule) */
.opp-recommend--journey .opp-recommend__cta {
  align-self: flex-start;
  padding: 0 0 0.45rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #edfbf6;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  box-shadow: none;
  margin-top: 0.4rem;
}

.opp-recommend--journey .opp-recommend__cta:hover,
.opp-recommend--journey .opp-recommend__cta:focus-visible {
  background: transparent;
  color: var(--heading-secondary);
  box-shadow: none;
  outline: none;
}

body[data-page="saghs-2025"] .opp-recommend--journey .opp-recommend__inner {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.35rem;
}

body[data-page="saghs-2025"] .opp-recommend--journey {
  background: var(--journey-base-layer);
}

body[data-page="saghs-2025"] .opp-recommend--journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.54) 0%,
      rgba(0, 0, 0, 0.5) 20%,
      rgba(0, 0, 0, 0.26) 48%,
      rgba(0, 0, 0, 0.08) 70%,
      transparent 86%
    ),
    linear-gradient(to right,
      #004774 0%,
      #004774 40%,
      rgba(0, 71, 116, 0.72) 86%,
      rgba(0, 71, 116, 0.18) 94%,
      transparent 100%
    );
}

body[data-page="saghs-2025"] .opp-recommend--journey::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("../images/logos/NEW%20logos/AGHS_logo_tilt.png");
  background-position: calc(6% - 50px) 50%;
  background-size: auto 226%;
  background-repeat: no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 34%, transparent 68%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 34%, transparent 68%);
}

body[data-page="saghs-2025"] .opp-recommend__video-bg {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 12%, rgba(0, 0, 0, 0.56) 30%, #000 48%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 12%, rgba(0, 0, 0, 0.56) 30%, #000 48%);
}

body[data-page="saghs-2025"] .opp-recommend--journey > .container {
  position: relative;
  z-index: 2;
}

body[data-page="saghs-2025"] .opp-recommend--journey .opp-recommend__copy {
  width: min(100%, 760px);
}

body[data-page="saghs-2025"] .opp-recommend--journey .opp-recommend__copy p {
  max-width: 74ch;
}

body[data-page="saghs-2025"] .opp-recommend--journey .opp-recommend__cta {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="saghs-2025"] .opp-recommend__video-bg {
    display: none;
  }

  body[data-page="saghs-2025"] .opp-recommend--journey {
    background:
      linear-gradient(to right,
        rgba(0, 0, 0, 0.54) 0%,
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0.26) 48%,
        rgba(0, 0, 0, 0.08) 70%,
        transparent 86%
      ),
      linear-gradient(
        to right,
        #004774 0%,
        #004774 40%,
        rgba(0, 71, 116, 0.72) 86%,
        rgba(0, 71, 116, 0.18) 94%,
        transparent 100%
      ),
      url("../images/stock-images/next-chapter-bg-poster.jpg") right center / 58% 100% no-repeat;
  }
}

@media (max-width: 768px) {
  .opp-recommend__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .opp-recommend__cta {
    width: 100%;
    justify-content: center;
  }

  .opp-recommend--journey .opp-recommend__cta {
    width: auto;
    justify-content: flex-start;
    align-self: flex-start;
  }

  body[data-page="saghs-2025"] .opp-recommend--journey::before {
    background:
      linear-gradient(to bottom,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.44) 20%,
        rgba(0, 0, 0, 0.22) 50%,
        transparent 78%
      ),
      linear-gradient(to bottom,
        #004774 0%,
        rgba(0, 71, 116, 0.72) 54%,
        #004774 100%
      );
  }

  body[data-page="saghs-2025"] .opp-recommend--journey::after {
    background-position: 40% 44%;
    background-size: auto 166%;
    opacity: 0.12;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 58%, transparent 82%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 58%, transparent 82%);
  }

  body[data-page="saghs-2025"] .opp-recommend__video-bg {
    inset: auto 0 0;
    width: 100%;
    height: 48%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.12) 14%, rgba(0, 0, 0, 0.58) 32%, #000 52%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.12) 14%, rgba(0, 0, 0, 0.58) 32%, #000 52%);
  }

  .journey-img-layer {
    background:
      var(--journey-overlay-layer-mobile),
      var(--journey-bg-layer-mobile);
  }

  .journey-img-layer::before {
    background-image: var(--journey-texture-image-mobile);
    background-position: var(--journey-texture-position-mobile);
    background-size: var(--journey-texture-size-mobile);
    opacity: var(--journey-texture-opacity-mobile);
    transform: var(--journey-texture-transform-mobile);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 42%, transparent 76%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 42%, transparent 76%);
  }

  .journey-img-layer::after {
    background: var(--journey-texture-veil-mobile);
  }

  .journey-container {
    justify-content: flex-start;
  }

  .journey-copy {
    width: 100%;
    align-items: flex-start;
  }

  .journey-heading {
    font-size: clamp(1.35rem, 6vw, 2.3rem);
  }

  .journey-copy > * {
    width: auto;
    max-width: 100%;
  }

  .journey-actions {
    align-items: flex-start;
  }

  .journey-actions .opp-recommend__cta {
    align-self: flex-start;
  }

  .opp-search-row {
    flex-direction: column;
  }

  .opp-search-row .resource-field {
    width: 100%;
  }

  .opp-table th,
  .opp-table td {
    padding: 0.75rem 0.85rem;
  }

  .opp-table__desc-wrap {
    display: none;
  }
}

@media (max-width: 540px) {
  .opp-tab {
    font-size: var(--text-sm);
    padding: 0.6rem 1rem;
  }
}

/* ── End Opportunities Page ── */

/* ══════════════════════════════════════════════════════════════════
   MOBILE HERO — Premium above-the-fold redesign
   3-layer rule: Countdown Badge → Headline → Single CTA
   Applied at max-width: 768px (mobile phones & small tablets)
   Desktop layout is completely unchanged.
   ══════════════════════════════════════════════════════════════════ */

/* Base styles for mobile-only elements — hidden on desktop by default */
.hero-mobile-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  width: fit-content;
  white-space: nowrap;
}

.hero-mobile-badge__days {
  color: var(--heading-secondary);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.hero-mobile-location {
  display: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-text-link {
  display: none;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding-bottom: 3px;
  transition: color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.hero-text-link:hover,
.hero-text-link:focus-visible {
  color: var(--heading-secondary);
  border-color: rgba(130, 187, 38, 0.6);
}

/* ── Mobile hero layout & overrides ── */
@media (max-width: 768px) {

  /* Show mobile-only elements */
  .hero-mobile-badge    { display: flex; }
  .hero-mobile-location { display: block; }
  .hero-text-link       { display: flex; }

  /* Hide desktop-only hero elements */
  .hero .hero-meta              { display: none !important; }
  .hero .hero-lead              { display: none !important; }
  .hero .hero-actions .btn--ghost { display: none !important; }

  /* Hero: full viewport height, position:relative is the anchor for the pinned text link */
  .hero {
    position: relative;
    min-height: 100svh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* Subtle dark overlay for mobile text legibility — keeps background visible */
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0, 71, 116, 0.82) 0%,
      rgba(0, 71, 116, 0.68) 38%,
      rgba(0, 71, 116, 0.18) 72%,
      rgba(0, 71, 116, 0) 100%
    );
  }

  /* Container: vertically centered column — authoritative mobile hero layout */
  .hero .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    padding-inline: var(--container-gutter);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Hero grid: centered flex column */
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    gap: 0;
  }

  /* Hero copy: flex column, everything centred */
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    gap: 0;
  }

  /* Spacing rhythm */
  .hero-mobile-badge    { margin-bottom: 16px; }
  .hero-mobile-location { margin-bottom: 28px; }

  /* Text link pinned to very bottom of .hero (direct child → anchors to position:relative .hero) */
  .hero-text-link {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* CTA ─ single solid button */
  .hero-actions {
    margin-top: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .hero .hero-actions .btn:first-child {
    width: min(100%, 360px);
    padding: 14px 20px;
    font-size: var(--text-sm);
    letter-spacing: 0.08em;
    border-radius: 16px;
    min-height: 52px;
  }
}

/* Extra-small phones */
@media (max-width: 480px) {
  .impact__grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0;
  }

  .impact__grid--expanded {
    grid-template-columns: 1fr;
  }

  .impact__grid--expanded .impact__stat::after {
    display: none;
  }

  .impact__grid--5col {
    grid-template-columns: 1fr;
  }

  .impact__grid--5col .impact__stat::after {
    display: none;
  }

  .impact__grid--4 .impact__stat:nth-child(2) {
    border-right: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .hero .container {
    padding-inline: var(--container-gutter);
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 4rem;
  }

  .hero-text-link {
    bottom: 1.75rem;
  }
}

/* ── End Mobile Hero Redesign ── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body {
    animation: none;
  }

  body::before,
  body::after {
    animation: none;
  }

  .hero::before,
  .hero-backdrop {
    animation: none;
    transform: none;
  }

  .hero-copy > h1,
  .hero-copy > .hero-lead,
  .hero-copy > .hero-meta,
  .hero-copy > .hero-actions,
  .hero-copy .hero-actions .btn {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .main-nav a {
    opacity: 1;
    transform: none;
    animation: none;
  }

}

/* ============================================================
   PAST EVENTS — Shared & Page-specific styles
   ============================================================ */

/* ── Past Events Hero (overview page) ── */
.past-events-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}

.past-events-hero .hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 60%, rgba(31, 111, 178, 0.35), transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(209, 223, 51, 0.18), transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(240, 154, 42, 0.15), transparent 40%),
    url("../images/stock-images/AdobeStock_713788288.jpeg") center / cover no-repeat;
  z-index: 0;
}

.past-events-hero .container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
}

.past-events-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heading-secondary);
  margin-bottom: 1.2rem;
}

.past-events-hero__eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--heading-secondary);
}

.past-events-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.past-events-hero h1 .hero-accent {
  color: var(--heading-secondary);
}

.past-events-hero__lead {
  font-size: 1.125rem;
  color: rgba(243, 251, 248, 0.75);
  max-width: 56ch;
  line-height: 1.65;
  margin: 0;
}

/* ── Individual Event Page Hero ── */
.past-event-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}

.past-event-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.past-event-hero:hover .past-event-hero__bg {
  transform: scale(1);
}

.past-event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 24, 21, 0.92) 0%,
    rgba(6, 24, 21, 0.6) 45%,
    rgba(6, 24, 21, 0.2) 100%
  );
  z-index: 1;
}

.past-event-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.past-event-hero__year-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--heading-secondary);
  border: 1.5px solid rgba(130, 187, 38, 0.5);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.2rem;
}

.past-event-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.past-event-hero h1 .hero-accent {
  color: var(--heading-secondary);
}

.past-event-hero__meta {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(243, 251, 248, 0.7);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.past-event-hero__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.past-event-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* â”€â”€ Past Summits Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.past-summits-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

/* Logo watermark — sits behind the cards */
.past-summits-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 125%;
  aspect-ratio: 1;
  transform: translateY(-47%);
  background-image: url("../images/logos/NEW%20logos/AGHS_logo2_3D.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.past-summits-section > .container {
  position: relative;
  z-index: 1;
}

.past-summits-section .past-summits-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.past-summits-section .past-summits-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--heading-primary);
  margin: 0 0 0.6rem;
}

.past-summits-section .past-summits-title .hero-accent {
  color: var(--heading-secondary);
}

/* Explore each year panels */
.past-summits-section .past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.55vw, 1.35rem);
  align-items: stretch;
}

.past-summits-section .event-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 6 / 7;
}

.past-summits-section .event-card__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  color: inherit;
  text-decoration: none;
  background: var(--bg);
  transform: translateY(0);
  transition:
    transform var(--duration-base) var(--ease-default),
    box-shadow var(--duration-base) var(--ease-default);
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) {
  transform: translateY(-0.28rem);
  box-shadow: 0 26px 44px rgba(4, 29, 24, 0.16);
}

.past-summits-section .event-card__inner:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
}

.past-summits-section .event-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 74%, rgba(224, 217, 0, 0.08) 0%, rgba(224, 217, 0, 0) 24%),
    radial-gradient(circle at 18% 92%, rgba(148, 212, 240, 0.06) 0%, rgba(148, 212, 240, 0) 22%),
    linear-gradient(
      180deg,
      rgba(2, 15, 12, 0) 0%,
      rgba(2, 15, 12, 0) 38%,
      rgba(3, 18, 14, 0.18) 48%,
      rgba(3, 18, 14, 0.58) 61%,
      rgba(2, 15, 12, 0.88) 76%,
      rgba(2, 15, 12, 0.97) 100%
    ),
    repeating-linear-gradient(
      135deg,
      rgba(148, 212, 240, 0.032) 0 1px,
      transparent 1px 44px
    );
  opacity: 1;
}

.past-summits-section .event-card__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 -120px 130px rgba(4, 20, 16, 0.28),
    inset 0 0 0 1px rgba(243, 251, 248, 0.05);
  opacity: 1;
  transition: opacity var(--duration-base) ease;
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible)::after {
  opacity: 1;
}

.past-summits-section .event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.74) saturate(0.9) contrast(1.06);
  transition:
    transform 0.7s var(--ease-default),
    filter var(--duration-base) ease;
}

.past-summits-section .event-card__img--logo {
  object-fit: contain;
  object-position: center top;
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.8rem, 2.8vw, 2.8rem) clamp(13rem, 16vw, 15.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f1f7f4 100%);
  filter: none;
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__img {
  transform: scale(1.04);
  filter: brightness(0.8) saturate(0.95) contrast(1.08);
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__img--logo {
  filter: none;
}

.past-summits-section .event-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(6, 24, 21, 0.2) 0%,
      rgba(6, 24, 21, 0.03) 18%,
      rgba(6, 24, 21, 0.06) 34%,
      rgba(6, 24, 21, 0.16) 46%,
      rgba(6, 24, 21, 0.36) 58%,
      rgba(6, 24, 21, 0.72) 78%,
      rgba(6, 24, 21, 0.94) 100%
    ),
    radial-gradient(circle at 50% 10%, rgba(243, 251, 248, 0.08) 0%, rgba(243, 251, 248, 0) 30%);
  opacity: 1;
  transition: opacity var(--duration-base) ease;
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__overlay {
  opacity: 0.96;
}

.past-summits-section .event-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  min-height: 46%;
  padding: clamp(1.55rem, 2vw, 1.9rem);
  transform: translateY(0);
  transition: transform var(--duration-base) var(--ease-default);
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__content {
  transform: translateY(-0.2rem);
}

.past-summits-section .event-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 3.25vw, 3.55rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 0.92;
  color: #ffffff;
  text-shadow: 0 14px 34px rgba(4, 20, 16, 0.24);
  margin-bottom: 0.75rem;
}

.past-summits-section .event-card__year-accent {
  color: var(--heading-secondary);
}

.past-summits-section .event-card__sub {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 2.25rem;
}

.past-summits-section .event-card__month {
  color: var(--hydrogen-green);
}

.past-summits-section .event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--duration-fast) ease,
    gap var(--duration-fast) ease;
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__cta {
  gap: 0.65rem;
  opacity: 1;
}

.past-summits-section .event-card__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--hydrogen-green);
  transition: transform var(--duration-fast) ease;
}

.past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__cta svg {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .past-summits-section .past-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .past-summits-section .event-card {
    aspect-ratio: 11 / 12;
  }
}

@media (max-width: 640px) {
  .past-summits-section .past-events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .past-summits-section .event-card {
    aspect-ratio: 6 / 7;
  }

  .past-summits-section .event-card__content {
    min-height: 44%;
    padding: 1.35rem;
  }

  .past-summits-section .event-card__title {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
  }

  .past-summits-section .event-card__sub {
    font-size: 0.7rem;
    margin-bottom: 1.8rem;
  }

  .past-summits-section .event-card__img--logo {
    padding: 1.35rem 1.6rem 12.25rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .past-summits-section .event-card__inner,
  .past-summits-section .event-card__img,
  .past-summits-section .event-card__overlay,
  .past-summits-section .event-card__content,
  .past-summits-section .event-card__cta,
  .past-summits-section .event-card__cta svg {
    transition: none;
  }

  .past-summits-section .event-card__inner:is(:hover, :focus-visible),
  .past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__img,
  .past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__content,
  .past-summits-section .event-card__inner:is(:hover, :focus-visible) .event-card__cta svg {
    transform: none;
  }
}

/* ── Event Gallery ── */
.event-gallery-section {
  background: var(--bg);
  padding: 5rem 0;
}

.event-gallery-section .section-header {
  margin-bottom: 2.5rem;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.event-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--card-radius) * 2);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.event-gallery__item:nth-child(1),
.event-gallery__item:nth-child(5),
.event-gallery__item:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

.event-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}

.event-gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

.event-gallery__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 21, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.event-gallery__item:hover .event-gallery__item__overlay {
  background: rgba(6, 24, 21, 0.3);
}

.event-gallery__item__overlay svg {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #ffffff;
  width: 32px;
  height: 32px;
}

.event-gallery__item:hover .event-gallery__item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

.event-gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* â”€â”€ Presidential Quote â”€â”€ */
.event-quote {
  --event-quote-left-bg: url("../images/past-events/saghs-2025/Copy of GHS Speeches_220.jpg");
  --event-quote-left-size: cover;
  --event-quote-left-position: center center;
  --event-quote-right-bg: url("../images/past-events/saghs-2025/Copy of GHS Speeches_239.jpg");
  --event-quote-right-size: 136%;
  --event-quote-right-position: 34% 56%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 0;
}

body[data-page="saghs-2022"] .event-quote {
  --event-quote-left-bg: url("../images/past-events/saghs-2022/president-2022.jpeg");
  --event-quote-right-bg: url("../images/past-events/saghs-2022/gallery-08.jpg");
  --event-quote-right-size: cover;
  --event-quote-right-position: center center;
}

body[data-page="saghs-2023"] .event-quote {
  --event-quote-left-bg: url("../images/past-events/saghs-2023/hero.jpg");
  --event-quote-right-bg: url("../images/past-events/saghs-2023/gallery-01.jpg");
  --event-quote-right-size: cover;
  --event-quote-right-position: center center;
}

/* Left-side background image - fades out at 75% from the left */
.event-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background-image: var(--event-quote-left-bg);
  background-size: var(--event-quote-left-size);
  background-position: var(--event-quote-left-position);
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 95%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 95%);
  pointer-events: none;
  z-index: 0;
}

/* Right-side background image - fades out at 75% from the right */
.event-quote::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: var(--event-quote-right-bg);
  background-size: var(--event-quote-right-size);
  background-position: var(--event-quote-right-position);
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 95%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 95%);
  pointer-events: none;
  z-index: 0;
}

.event-quote__split {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 3rem;
  align-items: end;
}

/* Left: portrait sized by the image rather than the container */
.event-quote__media {
  position: relative;
  background: transparent;
  left: -2rem;
  align-self: end;
  line-height: 0;
}

.event-quote__media img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  filter: none;
  object-fit: contain;
  object-position: center bottom;
}

body[data-page="saghs-2025"] .event-quote__media img {
  width: 112.6%;
  max-width: none;
  transform: translateX(-1.5rem);
}

/* Right: quote content */
.event-quote__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem 4rem 1.5rem;
  position: relative;
  background: transparent;
  z-index: 1;
  left: 2rem;
}

/* Decorative large opening quote mark */
.event-quote__mark {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.8;
  color: var(--heading-secondary);
  display: block;
  margin-bottom: 0.5rem;
  user-select: none;
}

.event-quote__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 2.5rem;
  font-style: normal;
}

.event-quote__text p {
  margin: 0 0 1.25rem;
}

.event-quote__text p:last-child {
  margin-bottom: 0;
}

/* Attribution */
.event-quote__attr {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.event-quote__attr-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--heading-primary);
  margin: 0 0 0.4rem;
}

.event-quote__attr-role {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading-secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .event-quote {
    padding-top: 2.75rem;
  }

  .event-quote::before {
    width: 100%;
    height: min(58vw, 17rem);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 54%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 54%, rgba(0, 0, 0, 0) 100%);
  }

  .event-quote::after {
    content: none;
    display: none;
  }

  .event-quote__split {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
    padding-inline: var(--container-gutter);
    padding-left: var(--container-gutter);
    box-sizing: border-box;
  }

  .event-quote__media {
    height: auto;
    left: 0;
    width: min(100%, 25rem);
    margin-inline: auto;
  }

  body[data-page="saghs-2025"] .event-quote__media img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .event-quote__content {
    left: 0;
    width: 100%;
    min-width: 0;
    padding: 2.5rem 0 3.25rem;
    box-sizing: border-box;
    overflow: visible;
  }

  .event-quote__text,
  .event-quote__attr-name,
  .event-quote__attr-role {
    overflow-wrap: anywhere;
  }
}


/* ── Key Announcements (2023) ── */
.event-announcements {
  background: #f7fcfa;
  padding: 4.75rem 0;
  border-top: 1px solid rgba(16, 35, 31, 0.06);
  border-bottom: 1px solid rgba(16, 35, 31, 0.06);
}

.event-announcements__head {
  max-width: none;
  width: 100%;
  margin-bottom: 1.6rem;
}

.event-announcements__title {
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--heading-primary);
}

.event-announcements__accent {
  color: var(--hydrogen-green);
}

.event-announcements__intro {
  margin: 0;
  color: var(--body-text-charcoal);
  max-width: none;
  width: 100%;
}

.event-announcements__stack {
  display: grid;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.event-announcement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border);
}

.event-announcement-row:last-child {
  border-bottom: 0;
}

.event-announcement-row__content {
  position: relative;
  padding-left: 0.95rem;
}

.event-announcement-row__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 3px;
  height: calc(100% - 0.3rem);
  min-height: 1.3rem;
  background: var(--brand-accent);
}

.event-announcement-row__title {
  margin: 0 0 0.28rem;
  font-family: var(--font-heading);
  font-size: var(--text-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.32;
  color: #13312a;
}

.event-announcement-row__text {
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.62;
  color: var(--body-text-charcoal);
}

@media (max-width: 760px) {
  .event-announcements {
    padding: 3.8rem 0;
  }

  .event-announcement-row {
    padding: 0.9rem 0;
  }

  .event-announcement-row__title {
    font-size: var(--text-sm);
  }

  .event-announcement-row__text {
    font-size: var(--text-base);
  }
}

/* ── Partners / Logos Strip ── */
.ep-partners {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2.5rem 0;
}

.ep-partners__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem 4rem;
  flex-wrap: wrap;
}

.ep-partners__eyebrow {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading-primary);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  padding-right: 2.5rem;
}

.ep-partners__eyebrow-accent {
  color: var(--hydrogen-green);
}

.ep-partners__eyebrow-blue {
  color: var(--primary);
}

.ep-partners__eyebrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: rgba(0, 0, 0, 0.1);
}

.ep-partners__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.ep-partners__logo {
  height: 80px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.3s ease;
}

.ep-partners__logo:hover {
  filter: grayscale(0) opacity(1);
}

.ep-partners__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 1.75rem 0;
}

/* ── Country Pavilions ── */
.pavilions-section {
  background: var(--surface, #fff);
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pavilions-section .container {
  width: min(var(--container-max-wide), 96vw);
}

.pavilions-split {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: stretch;
}

.pavilions-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pavilions-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--heading-primary);
  margin: 0 0 1.1rem;
  letter-spacing: 0.02em;
}

.pavilions-accent {
  color: var(--hydrogen-green);
}

.pavilions-lead {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text-secondary, #4a5568);
  max-width: none;
  width: 100%;
  margin: 0;
}

.pavilions-flags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.35rem, 2.5vw, 2.6rem);
  row-gap: 0.35rem;
}

.pavilion-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pavilion-item:first-child {
  border-top: 0;
}

.pavilion-item__flag {
  width: 40px;
  height: auto;
  max-height: 28px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.pavilion-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.pavilion-item__name {
  font-family: var(--font-heading);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--deep-current-blue);
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pavilion-item__desc {
  font-size: clamp(0.66rem, 0.78vw, 0.78rem);
  color: var(--body-text-charcoal);
  letter-spacing: 0.01em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-page="saghs-2025"] .pavilions-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

body[data-page="saghs-2025"] .pavilions-section::before,
body[data-page="saghs-2025"] .pavilions-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body[data-page="saghs-2025"] .pavilions-section::before {
  z-index: 0;
  background-image: url("../images/stock-images/AdobeStock_493941813.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.58;
}

body[data-page="saghs-2025"] .pavilions-section::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.54) 58%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(circle at 78% 20%, rgba(130, 187, 38, 0.08), transparent 34%);
}

body[data-page="saghs-2025"] .pavilions-section .container {
  position: relative;
  z-index: 1;
}

body[data-page="saghs-2025"] .pavilion-item {
  position: relative;
}

body[data-page="saghs-2025"] .pavilion-item__body,
body[data-page="saghs-2025"] .pavilion-item__flag {
  transition: transform 0.22s var(--ease-default);
}

body[data-page="saghs-2025"] .pavilion-item:hover .pavilion-item__body,
body[data-page="saghs-2025"] .pavilion-item:focus-within .pavilion-item__body {
  transform: translateY(-2px);
}

body[data-page="saghs-2025"] .pavilion-item:hover .pavilion-item__flag,
body[data-page="saghs-2025"] .pavilion-item:focus-within .pavilion-item__flag {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="saghs-2025"] .pavilion-item__body,
  body[data-page="saghs-2025"] .pavilion-item,
  body[data-page="saghs-2025"] .pavilion-item__flag {
    transition: none;
  }

  body[data-page="saghs-2025"] .pavilion-item:hover .pavilion-item__body,
  body[data-page="saghs-2025"] .pavilion-item:focus-within .pavilion-item__body,
  body[data-page="saghs-2025"] .pavilion-item:hover .pavilion-item__flag,
  body[data-page="saghs-2025"] .pavilion-item:focus-within .pavilion-item__flag {
    transform: none;
  }
}

body[data-page="saghs-2023"] .pavilions-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

body[data-page="saghs-2023"] .pavilions-title {
  margin: 0 0 1.5rem;
}

body[data-page="saghs-2023"] .pavilions-accent {
  color: var(--primary);
}

body[data-page="saghs-2023"] .pavilions-lead {
  max-width: 38ch;
  width: auto;
}

body[data-page="saghs-2023"] .pavilions-flags {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body[data-page="saghs-2023"] .pavilion-item {
  gap: 1.75rem;
  padding: 1.5rem 0;
}

body[data-page="saghs-2023"] .pavilion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

body[data-page="saghs-2023"] .pavilion-item__flag {
  width: 72px;
  height: 48px;
  max-height: none;
  border-radius: 0;
}

body[data-page="saghs-2023"] .pavilion-item__body {
  gap: 0.25rem;
}

body[data-page="saghs-2023"] .pavilion-item__name {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--heading-primary);
}

body[data-page="saghs-2023"] .pavilion-item__desc {
  font-size: var(--text-sm);
  color: var(--body-text-charcoal);
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .pavilions-flags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body[data-page="saghs-2023"] .pavilions-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .pavilions-split {
    gap: 1.9rem;
  }

  .pavilions-flags {
    grid-template-columns: 1fr;
  }

  .pavilion-item {
    gap: 0.7rem;
    padding: 0.9rem 0;
  }

  .pavilion-item__flag {
    width: 36px;
  }

  body[data-page="saghs-2023"] .pavilion-item {
    gap: 1.2rem;
    padding: 1.25rem 0;
  }

  body[data-page="saghs-2023"] .pavilion-item__flag {
    width: 60px;
  }
}

/* ── Programme / Watch Links ── */
.event-links {
  background: linear-gradient(135deg, #1f6fb2 0%, #1b5c95 100%);
  padding: 2.2rem 0;
}

.event-links__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 620px;
  gap: 0;
  align-items: start;
  justify-items: start;
}

.event-links__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 0.72rem 0;
  color: #ffffff;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.event-links__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.event-links__item:hover {
  background: transparent;
  color: var(--heading-secondary);
  border-color: rgba(209, 223, 51, 0.7);
  transform: none;
}

.event-links__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.95;
}

/* ── Overview Timeline ── */
.past-events-timeline {
  background: var(--bg-soft);
  padding: 6rem 0;
}

/* Timeline section heading */
.timeline-head {
  margin-bottom: 3.5rem;
}

.timeline-head__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.0;
  color: var(--heading-primary);
  margin: 0 0 0.65rem;
}

.timeline-head__title .hero-accent {
  color: var(--heading-secondary);
}

.timeline-head__lead {
  font-size: 1rem;
  color: var(--body-text-charcoal);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.past-events-timeline__track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 0;
}

.past-events-timeline__track::before {
  content: "";
  position: absolute;
  top: 2.875rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--brand-accent), var(--secondary));
  z-index: 0;
  border-radius: 2px;
}

.timeline-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.timeline-node__dot {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  color: var(--primary);
  margin-bottom: 1.1rem;
  box-shadow: 0 0 0 6px rgba(31, 111, 178, 0.08);
  transition: transform 0.25s ease;
}

.timeline-node:hover .timeline-node__dot {
  transform: scale(1.12);
}

.timeline-node--active .timeline-node__dot {
  background: var(--brand-accent);
  border-color: var(--brand-accent-strong);
  color: var(--brand-accent-ink);
  box-shadow: 0 0 0 6px rgba(209, 223, 51, 0.15);
}

.timeline-node--future .timeline-node__dot {
  border-style: dashed;
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 0 6px rgba(240, 154, 42, 0.1);
}

.timeline-node--muted .timeline-node__dot {
  border-color: var(--muted);
  color: var(--muted);
  box-shadow: 0 0 0 6px rgba(107, 138, 132, 0.08);
}

.timeline-node--muted .timeline-node__year,
.timeline-node--muted .timeline-node__label {
  color: var(--muted);
}

.timeline-node__year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-primary);
  margin-bottom: 0.25rem;
}

.timeline-node__label {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

.timeline-node__label-break {
  display: block;
}

.timeline-node__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
  transition: gap 0.2s ease;
}

.timeline-node__link:hover {
  gap: 0.55rem;
}

/* ── Section headers (shared) ── */
.past-events-section-header {
  margin-bottom: 1rem;
}

.past-events-section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.past-events-section-header .eyebrow::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
}

.past-events-section-header--light .eyebrow {
  color: var(--heading-secondary);
}

.past-events-section-header--light .eyebrow::before {
  background: var(--heading-secondary);
}

.past-events-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--heading-primary);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.past-events-section-header--light h2 {
  color: var(--text-light);
}

.past-events-section-header p {
  font-size: 1rem;
  color: var(--body-text-charcoal);
  max-width: 60ch;
  line-height: 1.65;
  margin: 0;
}

.past-events-section-header--light p {
  color: rgba(243, 251, 248, 0.65);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .event-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .event-gallery__item:nth-child(1),
  .event-gallery__item:nth-child(5),
  .event-gallery__item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .past-events-timeline__track {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .past-events-timeline__track::before {
    top: 1.75rem;
    bottom: 1.75rem;
    left: 1.75rem;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline-node {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0;
    gap: 1.25rem;
  }

  .timeline-node__dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }

}

@media (max-width: 600px) {
  .event-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .event-links__inner {
    align-items: stretch;
  }

  .event-links__item {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .two-col-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ── Past Events About Section ── */

.event-about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.8rem, 4vw, 3.8rem);
  align-items: start;
}

.event-about__content {
  max-width: 690px;
}

.event-about__eyebrow {
  margin: 0 0 0.7rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #41635a;
}

.event-about__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--heading-primary);
}

.event-about__title-accent {
  color: var(--heading-secondary);
}

.event-about__lead {
  margin: 0 0 1.05rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body-text-charcoal);
  max-width: 64ch;
}

.event-about__body {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.event-about__body p {
  margin: 0;
  color: var(--body-text-charcoal);
  line-height: 1.65;
}

.event-about__highlights {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.event-about__highlights li {
  position: relative;
  display: grid;
  gap: 0.26rem;
  padding: 0.88rem 0.1rem 0.84rem 0.9rem;
  border-bottom: 1px solid var(--border);
}

.event-about__highlights li:last-child {
  border-bottom: 0;
}

.event-about__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.86rem;
  width: 3px;
  height: calc(100% - 1.72rem);
  min-height: 1.35rem;
  background: var(--brand-accent);
}

.event-about__highlights strong {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  font-weight: 700;
  color: #132f28;
}

.event-about__highlights span {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--body-text-charcoal);
}

.event-about__media {
  display: grid;
  gap: 0.65rem;
}

.event-about__hero-image,
.event-about__thumb-image {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(6, 24, 20, 0.1);
}

.event-about__hero-image {
  aspect-ratio: 4 / 3;
}

.event-about__media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.78fr);
  gap: 0.65rem;
  align-items: stretch;
}

.event-about__thumb-image {
  aspect-ratio: 16 / 10;
}

.event-about__fact-card {
  background:
    url('../images/molecules.svg') right -2.14rem top -2rem / 62% auto no-repeat,
    linear-gradient(
      135deg,
      rgba(130, 187, 38, 0.58) 0%,
      rgba(130, 187, 38, 0.44) 46%,
      rgba(130, 187, 38, 0.16) 78%,
      rgba(130, 187, 38, 0) 100%
    ),
    var(--deep-current-blue);
  color: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.05rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(6, 24, 20, 0.14);
}

.event-about__fact-label {
  margin: 0 0 0.2rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.event-about__fact-value {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 0.98;
  font-weight: 700;
  color: var(--heading-secondary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.event-about__fact-meta {
  margin: 0.45rem 0 0;
  font-size: var(--text-xs);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.event-about__fact-card--2022 .event-about__fact-value {
  color: var(--heading-secondary);
}

.event-about--2022 .event-about__fact-card,
.event-about--2023 .event-about__fact-card {
  padding: 1.2rem 1.15rem 1.1rem;
}

.event-about--2022 .event-about__fact-label,
.event-about--2023 .event-about__fact-label {
  font-size: var(--text-xs);
  letter-spacing: 0.13em;
}

.event-about--2022 .event-about__fact-value,
.event-about--2023 .event-about__fact-value {
  font-size: clamp(2.5rem, 4.7vw, 3.35rem);
  line-height: 0.92;
}

.event-about--2022 .event-about__fact-meta,
.event-about--2023 .event-about__fact-meta {
  font-size: 1rem;
  line-height: 1.25;
  max-width: 12ch;
}

.event-partners__row--spaced {
  margin-bottom: 2.5rem;
}

.event-partners__label--top {
  margin-top: 0.5rem;
}

.section-head--light h2 {
  color: var(--text-light);
}

.section-head--light p {
  color: rgba(243, 251, 248, 0.65);
}

@media (max-width: 860px) {
  .event-about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-about__content {
    max-width: 100%;
  }

  .event-about__media-row {
    grid-template-columns: 1fr;
  }

  .event-about__fact-card {
    min-height: 116px;
  }
}

.ep-sponsors {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.ep-sponsors__title {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--hydrogen-green);
  text-transform: uppercase;
}

.ep-sponsors__year {
  color: var(--primary);
}

.ep-sponsors__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4rem, #000 calc(100% - 4rem), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4rem, #000 calc(100% - 4rem), transparent);
}

.ep-sponsors__track {
  display: flex;
  width: max-content;
  animation: ep-sponsors-marquee 68s linear infinite;
}

.ep-sponsors__marquee:hover .ep-sponsors__track,
.ep-sponsors__marquee:focus-within .ep-sponsors__track {
  animation-play-state: paused;
}

.ep-sponsors__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1.75rem;
  padding-right: 1.75rem;
}

.ep-sponsors__logo {
  display: block;
  width: clamp(8.5rem, 10vw, 10.75rem);
  height: 4.75rem;
  object-fit: contain;
}

@keyframes ep-sponsors-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ep-sponsors__marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .ep-sponsors__track {
    width: auto;
    animation: none;
  }

  .ep-sponsors__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .ep-sponsors__group[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .ep-sponsors__marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
  }

  .ep-sponsors__logo {
    width: 8.25rem;
    height: 4.25rem;
  }
}

/* ── Enquiry form heading accent — keep enquiry heading on the shared brand system ── */
#enquiry-form .hero-accent {
  color: var(--heading-secondary);
}

/* ── Enquiry Form – Textarea ── */

.reg-field textarea {
  min-height: 9rem;
  padding: 0.65rem 0.7rem;
  color: #18372f;
  line-height: 1.6;
  resize: vertical;
}

/* ── Enquiry – Contact Bar ── */

.enq-contact-section {
  background: var(--summit-bar-gradient);
  border-top: 0;
  border-bottom: 0;
}

.enq-contact-heading {
  margin: 0;
  padding: 1.6rem max(1.5rem, 4vw);
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.enq-contact-heading span {
  color: rgba(255, 255, 255, 0.88);
}

.enq-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  --enq-strip-bleed-left: clamp(8rem, 7vw, 8.35rem);
  --enq-strip-bleed-right: clamp(7.5rem, 6.75vw, 8rem);
  width: min(calc(var(--container-max) + var(--enq-strip-bleed-left) + var(--enq-strip-bleed-right)), 98vw);
  margin: 0 auto;
  transform: translateX(calc((var(--enq-strip-bleed-right) - var(--enq-strip-bleed-left)) / 2));
}

.enq-contact-item {
  position: relative;
  padding: 1.3rem 2rem 0.95rem;
  text-align: center;
}

.enq-contact-item:first-child {
  padding-left: 2rem;
}

.enq-contact-item:last-child {
  padding-right: 2rem;
}

.enq-contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.24) 30%,
    rgba(255, 255, 255, 0.24) 70%,
    transparent
  );
}

.enq-contact-item__label {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.enq-contact-item__value,
.enq-contact-item__meta {
  margin: 0;
}

.enq-contact-item__value {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  word-break: break-word;
}

.enq-contact-item__value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.enq-contact-item__value a:hover,
.enq-contact-item__value a:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}

.enq-contact-item__meta {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.enq-contact-item__map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.enq-contact-item__map-link svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: #ffffff;
  transition: color 0.2s ease;
}

.enq-contact-item__map-link:hover,
.enq-contact-item__map-link:focus-visible {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.enq-contact-item__map-link:hover svg,
.enq-contact-item__map-link:focus-visible svg {
  color: rgba(255, 255, 255, 0.86);
}

/* ── Enquiry contact strip — handle long email addresses on mid-desktop ── */

@media (max-width: 1080px) {
  .enq-contact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    --enq-strip-bleed-left: 0rem;
    --enq-strip-bleed-right: 0rem;
    width: min(var(--container-max), 96vw);
    transform: none;
  }

  .enq-contact-item {
    padding: 1.15rem 1.2rem 0.85rem;
  }

  .enq-contact-item__value {
    font-size: clamp(0.82rem, 1.1vw, 1rem);
    word-break: break-all;
  }
}

/* ── Registration & Enquiry Responsive ── */

@media (max-width: 860px) {
  #registration .container {
    padding-left: 0;
    padding-right: 0;
  }

  .reg-layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .reg-wrapper {
    justify-content: flex-start;
    padding: 3rem max(1.5rem, 4vw);
  }

  .reg-content {
    max-width: 100%;
  }

  .reg-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .reg-submit {
    align-self: flex-end;
    width: auto;
  }

  .enq-contact-strip {
    grid-template-columns: 1fr;
  }

  .enq-contact-item {
    padding: 1.1rem 1.4rem 0.8rem;
    text-align: center;
  }

  .enq-contact-item:first-child,
  .enq-contact-item:last-child {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    text-align: center;
  }

  .enq-contact-item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    width: 72%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.24) 30%,
      rgba(255, 255, 255, 0.24) 70%,
      transparent
    );
  }

  .reg-showcase {
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .reg-wrapper {
    padding: 2.6rem 1.2rem;
  }

  .reg-wrapper .section-head h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .reg-success h2 {
    font-size: 1.6rem;
  }

  .reg-success__regid {
    font-size: 1.05rem;
  }

  .reg-showcase {
    min-height: 260px;
  }
}

