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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e44;
  --navy-light: #243b55;
  --gold: #c8973a;
  --gold-light: #e0b86a;
  --ivory: #f8f4ee;
  --ivory-dark: #ede8df;
  --text: #1a1a2e;
  --text-muted: #5a6070;
  --white: #ffffff;
  --border: rgba(200, 151, 58, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.15);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,151,58,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(36,59,85,0.8) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,151,58,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,151,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.25);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}
.hero-title strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CIRCLE PHOTO ── */
.hero-photo-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-photo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(200,151,58,0.12), 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}
.hero-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border: 2px solid rgba(200,151,58,0.3);
  border-radius: 50%;
  z-index: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.3); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-links { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-link {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.hero-link:hover { color: var(--gold-light); }
.hero-link svg { width: 14px; height: 14px; }

/* ── SECTION BASE ── */
section { padding: 90px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--text); line-height: 1.15; margin-bottom: 0.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 0.95rem; color: var(--text-muted); max-width: 580px; margin-bottom: 3.5rem; }

/* ── RESEARCH FOCUS CARDS ── */
.focus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px; background: var(--border); border: 1px solid var(--border);
}
.focus-card { background: var(--ivory); padding: 2.2rem; transition: background var(--transition); position: relative; }
.focus-card:hover { background: var(--white); }
.focus-num { font-family: 'Cormorant Garant', serif; font-size: 3rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 1rem; }
.focus-card h3 { font-family: 'Cormorant Garant', serif; font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; line-height: 1.3; }
.focus-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.focus-card .focus-icon { position: absolute; top: 2rem; right: 2rem; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }

/* ── PAPERS SECTION ── */
.papers-section { background: var(--navy-mid); }
.papers-section .section-title { color: var(--white); }
.papers-section .section-sub { color: rgba(255,255,255,0.65); }

.paper-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(200,151,58,0.2); }
.paper-item {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(200,151,58,0.1);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: background var(--transition);
}
.paper-item:last-child { border-bottom: none; }
.paper-item:hover { background: rgba(200,151,58,0.06); }

.paper-year {
  font-family: 'Cormorant Garant', serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em; padding-top: 3px; white-space: nowrap;
}

/* FIXED: readable text on dark background */
.paper-content h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem; font-weight: 600;
  color: #ffffff;
  line-height: 1.3; margin-bottom: 0.5rem;
}
.paper-content h3 a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,151,58,0.4);
  transition: border-color var(--transition), color var(--transition);
}
.paper-content h3 a:hover { color: var(--gold-light); border-color: var(--gold); }

.paper-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.paper-content p em { color: rgba(255,255,255,0.55); font-style: italic; }

.paper-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 0.6rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(200,151,58,0.3);
  padding: 3px 10px; border-radius: 2px;
  transition: all var(--transition);
}
.paper-link:hover { background: var(--gold); color: var(--navy); }

.paper-tag {
  display: inline-block; padding: 3px 10px;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(200,151,58,0.3); color: var(--gold);
  border-radius: 2px; white-space: nowrap; margin-top: 3px;
}

/* data badge */
.data-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem; padding: 2px 8px; border-radius: 2px;
  margin: 2px 2px 0 0; cursor: default;
  transition: background var(--transition);
}
.data-badge:hover { background: rgba(200,151,58,0.15); color: var(--gold-light); }
.data-badges { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 0.5rem; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::before { content: ''; position: absolute; left: -2rem; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); border: 2px solid var(--ivory); transform: translateX(-4px); }
.timeline-period { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.timeline-item h3 { font-family: 'Cormorant Garant', serif; font-size: 1.35rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.timeline-item h4 { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); margin-bottom: 1rem; }
.timeline-item ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.timeline-item ul li { font-size: 0.875rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; line-height: 1.6; }
.timeline-item ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 4px; }

