/* ============================================================
   STUDENT CITIES SOUTH AFRICA 2026
   styles.css — Premium national conference aesthetic
   Colour palette: Deep Navy #0A1628 | Gold #C9933A | White #FAFAF8
   Fonts: Playfair Display (headlines) + DM Sans (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0E3B27;
  --navy-mid: #164F35;
  --navy-light: #226B47;
  --gold: #C9963C;
  --gold-light: #E8C468;
  --gold-pale: #F5EBD2;
  --white: #FAFAF8;
  --off-white: #F1F3EE;
  --text-primary: #0E2A1D;
  --text-secondary: #3D5647;
  --text-muted: #6B8577;
  --border: rgba(14, 59, 39, 0.10);
  --border-light: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 12px rgba(14, 59, 39, 0.08);
  --shadow-md: 0 8px 32px rgba(14, 59, 39, 0.12);
  --shadow-lg: 0 20px 60px rgba(14, 59, 39, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container-max: 1180px;
  --header-h: 76px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.18;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

p { color: var(--text-secondary); line-height: 1.78; }

em { font-style: italic; color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 147, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.84rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION BASE ===== */
.section { padding: 6rem 0; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title { margin-bottom: 1.2rem; }

.section-intro {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(14, 59, 39, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(14, 59, 39, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px;
}

.logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header-cta { flex-shrink: 0; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(14, 59, 39, 0.98);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-nav ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }

.mobile-nav-link {
  display: block;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mobile-nav-link:hover { color: var(--gold); }

.mobile-nav-ctas { display: flex; flex-direction: column; gap: 0.75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 59, 39, 0.85) 0%,
    rgba(14, 59, 39, 0.65) 50%,
    rgba(14, 59, 39, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 147, 58, 0.2);
  border: 1px solid rgba(201, 147, 58, 0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subheadline {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Countdown */
.hero-countdown {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
}

.countdown-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  min-width: 72px;
}

.countdown-unit span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.countdown-unit small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.countdown-sep {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  margin-top: -1rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon--economy { background: rgba(201, 147, 58, 0.12); color: var(--gold); }
.why-icon--mobility { background: rgba(14, 59, 39, 0.08); color: var(--navy); }
.why-icon--planning { background: rgba(201, 147, 58, 0.12); color: var(--gold); }
.why-icon--destination { background: rgba(14, 59, 39, 0.08); color: var(--navy); }
.why-icon--employability { background: rgba(201, 147, 58, 0.12); color: var(--gold); }

.why-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
}

.why-card p { font-size: 0.92rem; }

/* ============================================================
   IMAGE BAND
   ============================================================ */
.image-band { position: relative; height: 480px; overflow: hidden; }

.image-band-inner { position: relative; height: 100%; }

.band-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,59,39,0.85) 0%, rgba(14,59,39,0.4) 100%);
  display: flex;
  align-items: center;
}

.band-overlay--left {
  background: linear-gradient(90deg, rgba(14,59,39,0.88) 0%, rgba(14,59,39,0.25) 70%);
}

.band-quote {
  max-width: 620px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  border-left: 4px solid var(--gold);
  padding-left: 1.75rem;
}

.band-quote cite {
  display: block;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1.25rem;
}

.conference-callout {
  max-width: 440px;
  padding: 2.5rem;
  background: rgba(14,59,39,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.conference-callout-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.conference-callout h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.conference-callout p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ============================================================
   JOURNEY / FRAMEWORK SECTION
   ============================================================ */
.journey-section { background: var(--off-white); }

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.journey-node {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.journey-flagship-badge {
  position: absolute;
  top: -1rem;
  left: 80px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  z-index: 5;
}

.journey-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  padding-top: 1rem;
  user-select: none;
}

.journey-node--jhb .journey-number { color: rgba(201,147,58,0.25); }
.journey-node--limpopo .journey-number { color: rgba(14,59,39,0.15); }
.journey-node--gqeberha .journey-number { color: rgba(201,147,58,0.35); }
.journey-node--tshwane .journey-number { color: rgba(14,59,39,0.25); }

.journey-node--press .journey-number {
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  padding-top: 1.75rem;
}

.journey-card--milestone {
  background: var(--gold-pale);
  border: 1px dashed var(--gold);
  padding: 1.75rem 2rem;
}

.journey-card--milestone .journey-event-name { font-size: 1.15rem; }
.journey-card--milestone .journey-desc { font-size: 0.9rem; margin-bottom: 0.5rem; }

.journey-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.journey-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.journey-card--flagship {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
}

.journey-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.journey-city-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.journey-date {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.journey-event-name {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.journey-venue {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.journey-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.journey-highlights {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.journey-highlights li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.journey-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.journey-partners {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.journey-connector {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-left: 40px;
}

.journey-connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--border) 100%);
  max-width: 200px;
}

.journey-connector-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section { background: var(--white); }

.events-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.event-tab {
  padding: 0.85rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.event-tab:hover { color: var(--navy); background: var(--off-white); }

.event-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: var(--off-white);
}

.event-panel { display: none; }
.event-panel.active { display: block; }

.event-detail-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.event-detail-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.event-detail-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
}

.event-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.event-date-month {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.event-detail-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.flagship-type { color: #B8861C; }

.event-detail-info h3 { margin-bottom: 0.5rem; }

.event-detail-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.event-detail-body > p {
  font-size: 0.98rem;
  margin-bottom: 2rem;
  max-width: 720px;
}

.event-programme-snapshot {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.event-programme-snapshot h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.programme-items { display: flex; flex-direction: column; gap: 0.9rem; }

.prog-item {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed var(--border);
}

.prog-item:last-child { border-bottom: none; padding-bottom: 0; }

.prog-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 52px;
  flex-shrink: 0;
}

.prog-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.event-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   POLICY SECTION
   ============================================================ */
.policy-section { background: var(--navy); }

.policy-section .section-tag { color: var(--gold-light); }
.policy-section .section-title { color: var(--white); }
.policy-section p { color: rgba(255,255,255,0.72); }

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

.policy-outputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.policy-output-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.policy-output-icon { font-size: 1.3rem; flex-shrink: 0; }

.policy-output-item strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.policy-output-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.policy-themes h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.theme-cards { display: flex; flex-direction: column; gap: 1rem; }

.theme-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.theme-card:hover {
  background: rgba(201,147,58,0.1);
  border-color: rgba(201,147,58,0.35);
}

.theme-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.theme-card p { font-size: 0.88rem; }

/* ============================================================
   IMAGE DUO
   ============================================================ */
.image-duo { padding: 5rem 0; background: var(--off-white); }

.image-duo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.image-duo-block { position: relative; overflow: hidden; border-radius: var(--radius-lg); }

.duo-image {
  width: 100%; height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-duo-block:hover .duo-image { transform: scale(1.04); }

.duo-caption {
  padding: 1.5rem 0 0;
}

.duo-caption h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.duo-caption p { font-size: 0.9rem; }

/* ============================================================
   TOWN & GOWN
   ============================================================ */
.towngown-section { background: var(--white); }

.towngown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tg-pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tg-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 100%);
  opacity: 0;
  transition: var(--transition);
}

.tg-pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tg-pillar:hover::before { opacity: 1; }

.tg-pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.tg-pillar h4 { margin-bottom: 0.6rem; }
.tg-pillar p { font-size: 0.9rem; }

/* ============================================================
   STUDENT VOICES
   ============================================================ */
.voices-section { background: var(--navy); }

.voices-section .section-tag { color: var(--gold-light); }
.voices-section .section-title { color: var(--white); }
.voices-section .section-intro { color: rgba(255,255,255,0.7); }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.voice-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.voice-card:hover {
  background: rgba(201,147,58,0.08);
  border-color: rgba(201,147,58,0.3);
  transform: translateY(-3px);
}

.voice-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.voice-card cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.voices-cta { text-align: center; }
.voices-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-intro .section-title { font-size: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"]::after { content: '−'; }

.faq-question:hover { background: var(--off-white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.93rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   MEDIA SECTION
   ============================================================ */
.media-section { background: var(--white); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.media-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.media-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.media-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.media-card h4 { margin-bottom: 0.75rem; font-size: 1.05rem; line-height: 1.4; }
.media-card p { font-size: 0.88rem; margin-bottom: 1.25rem; }

.media-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  transition: var(--transition);
}

.media-link:hover { color: var(--gold); }

.media-cta { text-align: center; }
.media-cta p { margin-bottom: 1.25rem; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--off-white); }

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

.contact-content .section-title { margin-bottom: 1rem; }
.contact-content > p { margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-detail-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.contact-detail-item a:hover { color: var(--gold); }

/* Contact form */
.contact-form-area {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-area h3 {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,147,58,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  background: rgba(14,59,39,0.06);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   MAILING LIST
   ============================================================ */
.mailing-section {
  background: var(--gold);
  padding: 3rem 0;
}

.mailing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.mailing-text h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.mailing-text p { color: rgba(14,59,39,0.7); font-size: 0.95rem; }

.mailing-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: 480px;
}

.mailing-form input {
  flex: 1;
  padding: 0.8rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  border: 2px solid rgba(14,59,39,0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  outline: none;
  min-width: 200px;
}

.mailing-form input:focus { border-color: var(--navy); }

.mailing-form .btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.mailing-form .btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 1.25rem; }

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit strong { color: rgba(255,255,255,0.6); }

.footer-links h5 {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== LOGO LIGHT VARIANT ===== */
.logo--light .logo-title { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .towngown-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  
  .container { padding: 0 1.25rem; }
  
  .section { padding: 4rem 0; }
  
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .hero-content { padding: 3rem 1.25rem; }
  
  .countdown-timer { flex-wrap: wrap; gap: 0.5rem; }
  .countdown-unit { min-width: 60px; padding: 0.6rem 0.75rem; }
  .countdown-unit span { font-size: 1.5rem; }
  
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  
  .why-grid { grid-template-columns: 1fr; }
  .towngown-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .image-duo-inner { grid-template-columns: 1fr; }
  
  .journey-node { grid-template-columns: 60px 1fr; gap: 1rem; }
  .journey-number { font-size: 2.5rem; }
  .journey-card { padding: 1.75rem; }
  
  .event-detail-meta { flex-direction: column; gap: 1rem; }
  .event-detail-date { flex-direction: row; justify-content: flex-start; align-items: center; gap: 1rem; padding: 0.75rem 1.25rem; }
  .event-date-day { font-size: 1.5rem; }
  .event-detail-card { padding: 1.75rem; }
  
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .mailing-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .mailing-form { width: 100%; max-width: 100%; }
  
  .image-band { height: 360px; }
  .duo-image { height: 260px; }
  
  .events-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .event-tab { white-space: nowrap; }
  
  .section-header { text-align: left; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-countdown { display: none; }
  .journey-connector { display: none; }
  .prog-item { flex-direction: column; gap: 0.25rem; }
}

/* ============================================================
   MILESTONE BANNER (Press Conference etc.)
   ============================================================ */
.milestone-banner {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.milestone-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.milestone-tag {
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.milestone-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.milestone-text strong { color: var(--navy); }

/* ============================================================
   FLAGSHIP TYPE BADGES
   ============================================================ */
.journey-city-tag--continental {
  background: rgba(201,150,60,0.18);
  color: #8A5F16;
}

.journey-city-tag--national {
  background: var(--navy);
  color: var(--white);
}

.dual-flagship-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   SPEAKERS SECTION
   ============================================================ */
.speakers-section { background: var(--white); }

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.speaker-card {
  display: flex;
  gap: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.speaker-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.speaker-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}

.speaker-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.speaker-info h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }

.speaker-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.6rem;
}

.speaker-info p { font-size: 0.88rem; margin-bottom: 0; }

/* ============================================================
   CADETS / STUDENT PLATFORM SECTION
   ============================================================ */
.platform-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.platform-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.platform-section .section-tag { color: var(--gold-light); }
.platform-section .section-title { color: var(--white); text-align: left; margin-bottom: 1.25rem; }
.platform-content > p { color: rgba(255,255,255,0.75); font-size: 1.02rem; margin-bottom: 1.75rem; }

.cadet-streams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cadet-stream-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.cadet-stream-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.platform-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.platform-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.platform-image img { width: 100%; height: 100%; object-fit: cover; }

.platform-link-banner {
  margin-top: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-link-banner span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.platform-link-banner a {
  font-weight: 700;
  color: var(--gold-light);
}

/* ============================================================
   POSTER / EVENT VISUAL CARDS
   ============================================================ */
.poster-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.poster-card img { width: 100%; height: auto; display: block; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.pricing-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: block;
}

.pricing-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}

.event-sub-block {
  border-top: 1px dashed var(--border);
  margin-top: 1.75rem;
  padding-top: 1.75rem;
}

.event-sub-block h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .speakers-grid { grid-template-columns: 1fr; }
  .platform-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .platform-section .section-title { text-align: center; }
}

@media (max-width: 768px) {
  .speaker-card { flex-direction: column; text-align: center; align-items: center; }
  .cadet-streams { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .platform-section { padding: 4rem 0; }
  .milestone-inner { flex-direction: column; }
}

/* ============================================================
   PARTNERSHIPS SECTION
   ============================================================ */
.partnerships-section { background: var(--off-white); }

.partner-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.partner-category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.partner-category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.partner-category-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.partner-category-card h4 { margin-bottom: 0.5rem; }
.partner-category-card p { font-size: 0.88rem; }

.partner-status-banner {
  background: var(--gold-pale);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.partner-status-banner p {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0;
}

.partnerships-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .partner-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .partner-categories { grid-template-columns: 1fr; }
  .partnerships-cta { flex-direction: column; }
  .partnerships-cta .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   EXPLORE PAGE
   ============================================================ */
.explore-hero {
  padding-top: calc(var(--header-h) + 4rem);
  background: var(--white);
}

.explore-tabs { margin-bottom: 2.5rem; }

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.explore-card { background: var(--white); }

.explore-media-grid {
  grid-template-columns: repeat(2, 1fr);
}

.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.download-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.download-row:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.download-icon { font-size: 1.6rem; flex-shrink: 0; }

.download-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.download-info strong { font-size: 0.95rem; color: var(--navy); }
.download-info small { font-size: 0.8rem; color: var(--text-muted); }

.download-action {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .explore-hero { padding-top: calc(var(--header-h) + 2rem); }
  .download-row { flex-wrap: wrap; }
  .download-action { margin-left: auto; }
}

/* ============================================================
   2027 EVENTS SECTION
   ============================================================ */
.events-2027-section {
  background: var(--navy);
  position: relative;
}

.events-2027-section .section-tag { color: var(--gold-light); }
.events-2027-section .section-title { color: var(--white); }
.events-2027-section .section-intro { color: rgba(255,255,255,0.72); }

.events-2027-section .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.event-detail-card--2027 {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,147,58,0.4);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.event-detail-card--2027 h3 { color: var(--white); }
.event-detail-card--2027 p { color: rgba(255,255,255,0.78); }

.event-detail-date--2027 {
  background: var(--gold);
}

.event-detail-card--2027 .event-detail-type { color: var(--gold-light); }

.event-detail-card--2027 .event-programme-snapshot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.event-detail-card--2027 .event-programme-snapshot h4 { color: rgba(255,255,255,0.5); }
.event-detail-card--2027 .prog-title { color: rgba(255,255,255,0.8); }
.event-detail-card--2027 .event-detail-location { color: rgba(255,255,255,0.6); }

/* Journey node colours for new events */
.journey-node--umhlathuze .journey-number { color: rgba(14,59,39,0.22); }
.journey-node--capewestcoast .journey-number { color: rgba(201,147,58,0.28); }

@media (max-width: 768px) {
  .event-detail-card--2027 { padding: 1.75rem; }
}
