*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky-dk:  #0f3a5c;
  --sky-mid: #1a6496;
  --sky:     #2a82c8;
  --sky-lt:  #cde7f7;
  --accent:  #2a82c8;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
}

body { font-family: var(--font-sans); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #081e33;
}

/* ── NEW BACKGROUND: deep mesh + floating shapes ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(42,130,200,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(240,165,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0d2d47 0%, #081e33 100%);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* subtle dot grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* floating geometric shapes */
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0;
  animation: shapeFloat 14s ease-in-out infinite;
}

.s1 {
  width: 320px; height: 320px;
  top: -60px; right: 10%;
  border: 1.5px solid rgba(42,130,200,0.22);
  animation-delay: 0s;
}
.s2 {
  width: 180px; height: 180px;
  top: 30%; right: 22%;
  border: 1px solid rgba(240,165,0,0.18);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: -4s;
}
.s3 {
  width: 500px; height: 500px;
  bottom: -100px; right: -80px;
  border: 1px solid rgba(42,130,200,0.10);
  animation-delay: -7s;
}
.s4 {
  width: 90px; height: 90px;
  top: 20%; left: 42%;
  background: rgba(240,165,0,0.06);
  border: 1px solid rgba(240,165,0,0.20);
  border-radius: 12px;
  transform: rotate(30deg);
  animation-delay: -2s;
  animation-name: shapeSpin;
}
.s5 {
  width: 60px; height: 60px;
  bottom: 28%; left: 38%;
  background: rgba(42,130,200,0.07);
  border: 1px solid rgba(42,130,200,0.22);
  border-radius: 8px;
  transform: rotate(15deg);
  animation-delay: -9s;
  animation-name: shapeSpin;
}

@keyframes shapeFloat {
  0%,100% { opacity: 0.6; transform: translateY(0px); }
  50%      { opacity: 1;   transform: translateY(-18px); }
}
@keyframes shapeSpin {
  0%   { opacity: 0.5; transform: rotate(30deg) translateY(0px); }
  50%  { opacity: 0.9; transform: rotate(50deg) translateY(-12px); }
  100% { opacity: 0.5; transform: rotate(30deg) translateY(0px); }
}

/* gradient overlay — heavier on left for text legibility */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(8,30,51,0.96) 0%, rgba(8,30,51,0.75) 48%, rgba(8,30,51,0.20) 100%),
    linear-gradient(to top,   rgba(8,30,51,0.98) 0%, transparent 38%);
}

/* ── CONTENT GRID (tighter padding) ── */
.hero-body {
  position: relative; z-index: 2;
  width: 100%; max-width: 1220px;
  margin: 0 auto;
  padding: 10px 48px 28px;      /* was 100px top, 40px bottom */
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;                     /* was 56px */
  align-items: start;
  flex: 1;
}

.hero-left { display: flex; flex-direction: column; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px; /* was 20px */
}
.hero-tag::before { content: ''; width: 32px; height: 1.5px; background: var(--accent); display: block; }

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.8vw, 4rem);  /* slightly tighter */
  font-weight: 700; color: #fff; line-height: 1.06; margin-bottom: 16px; /* was 22px */
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--sky-lt); display: block; }

.hero-lead {
  font-size: 0.96rem; color: rgba(255,255,255,0.66);
  line-height: 1.75; max-width: 500px; margin-bottom: 24px; /* was 36px */
  font-weight: 300;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; /* was 36px */ }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px;
  font-size: 0.855rem; font-weight: 600; text-decoration: none;
  transition: all 0.22s ease; letter-spacing: 0.03em;
  border: 1.5px solid transparent; cursor: pointer; font-family: var(--font-sans);
}
.btn-solid  { background: var(--accent); color: #0f3a5c; }
.btn-solid:hover { background: #e09700; transform: translateY(-2px); }
.btn-glass  { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.30); }
.btn-glass:hover { background: rgba(255,255,255,0.18); }

.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
}
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Right column */
.hero-right { display: flex; flex-direction: column; gap: 12px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 16px 14px; color: #fff; transition: background 0.2s;
}
.stat-card:hover { background: rgba(255,255,255,0.12); }
.stat-card strong {
  display: block; font-family: var(--font-serif); font-size: 1.9rem;
  font-weight: 700; line-height: 1; margin-bottom: 3px; color: var(--sky-lt);
}
.stat-card span { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.50; }

