/* ═══════════════════════════════════════════════════════
   BCP SPORTS MEDICINE CLUB
   Style: Lora (headings) · Raleway (body)
   Colors: #001d47 navy · #002f6c blue · #005596 mid-blue
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:       #002f6c;
  --navy-dark:  #001d47;
  --blue:       #005596;
  --blue-light: #0071c2;
  --blue-pale:  #eef3fb;
  --gold:       #b8922a;
  --gold-light: #d4aa40;
  --white:      #ffffff;
  --off-white:  #f7fafd;
  --border:     #dde6f4;
  --text:       #1a2744;
  --text-soft:  #4a5d7e;
  --text-muted: #5f7292;
  --serif:  'Lora', Georgia, serif;
  --sans:   'Raleway', system-ui, sans-serif;
  --shadow-sm:  0 2px 12px rgba(0,47,108,0.08);
  --shadow-md:  0 8px 40px rgba(0,47,108,0.12);
  --shadow-lg:  0 20px 60px rgba(0,47,108,0.15);
  --radius: 14px;
  --radius-sm: 9px;
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════
   NAV
══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5.5vw, 72px);
  height: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,47,108,0.09); }

.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(0,47,108,0.14);
}
.nav-title {
  display: block; font-family: var(--serif); font-size: 14.5px;
  font-weight: 600; color: var(--navy); line-height: 1.2;
}
.nav-sub {
  display: block; font-size: 9.5px; color: var(--blue);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  color: var(--text-soft); letter-spacing: 0.02em;
  padding: 7px 13px; border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a.active { color: var(--navy); font-weight: 700; background: var(--blue-pale); }

/* ══════════════════════════
   HOME HERO — SPLIT PANEL
══════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  position: relative;
}

/* LEFT — dark navy panel */
.hero-left {
  background: var(--navy-dark);
  display: flex; align-items: center;
  padding: 68px 0 0; /* account for nav */
  position: relative; overflow: hidden;
}
/* dot texture */
.hero-left::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 11px 11px;
}
/* diagonal cut on right edge */
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -60px; bottom: 0; width: 120px;
  background: var(--navy-dark);
  clip-path: polygon(0 0, 50% 0, 0% 100%, 0 100%);
  z-index: 2;
}
.hero-left-inner {
  position: relative; z-index: 3;
  padding: 80px clamp(32px, 5vw, 80px) 100px;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); font-weight: 700;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px; background: var(--gold-light); flex-shrink: 0;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 700; line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 span {
  display: block; color: var(--gold-light);
  font-style: italic; font-weight: 400;
}

.hero-desc {
  font-size: 15.5px; color: rgba(255,255,255,0.65);
  line-height: 1.74; margin-bottom: 48px;
  font-weight: 300; max-width: 400px;
}

.btn-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* RIGHT — light panel with logo */
.hero-right {
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  padding-top: 68px;
  position: relative;
}

/* bottom fade on both panels */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 130px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none; z-index: 10;
}

.hero-emblem {
  width: clamp(200px, 22vw, 340px);
  height: clamp(200px, 22vw, 340px);
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 80px rgba(0,47,108,0.16), 0 4px 24px rgba(0,47,108,0.08);
  animation: float 8s var(--ease-in-out) infinite;
  position: relative; z-index: 2;
}
.hero-emblem img {
  width: 84%; height: 84%; object-fit: contain; border-radius: 50%;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════
   INNER-PAGE HERO
══════════════════════════ */
.page-hero {
  background: var(--navy-dark);
  padding: 168px clamp(30px, 7vw, 100px) 110px;
  position: relative; overflow: hidden;
}
/* dot texture */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 11px 11px;
}
/* curved white bottom */
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: -2%; right: -2%;
  height: 70px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 70px 70px 0 0;
}

.page-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); font-weight: 700;
  margin-bottom: 20px; position: relative; z-index: 2;
}
.page-hero-label::before {
  content: ''; width: 24px; height: 1.5px; background: var(--gold-light);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 700; line-height: 1.08;
  color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 18px; position: relative; z-index: 2;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.page-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.7; font-weight: 300;
  max-width: 520px; position: relative; z-index: 2;
}