/* ── EDUCATION ── */
.edu-section { background: var(--navy-mid); }
.edu-section .section-title { color: var(--white); }
.edu-section .section-sub { color: rgba(255,255,255,0.65); }
.edu-section .section-label { color: var(--gold); }
.edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5px; background: rgba(200,151,58,0.1); }
.edu-card { background: rgba(255,255,255,0.05); padding: 2.5rem; transition: background var(--transition); }
.edu-card:hover { background: rgba(255,255,255,0.08); }
.edu-degree { font-family: 'Cormorant Garant', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; line-height: 1.3; }
.edu-school { font-size: 0.85rem; color: var(--gold); margin-bottom: 0.3rem; font-weight: 500; }
.edu-period { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-bottom: 1rem; }
.edu-gpa { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,151,58,0.12); border: 1px solid rgba(200,151,58,0.2); color: var(--gold-light); font-size: 0.75rem; font-weight: 500; padding: 4px 10px; border-radius: 2px; margin-bottom: 1rem; }
.edu-thesis { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-style: italic; line-height: 1.6; }

/* ── SKILLS ── */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.skill-group { padding: 1.8rem; border: 1px solid var(--border); background: var(--white); transition: border-color var(--transition), transform var(--transition); }
.skill-group:hover { border-color: rgba(200,151,58,0.5); transform: translateY(-3px); }
.skill-group-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag { font-size: 0.78rem; padding: 4px 10px; background: var(--ivory-dark); color: var(--text); border-radius: 2px; }

/* ── AWARDS ── */
.awards-row { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.award-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.4rem 2rem; background: var(--ivory); transition: background var(--transition); }
.award-item:hover { background: var(--white); }
.award-year { font-family: 'Cormorant Garant', serif; font-size: 0.9rem; font-weight: 500; color: var(--gold); min-width: 90px; }
.award-name { font-size: 0.9rem; color: var(--text); font-weight: 400; }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--navy); padding: 70px 2rem; text-align: center; }
.contact-strip h2 { font-family: 'Cormorant Garant', serif; font-size: 2.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.contact-strip p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.contact-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(200,151,58,0.25);
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all var(--transition); border-radius: 2px;
}
.contact-link:hover { border-color: var(--gold); color: var(--gold); }
.contact-link.primary { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 500; }
.contact-link.primary:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer { background: #080f19; padding: 1.5rem 2rem; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 140px 2rem 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(200,151,58,0.05), transparent); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-hero-inner .section-label { color: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garant', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 560px; }

/* ── TEACHING ── */
.teaching-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.teaching-card { border: 1px solid var(--border); background: var(--white); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.teaching-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.teaching-card-head { background: var(--navy); padding: 1.4rem 1.8rem; }
.teaching-card-head h3 { font-family: 'Cormorant Garant', serif; font-size: 1.15rem; font-weight: 600; color: var(--white); }
.teaching-card-head span { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }
.teaching-card-body { padding: 1.4rem 1.8rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── TALKS ── */
.talk-item { padding: 2.2rem 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 100px 1fr; gap: 2rem; align-items: start; }
.talk-year-col { font-family: 'Cormorant Garant', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); opacity: 0.6; }
.talk-content h3 { font-family: 'Cormorant Garant', serif; font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.talk-venue { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.talk-type { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: 3px 8px; border-radius: 2px; }

/* ── ATHLETICS ── */
.athletics-intro { background: var(--navy); }
.sport-section { padding: 80px 2rem; }
.sport-section:nth-child(even) { background: var(--ivory-dark); }
.sport-section:nth-child(odd) { background: var(--ivory); }
.sport-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sport-inner.reverse { direction: rtl; }
.sport-inner.reverse > * { direction: ltr; }
.sport-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
}
.sport-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sport-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  min-height: 360px;
}
.sport-photo-placeholder svg { width: 48px; height: 48px; opacity: 0.3; }
.sport-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.sport-text {}
.sport-num { font-family: 'Cormorant Garant', serif; font-size: 4rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 0.5rem; }
.sport-text h2 { font-family: 'Cormorant Garant', serif; font-size: 2.5rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; line-height: 1.1; }
.sport-text h2 em { font-style: italic; color: var(--gold); }
.sport-subtitle { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.sport-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.sport-stats { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.sport-stat { }
.sport-stat-num { font-family: 'Cormorant Garant', serif; font-size: 2rem; font-weight: 600; color: var(--text); line-height: 1; }
.sport-stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo-wrap { order: -1; }
  .hero-photo-circle { width: 220px; height: 220px; }
  .sport-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sport-inner.reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid var(--border); }
  section { padding: 60px 1.25rem; }
  .page-hero { padding: 120px 1.25rem 50px; }
  .paper-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .talk-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ══════════════════════════════════════════════
   ATHLETICS — SPORT BLOCKS
══════════════════════════════════════════════ */
.sport-block { padding: 90px 2rem; background: var(--ivory); }
.sport-block--dark { background: var(--navy); }

.sport-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.sport-block-inner--reverse { direction: rtl; }
.sport-block-inner--reverse > * { direction: ltr; }

/* ── Hero photo frame ── */
.sport-hero-photo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.sport-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy-mid);
}

/* Editorial corner accent */
.sport-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
}
.sport-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 2;
}