.event-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 16px 18px; color: #fff;
}
.event-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.event-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.event-badge { font-size: 0.68rem; background: var(--accent); color: var(--sky-dk); font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.event-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; line-height: 1.35; margin-bottom: 7px; }
.event-meta { font-size: 0.76rem; opacity: 0.50; display: flex; gap: 12px; }

/* ══════════════════════════════
   AUTO-SLIDING EVENT STRIP
══════════════════════════════ */
.event-strip {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 0 0 48px;
  margin-top: auto;
}

.strip-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-right: 48px; margin-bottom: 12px;
}
.strip-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.40);
}
.strip-title::before { content: ''; width: 22px; height: 1px; background: rgba(255,255,255,0.25); display: block; }

.strip-nav { display: flex; gap: 8px; }
.strip-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background 0.2s; font-family: var(--font-sans);
}
.strip-btn:hover { background: rgba(255,255,255,0.20); }

.strip-track-wrap {
  overflow: hidden;
  cursor: grab;
}
.strip-track-wrap:active { cursor: grabbing; }

/* The track uses a CSS animation for auto-scroll; JS overrides transform on user interaction */
.strip-track {
  display: flex;
  gap: 14px;
  padding-bottom: 28px;
  animation: slide 40s linear infinite;
  width: max-content;
}
.strip-track:hover { animation-play-state: paused; }

.ecard {
  flex: 0 0 230px; border-radius: 14px; overflow: hidden;
  position: relative; height: 148px; cursor: pointer;
  transition: transform 0.25s ease;
}
.ecard:hover { transform: translateY(-5px); }

.ecard-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.ecard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,20,40,0.92) 0%, rgba(8,20,40,0.06) 55%);
}
.ecard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s ease; z-index: 2;
}
.ecard:hover::before { transform: scaleX(1); }