/* ══════════════════════════
   BUTTONS
══════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out);
  cursor: pointer; border: none;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 18px rgba(184,146,42,0.32);
}
.btn-white-outline {
  border: 1.5px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.88); background: transparent;
}
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy-outline {
  border: 1.5px solid var(--navy); color: var(--navy); background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,146,42,0.42); }
  .btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }
  .btn-navy:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-navy-outline:hover { background: var(--blue-pale); transform: translateY(-2px); }
  .nav-links a:hover { color: var(--navy); background: var(--blue-pale); }
    .step:hover { background: var(--blue-pale); }
  }

/* ══════════════════════════
   STATS
══════════════════════════ */
.stats-wrap {
  padding: 0 clamp(24px, 6vw, 80px);
  margin-top: -50px; position: relative; z-index: 20;
  margin-bottom: 24px;
}
.stats-bar {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat {
  flex: 1; padding: 36px 20px; text-align: center; position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-family: var(--serif); font-size: 40px; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 7px;
}
.stat-label {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}

/* ══════════════════════════
   SECTIONS
══════════════════════════ */
.section { padding: clamp(64px, 8vw, 110px) clamp(24px, 7vw, 100px); }
.section-alt { background: var(--off-white); }

.section-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue); font-weight: 700;
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 22px; height: 2px; background: var(--blue); flex-shrink: 0;
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }
.section-label.light { color: rgba(255,255,255,0.55); }
.section-label.light::before { background: rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 48px);
  font-weight: 700; line-height: 1.14; letter-spacing: -0.01em;
  color: var(--navy); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 15.5px; color: var(--text-soft); line-height: 1.7;
  max-width: 530px; font-weight: 400;
}
.section-sub.light { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ══════════════════════════
   DIVIDER
══════════════════════════ */
.divider { height: 1px; background: var(--border); }

/* ══════════════════════════
   CARDS
══════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
  position: relative; overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  opacity: 0; transition: opacity 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,47,108,0.18); }
  .card:hover::after { opacity: 1; }
}

/* ── GRIDS ── */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-top: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; margin-top: 36px; }

/* ── ICON CARDS ── */
.icon-card { padding: 34px 28px; }
.card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}
@media (hover: hover) and (pointer: fine) { .card:hover .card-icon { background: rgba(0,47,108,0.1); } }
.card-icon i, .card-icon svg { width: 22px; height: 22px; stroke: var(--navy); stroke-width: 1.8; }
.card-title { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 9px; color: var(--navy); }
.card-desc { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; }
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px; font-size: 12.5px; color: var(--blue);
  text-decoration: none; font-weight: 700; letter-spacing: 0.02em;
  transition: gap 0.18s;
}
@media (hover: hover) and (pointer: fine) { .card-link:hover { color: var(--navy); } }

/* ── LEADER CARDS ── */
.leader-card { padding: 32px 26px; text-align: center; }
.leader-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--blue-pale);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.leader-avatar i, .leader-avatar svg { width: 26px; height: 26px; stroke: var(--navy); stroke-width: 1.7; }
.leader-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.leader-role {
  font-size: 10.5px; color: var(--navy); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 11px;
}
.leader-email { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }

/* ── SPEAKER CARDS ── */
.speaker-card { padding: 28px 30px; display: flex; gap: 20px; align-items: flex-start; }
.speaker-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-pale); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.speaker-avatar i, .speaker-avatar svg { width: 20px; height: 20px; stroke: var(--navy); stroke-width: 1.8; }
.speaker-name { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.speaker-role { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.speaker-org { font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; }
.speaker-talk {
  font-size: 13.5px; color: var(--text);
  padding: 10px 14px;
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-style: italic; margin-bottom: 14px;
}
.speaker-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.speaker-meta-item {
  font-size: 12px; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.speaker-meta-item i, .speaker-meta-item svg {
  width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2; flex-shrink: 0;
}

/* ── PAST SPEAKER CARDS ── */
.past-card { padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.past-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-pale); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.past-avatar i, .past-avatar svg { width: 16px; height: 16px; stroke: var(--navy); stroke-width: 1.8; }
.past-name { font-family: var(--serif); font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.past-role { font-size: 10.5px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.past-org { font-size: 12px; color: var(--text-muted); margin-bottom: 7px; }
.past-talk { font-size: 13.5px; color: var(--text-soft); font-style: italic; margin-bottom: 4px; }
.past-date { font-size: 11.5px; color: var(--text-muted); font-weight: 600; }

/* ── STEPS ── */
.steps-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.step {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 26px 32px; background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif); font-size: 40px; font-weight: 700;
  color: rgba(0,47,108,0.1); line-height: 1;
  min-width: 44px; flex-shrink: 0; margin-top: -4px;
}
.step-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.step-desc { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; }

/* ── TAGS ── */
.tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.tag {
  font-size: 13px; padding: 8px 20px;
  border: 1.5px solid var(--border); border-radius: 100px;
  color: var(--text-soft); background: var(--white); font-weight: 500;
  transition: all 0.18s; cursor: pointer;
  font-family: var(--sans); line-height: 1.4;
  appearance: none; -webkit-appearance: none;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px; margin-top: 44px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3;
  background: var(--blue-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 12.5px; color: var(--text-muted);
  font-weight: 500; text-align: center; padding: 16px;
  transition: transform 0.22s, box-shadow 0.22s;
}
@media (hover: hover) and (pointer: fine) { .gallery-item:hover { transform: scale(1.015); box-shadow: var(--shadow-md); } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(130deg, var(--navy-dark) 0%, #003375 100%);
  padding: clamp(64px, 8vw, 110px) clamp(24px, 7vw, 100px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px; background-position: 11px 11px;
}
.cta-section .section-title { color: var(--white); position: relative; z-index: 1; }
.cta-section .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-section .section-label { position: relative; z-index: 1; }
.cta-section > * { position: relative; z-index: 1; }

/* ── UPCOMING BADGE ── */
.badge-upcoming {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  padding: 4px 12px; background: var(--navy); color: var(--white);
  border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 56px clamp(24px, 7vw, 100px) 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.14); }
.footer-name { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer-school { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.70); line-height: 1.65; max-width: 280px; }
.footer-heading { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; font-weight: 700; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.80); transition: color 0.18s; font-weight: 500; }
.contact-line { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 10px; line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; }
.contact-line i, .contact-line svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.60); font-weight: 500;
}

/* ── LEADER INITIALS AVATAR ── */
.leader-initials {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--white); letter-spacing: -0.03em;
  box-shadow: 0 4px 18px rgba(0,47,108,0.22);
}

/* ── SPEAKER / PAST SPEAKER EVENT PHOTO ── */
.speaker-event-photo { width: 100%; height: 220px; object-fit: cover; object-position: top; display: block; border-radius: var(--radius) var(--radius) 0 0; }
.past-event-photo    { width: 100%; height: 130px; object-fit: cover; object-position: top; display: block; border-radius: var(--radius) var(--radius) 0 0; }
.speaker-card.has-photo { padding: 0; display: block; }
.speaker-card.has-photo .speaker-body { display: flex; gap: 20px; align-items: flex-start; padding: 22px 30px 28px; }
.past-card.has-photo { padding: 0; display: block; }
.past-card.has-photo .past-body { display: flex; gap: 16px; align-items: flex-start; padding: 16px 24px 20px; }

/* ── CONTACT LINE LINKS ── */
.contact-line a { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.18s; }
@media (hover: hover) and (pointer: fine) { .contact-line a:hover { color: var(--white); } }

/* ── SHADOWING PHOTO STRIP ── */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-strip img {
  width: 100%; height: 240px;
  object-fit: contain;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: block;
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr; } }

/* ── LUCIDE ICONS (general) ── */
i[data-lucide] { display: inline-flex; }

/* ── FADE-UP ── */
.fade-up {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.42s var(--ease-out), transform 0.42s var(--ease-out);
}
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { transition: opacity 0.2s ease; transform: none; }
  .fade-up.visible { opacity: 1; }
  .hero-emblem { animation: none; }
  .btn, .card { transition: none; }
}

/* ── EXPLORE SECTION (Featured + Grid) ── */
.explore-wrap { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.explore-featured {
  display: flex; align-items: flex-start; gap: 32px; padding: 36px 40px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, rgba(238,243,251,0.5) 100%);
  border: 1px solid rgba(0,47,108,0.10);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .explore-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
}
.explore-featured-icon {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,47,108,0.24);
}
.explore-featured-icon i, .explore-featured-icon svg { width: 28px; height: 28px; stroke: var(--white); stroke-width: 1.8; }
.explore-featured .card-title { font-size: 22px; margin-bottom: 8px; }
.explore-featured .card-desc { max-width: 560px; font-size: 14.5px; line-height: 1.7; }
.explore-featured .card-link { margin-top: 18px; font-size: 13px; }
.explore-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding-bottom: 0; }
  .hero-left-inner { padding: 80px clamp(24px, 5vw, 48px) 60px; max-width: 100%; }
  .hero-left::after { display: none; }
  .hero-right { padding: 40px 24px 80px; }
  .hero-emblem { width: 180px; height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .explore-featured { flex-direction: column; gap: 20px; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 7px;
  color: var(--navy); transition: background 0.18s;
}
.nav-hamburger:hover { background: var(--blue-pale); }
.nav-hamburger svg { display: block; }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px, 5.5vw, 72px) 20px;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 32px rgba(0,47,108,0.10);
}
.mobile-nav a {
  display: block; text-decoration: none;
  font-size: 15px; font-weight: 500; color: var(--text-soft);
  padding: 10px 14px; border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--navy); background: var(--blue-pale); font-weight: 700;
}
.mobile-nav.open { display: flex; }

@media (max-width: 640px) {
  .stats-bar { flex-direction: column; }
  .stat + .stat::before { top: 0; left: 10%; right: 10%; width: auto; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-featured { padding: 26px 24px; }
}