.sport-frame--accent::before,
.sport-frame--accent::after { border-color: rgba(200,151,58,0.5); }

.sport-frame--tall { aspect-ratio: 2/3; }

.sport-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.sport-frame:hover img { transform: scale(1.03); }

/* Placeholder when no image */
.sport-frame.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  min-height: 320px;
}
.sport-frame.no-img::before,
.sport-frame.no-img::after { opacity: 0.3; }
.sport-frame.no-img img { display: none; }
.sport-frame.no-img .sport-frame-label { opacity: 0.4; }

/* Sport label overlay */
.sport-frame-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 3;
}

/* Large background number */
.sport-frame-num {
  position: absolute;
  top: -0.5rem; right: 0.75rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(200,151,58,0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Gallery button */
.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
}
.gallery-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,58,0.25);
}
.sport-block--dark .gallery-btn { border-color: rgba(200,151,58,0.6); }

/* ── Sport text ── */
.sport-index {
  font-family: 'Cormorant Garant', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(200,151,58,0.12);
  line-height: 1;
  margin-bottom: 0.25rem;
  user-select: none;
}
.sport-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.sport-title em { font-style: italic; color: var(--gold); }
.sport-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.sport-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.sport-desc strong { color: var(--text); font-weight: 500; }

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 10, 18, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
}
.lb-overlay.lb-open { display: flex; }

.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  width: 44px; height: 44px;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.lb-close:hover { background: rgba(200,151,58,0.2); color: var(--gold); border-color: var(--gold); }

/* Sport label in lightbox */
.lb-sport-label {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,151,58,0.25);
  padding: 5px 14px;
  border-radius: 2px;
}

/* Main image stage */
.lb-stage {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  width: 100%;
}

.lb-img-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-height: 60vh;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(200,151,58,0.15);
  transition: opacity 0.25s ease;
}
.lb-img.lb-loading { opacity: 0.3; }

.lb-counter {
  position: absolute;
  bottom: -1.75rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Prev / Next arrows */
.lb-arrow {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  width: 48px; height: 48px;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.lb-arrow:hover { background: rgba(200,151,58,0.15); border-color: var(--gold); color: var(--gold); }

/* Thumbnails strip */
.lb-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  max-height: 100px;
  overflow-y: auto;
  padding: 4px;
}

.lb-thumb {
  width: 68px; height: 68px;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--navy-mid);
  flex-shrink: 0;
  transition: border-color var(--transition), transform var(--transition);
}
.lb-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lb-thumb:hover { border-color: rgba(200,151,58,0.5); transform: translateY(-2px); }
.lb-thumb--active { border-color: var(--gold) !important; }

.lb-empty {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sport-block-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sport-block-inner--reverse { direction: ltr; }
  .sport-frame { aspect-ratio: 4/3; }
  .lb-stage { gap: 0.5rem; }
  .lb-arrow { width: 36px; height: 36px; }
}
@media (max-width: 640px) {
  .sport-block { padding: 60px 1.25rem; }
  .lb-thumbs { max-height: 80px; }
  .lb-thumb { width: 52px; height: 52px; }
}