.ecard-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 13px; z-index: 1; }
.ecard-cat { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.ecard-name { font-family: var(--font-serif); font-size: 0.85rem; color: #fff; line-height: 1.3; }
.ecard-date { font-size: 0.64rem; color: rgba(255,255,255,0.44); margin-top: 3px; }

/* fade edges */
.strip-fade-left {
  position: absolute; top: 0; left: 48px;
  width: 48px; height: calc(100% - 28px);
  background: linear-gradient(to right, #081e33, transparent);
  pointer-events: none; z-index: 3;
}
.strip-fade {
  position: absolute; top: 0; right: 0;
  width: 80px; height: calc(100% - 28px);
  background: linear-gradient(to left, #081e33, transparent);
  pointer-events: none; z-index: 3;
}

/* ══════════════════════════════════════
   ENERGY RADIO PLAYER
══════════════════════════════════════ */
.energy-radio-section {
  position: relative; z-index: 2;
  width: 100%; padding: 36px 48px;
  background: linear-gradient(135deg, rgba(42,130,200,0.15) 0%, rgba(240,165,0,0.08) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.energy-radio-container {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}

.radio-left {
  display: flex; align-items: center; gap: 18px; min-width: 240px;
}

.radio-icon {
  font-size: 2.8rem;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(42,130,200,0.25), rgba(240,165,0,0.15));
  border-radius: 14px;
  border: 1.5px solid rgba(42,130,200,0.4);
  box-shadow: 0 8px 24px rgba(42,130,200,0.15), inset 0 1px 2px rgba(255,255,255,0.1);
}

.radio-info {
  display: flex; flex-direction: column;
}

.radio-label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 4px; font-weight: 600;
}

.radio-title {
  font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 3px;
  background: linear-gradient(135deg, #fff, #cde7f7); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.radio-subtitle {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}

.radio-center {
  flex: 1.5; min-width: 280px; max-width: 500px;
  text-align: center;
  padding: 24px 28px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(42,130,200,0.2);
}

.now-playing-label {
  display: block; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; font-weight: 600;
}

.now-playing-title {
  font-size: 1.35rem; font-weight: 800; letter-spacing: 0.3px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(42,130,200,0.4);
  margin: 0; padding: 0;
  line-height: 1.4;
  background: linear-gradient(135deg, #fff, #87ceeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.radio-right {
  display: flex; align-items: center; gap: 14px;
}

.radio-btn {
  width: 50px; height: 50px;
  border: none; border-radius: 12px;
  background: rgba(42,130,200,0.2);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(42,130,200,0.3);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.radio-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.radio-btn:hover {
  background: rgba(42,130,200,0.35);
  border-color: rgba(42,130,200,0.6);
  color: #fff;
  box-shadow: 0 8px 24px rgba(42,130,200,0.25), 0 0 0 8px rgba(42,130,200,0.1);
  transform: translateY(-2px);
}

.radio-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.radio-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(42,130,200,0.15);
}

.play-btn:hover {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(42,130,200,0.25), 0 0 0 8px rgba(42,130,200,0.1); }
  50% { box-shadow: 0 8px 24px rgba(42,130,200,0.25), 0 0 0 16px rgba(42,130,200,0.05); }
}

.radio-btn.hidden {
  display: none;
}

.radio-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.play-btn:disabled::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: rgba(255,255,255,0.8);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.tune-btn {
  text-decoration: none;
  font-size: 1rem;
}

.tune-btn:hover {
  background: linear-gradient(135deg, rgba(240,165,0,0.3), rgba(42,130,200,0.3));
}

/* Volume Control */
.volume-control {
  display: flex; align-items: center;
  padding: 8px 12px;
  background: rgba(42,130,200,0.1);
  border-radius: 20px;
  border: 1.5px solid rgba(42,130,200,0.2);
  gap: 10px;
}

.mute-btn {
  width: 32px; height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(42,130,200,0.15);
  color: rgba(42,130,200,0.9);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(42,130,200,0.25);
  flex-shrink: 0;
}

.mute-btn:hover {
  background: rgba(42,130,200,0.25);
  color: rgba(42,130,200,1);
  border-color: rgba(42,130,200,0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(42,130,200,0.3);
}

.mute-btn:active {
  transform: scale(0.95);
}

.mute-btn.muted {
  background: rgba(220,53,69,0.15);
  color: rgba(220,53,69,0.9);
  border-color: rgba(220,53,69,0.25);
}

.mute-btn.muted:hover {
  background: rgba(220,53,69,0.25);
  color: rgba(220,53,69,1);
  border-color: rgba(220,53,69,0.4);
  box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

.volume-slider {
  width: 100px; height: 4px;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, rgba(42,130,200,0.3) 0%, rgba(42,130,200,0.3) 100%);
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a82c8, #4a9fd8);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42,130,200,0.4);
  transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(42,130,200,0.6);
}

.volume-slider::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a82c8, #4a9fd8);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(42,130,200,0.4);
  transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(42,130,200,0.6);
}

.volume-slider::-moz-range-track {
  background: transparent;
  border: none;
}

/* Bottom bar */
.hero-bottom {
  position: relative; z-index: 2;
  width: 100%; max-width: 1220px;
  margin: 0 auto; padding: 0 48px 18px;
  display: flex; align-items: center; justify-content: flex-end;
}

.scroll-hint {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.30); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; animation: bob 2.4s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.45; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; padding: 72px 24px 24px; gap: 28px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .stat-grid { flex: 1 1 auto; min-width: 200px; }
  .event-card { flex: 1 1 auto; min-width: 200px; }
  .event-strip { padding-left: 24px; }
  .strip-header { padding-right: 24px; }
  .strip-fade-left { left: 24px; }
  .hero-bottom { padding: 0 24px 14px; }
  .energy-radio-section { padding: 24px; }
  .energy-radio-container { gap: 24px; }
  .radio-left { flex: 1 1 100%; }
  .radio-center { min-width: 150px; }
  .radio-btn { width: 44px; height: 44px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-right { flex-direction: column; }
  .ecard { flex: 0 0 190px; height: 130px; }
  .energy-radio-section { padding: 18px 16px; }
  .energy-radio-container { flex-direction: column; gap: 16px; align-items: stretch; }
  .radio-left { flex-direction: column; align-items: center; text-align: center; }
  .radio-center { width: 100%; max-width: 100%; }
  .radio-right { width: 100%; justify-content: center; }
  .radio-icon { width: 50px; height: 50px; font-size: 2.2rem; }
  .radio-title { font-size: 1.2rem; }
  .radio-subtitle { font-size: 0.7rem; }
  .now-playing-title { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.2px; }
}
  /* ── SECTION COMMONS ── */
  section { padding: 96px 0; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 16px;
  }
  .eyebrow::before {
    content: '';
    width: 22px; height: 1.5px;
    background: var(--sky);
  }
  .sec-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--ink);
  }
  .sec-title em { font-style: italic; font-weight: 400; color: var(--sky); }
  .sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.78; font-weight: 300; max-width: 540px; margin-top: 14px; }
  .row-apart { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 52px; flex-wrap: wrap; }
  .view-all { font-size: 0.82rem; font-weight: 600; color: var(--sky); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap 0.2s, color 0.2s; white-space: nowrap; }
  .view-all:hover { gap: 10px; color: var(--sky-mid); }

  /* ── PILLARS / 3-IMAGE CARDS ── */
  .pillars-bg { background: var(--white); }
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillar {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
    cursor: default;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-end;
  }
  .pillar:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(74,144,196,0.22); }
  .pillar-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
  }
  .pillar:hover .pillar-bg { transform: scale(1.05); }
  .pillar-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,40,64,0.88) 0%, rgba(18,40,64,0.08) 55%, transparent 100%);
  }
  .pillar-body {
    position: relative;
    z-index: 2;
    padding: 28px 26px;
    color: #fff;
  }
  .pillar-num { font-size: 0.7rem; color: #a8cce8; letter-spacing: 0.12em; margin-bottom: 8px; font-weight: 600; }
  .pillar-body h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 9px; line-height: 1.25; }
  .pillar-body p { font-size: 0.845rem; opacity: 0.75; line-height: 1.65; }

  /* ── WHY EXISTS ── */
  .why-bg { background: var(--sky-pale); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .why-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,79,120,0.18);
  }
  .why-photo-wrap img { width: 100%; height: auto; object-fit: cover; object-position: center; display: block; }
  .why-badge {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .why-badge-icon {
    width: 42px; height: 42px;
    background: var(--sky-lt);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .why-badge strong { display: block; font-size: 0.875rem; color: var(--ink); font-weight: 600; }
  .why-badge span { font-size: 0.78rem; color: var(--muted); }
  .why-text p { color: var(--muted); line-height: 1.82; font-size: 0.96rem; margin-top: 16px; }
  .why-text p + p { margin-top: 12px; }
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(74,144,196,0.08);
  }
  .stat-cell {
    padding: 24px 18px;
    text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-cell span { font-size: 0.73rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

  /* ── PROGRAMS ── */
  .programs-bg { background: var(--cream); }
  .programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  a.program-card {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .program-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--sky-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .program-card:hover { box-shadow: 0 12px 36px rgba(74,144,196,0.16); transform: translateY(-5px); border-color: transparent; }
  .program-card:hover::after { transform: scaleX(1); }
  .prog-icon {
    width: 50px; height: 50px;
    background: var(--sky-lt);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
  }
  .program-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 9px; color: var(--ink); }
  .program-card p { font-size: 0.845rem; color: var(--muted); line-height: 1.68; }

  /* ── EVENTS ── */
  .events-bg { background: #0f2e4a; }
  .events-bg .sec-title { color: #fff; }
  .events-bg .view-all { color: #7ab8d9; }
  .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .event-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 28px 24px;
    color: #fff;
    transition: all 0.25s;
    cursor: default;
  }
  .event-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
  .event-tag {
    display: inline-block;
    background: var(--sky);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  .event-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
  .event-card p { font-size: 0.845rem; color: rgba(255,255,255,0.5); line-height: 1.68; }

  /* ── IMPACT / STORY ── */
  .impact-bg { position: relative; overflow: hidden; background: var(--sky-pale); }
  .impact-scene {
    position: absolute; inset: 0;
    opacity: 0.12;
  }
  .impact-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .impact-content { position: relative; z-index: 2; max-width: 600px; }
  .impact-content h2 { color: var(--ink); }
  .impact-content p { color: var(--muted); font-size: 1rem; line-height: 1.82; margin: 16px 0 32px; max-width: 480px; }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(130deg, var(--sky-dk) 0%, var(--sky-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 340px; height: 340px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .cta-band::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
  .cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }
  .cta-inner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
  .cta-inner p { color: rgba(255,255,255,0.68); font-size: 0.96rem; line-height: 1.78; max-width: 480px; }
  .cta-btns { display: flex; flex-direction: column; gap: 12px; min-width: 210px; }

  /* ── MOBILE RESPONSIVE ── */
  @media (max-width: 1024px) {
    .wrap { padding: 0 28px; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pillar { min-height: 320px; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    section { padding: 64px 0; }
    .wrap { padding: 0 20px; }
    
    /* Hero section */
    .hero-body {
      grid-template-columns: 1fr;
      padding: 48px 20px;
      gap: 20px;
    }
    
    .hero h1 { font-size: 2rem; }
    .hero-lead { font-size: 0.9rem; }
    .feature-pills { gap: 6px; }
    .pill { font-size: 0.7rem; padding: 5px 12px; }
    
    .hero-right {
      flex-direction: row;
      flex-wrap: wrap;
    }
    
    .stat-grid { flex: 1 1 100%; }
    .event-card { flex: 1 1 100%; }
    
    /* Pillars section */
    .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
    .pillar {
      min-height: 280px;
      border-radius: 16px;
    }
    
    .pillar-bg {
      background-size: cover;
      background-position: center;
    }
    
    .pillar-body { padding: 20px 18px; }
    .pillar-body h3 { font-size: 1.1rem; }
    .pillar-body p { font-size: 0.8rem; }
    
    /* Why section */
    .why-grid { gap: 40px; grid-template-columns: 1fr; }
    .why-photo-wrap { border-radius: 16px; aspect-ratio: auto; height: auto; max-width: 100%; order: -1; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-cell {
      padding: 16px 12px;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
    .stat-cell:last-child { border-bottom: none; }
    
    /* Programs section */
    .programs-grid { grid-template-columns: 1fr; gap: 16px; }
    .program-card { padding: 24px 20px; }
    .prog-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    
    /* Events section */
    .events-grid { grid-template-columns: 1fr; gap: 16px; }
    
    /* CTA section */
    .cta-inner { gap: 40px; }
    .cta-btns { flex-direction: row; gap: 10px; min-width: auto; }
    
    .btn {
      padding: 10px 18px;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    section { padding: 48px 0; }
    .wrap { padding: 0 16px; }
    
    .eyebrow { font-size: 0.65rem; margin-bottom: 12px; }
    .sec-title { font-size: 1.6rem; }
    .sec-sub { font-size: 0.9rem; }
    
    /* Hero specific */
    .hero-body { padding: 40px 16px 20px; }
    .hero h1 { font-size: 1.7rem; margin-bottom: 12px; }
    .hero-tag { font-size: 0.65rem; margin-bottom: 10px; }
    .hero-lead { font-size: 0.85rem; margin-bottom: 16px; }
    
    .hero-btns {
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }
    
    .btn {
      width: 100%;
      padding: 10px 16px;
      font-size: 0.8rem;
      text-align: center;
    }
    
    .feature-pills { flex-direction: column; gap: 6px; }
    .pill { width: 100%; }
    
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-card { padding: 12px 10px; border-radius: 10px; }
    .stat-card strong { font-size: 1.4rem; }
    .stat-card span { font-size: 0.6rem; }
    
    /* Event card in hero */
    .event-card { padding: 12px 14px; }
    .event-title { font-size: 0.9rem; }
    .event-meta { font-size: 0.7rem; gap: 8px; }
    
    /* Event strip */
    .event-strip { padding-left: 16px; }
    .strip-header { padding-right: 16px; }
    .strip-fade-left { left: 16px; width: 32px; }
    .ecard { flex: 0 0 160px; height: 110px; }
    
    /* Pillar cards */
    .pillar { min-height: 240px; border-radius: 12px; }
    .pillar-body { padding: 16px 14px; }
    .pillar-num { font-size: 0.65rem; margin-bottom: 6px; }
    .pillar-body h3 { font-size: 0.95rem; margin-bottom: 6px; }
    .pillar-body p { font-size: 0.75rem; opacity: 0.7; }
    
    /* Why section */
    .why-grid { gap: 24px; grid-template-columns: 1fr; }
    .why-photo-wrap { border-radius: 12px; aspect-ratio: auto; height: auto; max-width: 100%; order: -1; }
    .why-badge { bottom: 12px; left: 12px; right: 12px; padding: 12px 14px; border-radius: 10px; }
    .why-badge-icon { width: 36px; height: 36px; font-size: 1rem; }
    .why-badge strong { font-size: 0.8rem; }
    .why-badge span { font-size: 0.7rem; }
    
    .stats-row { gap: 0; margin-top: 24px; }
    .stat-cell { padding: 16px 10px; }
    
    /* Programs */
    .prog-icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 12px; }
    .program-card h3 { font-size: 0.95rem; }
    .program-card p { font-size: 0.78rem; }
    
    /* Events */
    .event-tag { font-size: 0.65rem; padding: 4px 10px; }
    .event-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
    .event-card p { font-size: 0.78rem; }
    
    /* CTA section */
    .cta-inner { grid-template-columns: 1fr; }
    .cta-inner h2 { font-size: 1.5rem; margin-bottom: 10px; }
    .cta-inner p { font-size: 0.85rem; }
    .cta-btns { flex-direction: column; gap: 8px; min-width: auto; }
    
    /* Impact section */
    .impact-content { max-width: 100%; }
    .impact-content h2 { font-size: 1.6rem; }
    .impact-content p { font-size: 0.9rem; }
  }
 