:root {
  --ink: #17212b;
  --muted: #5d6874;
  --paper: #f4f1e9;
  --white: #ffffff;
  --lime: #d7ff5d;
  --orange: #ff805c;
  --blue: #76c7ff;
  --lavender: #c5b8ff;
  --deep: #0f2730;
  --line: rgba(23, 33, 43, 0.14);
  --radius: 22px;
  --shadow: 0 18px 50px rgba(15, 39, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 233, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(15,39,48,.05);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 1.2rem;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  font-size: .82rem;
  letter-spacing: -.02em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  color: #39434d;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #000; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 70px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .about-title h2, .support-hero h2, .closing-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
  line-height: .96;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4rem, 8.2vw, 7.5rem);
  max-width: 760px;
}
.hero-lead {
  font-size: 1.15rem;
  max-width: 650px;
  color: var(--muted);
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--deep); }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: rgba(23,33,43,.05); }
.btn-light {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.support-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .83rem;
  max-width: 570px;
}

.hero-art {
  position: relative;
  min-height: 570px;
  border-radius: 42px;
  background: var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.athlete-figure {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sun {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--lime);
  right: 50px;
  top: 55px;
}
.track {
  position: absolute;
  width: 680px;
  height: 240px;
  border: 5px solid rgba(255,255,255,.6);
  border-radius: 50%;
  left: -50px;
  bottom: 25px;
  transform: rotate(-8deg);
}
.track-2 { bottom: -30px; left: -90px; }
.figure-head {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #7d4f3d;
  top: 160px;
  left: 48%;
}
.figure-body {
  position: absolute;
  width: 165px;
  height: 220px;
  border-radius: 70px 70px 26px 26px;
  background: var(--deep);
  top: 225px;
  left: 41%;
  transform: rotate(7deg);
}
.figure-leg {
  position: absolute;
  width: 55px;
  height: 190px;
  background: #7d4f3d;
  border-radius: 30px;
  top: 410px;
}
.leg-a { left: 44%; transform: rotate(16deg); }
.leg-b { left: 57%; transform: rotate(-17deg); }
.floating-card {
  position: absolute;
  z-index: 5;
  padding: 16px 18px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.floating-card span, .floating-card strong { display: block; }
.floating-card span { font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.score-card { left: 22px; top: 28px; transform: rotate(-4deg); }
.pulse-card { right: 24px; bottom: 32px; transform: rotate(3deg); }
.pulse-dot {
  display: inline-block !important;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  margin-bottom: 5px;
}

.section { padding: 110px 0; }
.section-heading { margin-bottom: 46px; max-width: 760px; }
.section-heading h2, .about-title h2, .support-hero h2, .closing-cta h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.section-intro {
  margin: 22px 0 0;
  color: var(--muted);
  max-width: 650px;
  font-size: 1.03rem;
}
.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.text-link, .text-button {
  font-weight: 800;
  color: var(--ink);
}
.text-link { text-decoration: none; white-space: nowrap; }
.text-button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
.text-link:hover, .text-button:hover { text-decoration: underline; }

.mission-section { padding-top: 40px; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.mission-card {
  padding: 32px 30px 18px 0;
}
.mission-card + .mission-card { border-left: 1px solid var(--line); padding-left: 30px; }
.number {
  font-family: "Space Grotesk", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted);
}
.mission-card h3 { font-size: 1.4rem; margin: 28px 0 10px; }
.mission-card p { color: var(--muted); margin: 0; }

.quote-band {
  padding: 70px 0;
  background: var(--lime);
}
.featured-quote { margin: 0; position: relative; }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: .6;
  position: absolute;
  top: 5px;
  left: 0;
  opacity: .2;
}
.featured-quote blockquote {
  margin: 0;
  padding-left: 80px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.featured-quote figcaption {
  padding-left: 80px;
  margin-top: 26px;
  font-weight: 700;
}

.journey-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.journey-visual {
  min-height: 360px;
  background: var(--lavender);
  position: relative;
  padding: 30px;
  overflow: hidden;
}
.journey-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--orange);
  right: -70px;
  bottom: -80px;
}
.jersey-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.sport-label { position: absolute; left: 30px; bottom: 25px; z-index: 2; font-weight: 800; letter-spacing: .18em; }
.journey-copy { padding: 56px; align-self: center; }
.tag {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--paper);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.journey-copy h3 { font-family: "Space Grotesk"; font-size: 2.25rem; line-height: 1.08; letter-spacing: -.04em; margin: 20px 0 14px; }
.journey-copy p { color: var(--muted); }

.quick-section { padding-top: 45px; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quick-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.quick-card:hover { transform: translateY(-5px); background: white; }
.quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
}
.quick-card h3 { margin: 34px 0 10px; font-size: 1.25rem; }
.quick-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.dark-section {
  background: var(--deep);
  color: white;
}
.section-heading.light .eyebrow { color: var(--lime); }
.section-heading.light .section-intro { color: rgba(255,255,255,.7); }
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}
.challenge-card {
  min-height: 250px;
  padding: 25px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.challenge-card span { color: var(--lime); font-weight: 800; font-size: .78rem; }
.challenge-card h3 { margin: 48px 0 10px; line-height: 1.15; }
.challenge-card p { color: rgba(255,255,255,.68); font-size: .9rem; margin: 0; }

.research-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
.research-list { border-top: 1px solid var(--line); }
.research-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.research-row > span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.research-row h3 { margin: 0 0 5px; }
.research-row p { margin: 0; color: var(--muted); }

.section-side-note { color: var(--muted); max-width: 270px; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.story-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(15,39,48,.06);
}
.story-top {
  height: 190px;
  padding: 22px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.story-top span { font-weight: 800; letter-spacing: .12em; font-size: .72rem; }
.story-top strong { font-family: "Space Grotesk"; font-size: 5rem; line-height: 1; }
.gradient-a { background: linear-gradient(135deg, var(--orange), #ffc38f); }
.gradient-b { background: linear-gradient(135deg, var(--blue), #d8f2ff); }
.gradient-c { background: linear-gradient(135deg, var(--lime), #efffc4); }
.story-body { padding: 25px; }
.story-body h3 { margin: 18px 0 9px; font-size: 1.4rem; }
.story-body p { min-height: 82px; color: var(--muted); }

.quote-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-gallery p {
  margin: 0;
  padding: 25px;
  font-family: "Space Grotesk";
  font-size: 1.15rem;
  line-height: 1.25;
}
.quote-gallery p + p { border-left: 1px solid var(--line); }

.share-panel {
  margin-top: 70px;
  padding: 45px;
  border-radius: var(--radius);
  background: var(--orange);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
}
.share-panel h2 { font-family: "Space Grotesk"; font-size: 2.5rem; letter-spacing: -.04em; line-height: 1.05; margin: 0 0 14px; }
.share-panel p:last-child { max-width: 780px; margin-bottom: 0; }

.toolkit-section { background: #eae5d9; }
.toolkit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.tool-tab {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  cursor: pointer;
}
.tool-tab.active { background: var(--ink); color: white; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.tool-card {
  min-height: 260px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.tool-card[hidden] { display: none; }
.tool-time { font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.tool-card h3 { font-size: 1.35rem; margin: 36px 0 8px; }
.tool-card p { color: var(--muted); margin: 0 0 25px; }
.mini-action {
  margin-top: auto;
  align-self: flex-start;
  border: 0;
  background: none;
  padding: 0;
  text-decoration: underline;
  font-weight: 800;
  cursor: pointer;
}

.support-section { background: var(--blue); }
.support-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.support-hero p:last-child { margin: 0; font-weight: 600; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.support-card {
  background: rgba(255,255,255,.78);
  border-radius: var(--radius);
  padding: 26px;
}
.support-card > span { font-size: .75rem; font-weight: 800; }
.support-card h3 { margin: 30px 0 8px; }
.support-card p { margin: 0; color: #41505c; font-size: .91rem; }
.talk-guide {
  margin-top: 55px;
  border-top: 1px solid rgba(23,33,43,.25);
  padding-top: 35px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.talk-guide h3 { font-size: 1.6rem; margin: 0; }
.speech-bubble {
  background: white;
  border-radius: 22px 22px 22px 5px;
  padding: 25px 30px;
  font-family: "Space Grotesk";
  font-size: 1.4rem;
  line-height: 1.25;
  box-shadow: var(--shadow);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.resource-card {
  border-top: 2px solid var(--ink);
  padding: 25px 5px 0;
}
.resource-card span { font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.resource-card h3 { margin: 20px 0 8px; }
.resource-card p { color: var(--muted); }
.resource-card a { font-weight: 800; }

.about-section { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}
.about-copy { font-size: 1.13rem; }
.about-copy p { margin-top: 0; }
.about-disclaimer {
  margin-top: 35px !important;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  color: var(--muted);
  font-size: .9rem;
}

.closing-cta {
  padding: 100px 0;
  background: var(--ink);
  color: white;
  text-align: center;
}
.closing-cta .eyebrow { color: var(--lime); }
.closing-cta h2 { max-width: 950px; margin-inline: auto; }
.closing-cta .btn { margin-top: 35px; }

.site-footer {
  background: #09171d;
  color: white;
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1fr;
  gap: 50px;
}
.footer-brand { margin-bottom: 15px; }
.site-footer h3 { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin: 0 0 16px; }
.site-footer a:not(.brand) {
  display: block;
  color: rgba(255,255,255,.76);
  text-decoration: none;
  margin: 7px 0;
}
.site-footer p { color: rgba(255,255,255,.62); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9,23,29,.72);
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  width: min(700px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  position: relative;
  background: var(--paper);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.modal-close {
  position: sticky;
  float: right;
  top: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.modal h2 { font-family: "Space Grotesk"; letter-spacing: -.04em; font-size: 2rem; }
.modal h3 { margin-top: 28px; }
.modal p, .modal li { color: var(--muted); }
.breathe-orb {
  width: 180px;
  height: 180px;
  margin: 35px auto;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  transition: transform 4s ease-in-out, background .2s;
}
.breathe-orb.expand { transform: scale(1.35); }
.timer-controls { display: flex; gap: 10px; justify-content: center; }
.timer-status { text-align: center; font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 74px 20px auto;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .research-layout, .about-grid, .support-hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 480px; }
  .mission-grid, .story-grid, .tool-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid, .challenge-grid, .support-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-feature { grid-template-columns: 1fr; }
  .quote-gallery { grid-template-columns: 1fr 1fr; }
  .quote-gallery p:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .quote-gallery p:nth-child(4) { border-top: 1px solid var(--line); }
  .share-panel { grid-template-columns: 1fr; }
  .talk-guide { grid-template-columns: 1fr; gap: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 45px; }
  .hero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-grid { gap: 40px; }
  .hero-art { min-height: 390px; border-radius: 28px; }
  .figure-head { left: 46%; top: 130px; width: 62px; height: 62px; }
  .figure-body { left: 39%; top: 185px; width: 125px; height: 170px; }
  .figure-leg { top: 325px; height: 135px; width: 42px; }
  .section { padding: 80px 0; }
  .mission-grid, .story-grid, .tool-grid, .quick-grid, .challenge-grid, .support-grid, .resource-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .mission-card + .mission-card { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .challenge-grid { border-left: 0; }
  .challenge-card { border-left: 1px solid rgba(255,255,255,.18); }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .featured-quote blockquote, .featured-quote figcaption { padding-left: 0; }
  .quote-mark { position: static; display: block; height: 45px; }
  .journey-copy { padding: 32px 24px; }
  .journey-copy h3 { font-size: 1.8rem; }
  .quote-gallery { grid-template-columns: 1fr; }
  .quote-gallery p + p { border-left: 0; border-top: 1px solid var(--line); }
  .share-panel { padding: 30px 24px; }
  .support-hero { gap: 25px; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 30px 22px; }
}



/* Simple photo breaks — intentionally minimal */
.section-photo-break {
  margin-top: 34px;
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
}
.section-photo-break.reverse {
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
}
.section-photo-break.reverse img { order: 2; }
.section-photo-break.reverse p { order: 1; }
.section-photo-break img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}
.section-photo-break p {
  margin: 0;
  padding: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.25;
  font-weight: 700;
}
@media (max-width: 720px) {
  .section-photo-break,
  .section-photo-break.reverse { grid-template-columns: 1fr; }
  .section-photo-break.reverse img,
  .section-photo-break.reverse p { order: initial; }
  .section-photo-break img { height: 230px; object-position: center 18%; }
  .section-photo-break p { padding: 22px; }
}


/* =========================================================
   FINAL IMAGE NORMALIZATION
   Keeps all athlete photos inside sensible frames.
   ========================================================= */

/* Athlete Voices: Simone Biles, DeMar DeRozan, Kevin Love */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.voice-card {
  min-width: 0;
  overflow: hidden;
}
.athlete-photo {
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 16px;
  background: #f1f2f3;
}
.athlete-photo img {
  display: block;
  width: 100%;
  height: 165px;
  max-height: 165px;
  object-fit: cover;
  object-position: center 20%;
}
.athlete-photo--contain img {
  object-fit: contain;
  object-position: center center;
  padding: 4px;
  background: #f1f2f3;
}
.athlete-photo figcaption {
  padding: 7px 9px 8px;
  font-size: .62rem;
  line-height: 1.35;
  color: var(--muted);
  background: var(--white);
}

/* Wang: use his actual uploaded landscape action shot */
.wang-story {
  width: min(100%, 900px);
  max-width: 900px;
  overflow: hidden;
}
.wang-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #eef0f1;
}
.wang-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #111820;
}
.wang-photo figcaption {
  padding: 8px 12px;
  font-size: .65rem;
  line-height: 1.35;
  color: var(--muted);
  background: var(--white);
}

/* The three extra photo breaks: never crop off an athlete's head/body. */
.section-photo-break {
  min-height: 280px;
}
.section-photo-break img {
  width: 100%;
  height: 280px;
  max-height: 280px;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #e9ecef;
}

/* Responsive image sizing */
@media (max-width: 980px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voice-card { max-width: 680px; width: 100%; }
  .athlete-photo img {
    height: 210px;
    max-height: 210px;
  }
}
@media (max-width: 650px) {
  .athlete-photo img {
    height: 175px;
    max-height: 175px;
  }
  .wang-photo img { aspect-ratio: 16 / 10; }
  .section-photo-break img {
    height: 220px;
    max-height: 220px;
  }
}


/* =========================================================
   WHAT YOU DON'T SEE ON THE SCOREBOARD — corrected styling
   ========================================================= */
.hidden-game-section {
  background: #121b24;
  color: #ffffff;
}
.hidden-game-section .section-heading.light .eyebrow {
  color: var(--lime);
}
.hidden-game-section .section-heading.light h2 {
  color: #ffffff;
}
.hidden-game-section .section-intro {
  color: rgba(255,255,255,.72);
}
.hidden-game-visual {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 18px;
  margin: 0 0 30px;
}
.hidden-game-photo {
  overflow: hidden;
  border-radius: 22px;
  background: #0c1319;
  min-height: 280px;
}
.hidden-game-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.hidden-game-visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.hidden-game-visual-copy .eyebrow {
  color: var(--lime);
}
.hidden-game-visual-copy p {
  margin: 0;
  max-width: 720px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #ffffff;
}
.scoreboard-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}
.scoreboard-column {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255,255,255,.045);
}
.scoreboard-column.unseen {
  background: rgba(215,255,93,.06);
}
.scoreboard-column > .eyebrow {
  color: var(--lime);
  margin-bottom: 12px;
}
.score-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.score-line span {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}
.score-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  color: var(--lime);
  line-height: 1;
}
.hidden-line {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hidden-line h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.15rem;
}
.hidden-line p {
  margin: 0;
  color: rgba(255,255,255,.68);
}
.hidden-source {
  margin-top: 26px;
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
}
.hidden-source p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.77);
}
.hidden-source strong {
  color: #ffffff;
}
.hidden-source a {
  display: inline-block;
  margin: 6px 18px 0 0;
  color: var(--lime);
  font-weight: 800;
}
@media (max-width: 900px) {
  .hidden-game-visual,
  .scoreboard-grid {
    grid-template-columns: 1fr;
  }
  .hidden-game-photo { min-height: 240px; }
  .hidden-game-photo img { min-height: 240px; max-height: 360px; }
}
@media (max-width: 650px) {
  .hidden-game-visual-copy { padding: 24px; }
  .scoreboard-column { padding: 22px; }
}


/* =========================================================
   FINAL PHOTO FILL + CROPPING PASS
   All photos now fill their frames instead of letterboxing.
   ========================================================= */

/* Athlete voice cards */
.athlete-photo {
  overflow: hidden;
  background: #e9ecef;
}
.athlete-photo img,
.athlete-photo--contain img {
  width: 100%;
  height: 180px;
  max-height: 180px;
  display: block;
  object-fit: cover !important;
  padding: 0 !important;
  background: transparent !important;
}
/* Keep faces/heads comfortably in frame */
.voice-card:nth-child(1) .athlete-photo img { object-position: center 18%; } /* Simone */
.voice-card:nth-child(2) .athlete-photo img { object-position: center 22%; } /* DeMar */
.voice-card:nth-child(3) .athlete-photo img { object-position: center 28%; } /* Kevin */

/* Wang */
.wang-photo {
  background: #111820;
}
.wang-photo img {
  width: 100%;
  height: 420px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 42%;
  background: transparent;
}

/* Three photo-break panels */
.section-photo-break {
  overflow: hidden;
}
.section-photo-break img {
  width: 100%;
  height: 300px;
  max-height: 300px;
  object-fit: cover;
  background: transparent;
}
.section-photo-break:nth-of-type(1) img { object-position: center 28%; }
.section-photo-break.reverse img { object-position: center 28%; }

/* Hidden-game trophy image */
.hidden-game-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 28%;
}

/* Resources header photo */
.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: stretch;
  margin-bottom: 52px;
}
.resources-hero .section-heading {
  margin-bottom: 0;
  align-self: center;
}
.resources-photo {
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background: #e9ecef;
}
.resources-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 18%;
}

/* Keep images filled on smaller screens too */
@media (max-width: 980px) {
  .athlete-photo img,
  .athlete-photo--contain img {
    height: 230px;
    max-height: 230px;
  }
  .wang-photo img { height: 360px; }
  .resources-hero { grid-template-columns: 1fr; }
  .resources-photo,
  .resources-photo img { min-height: 300px; }
}
@media (max-width: 650px) {
  .athlete-photo img,
  .athlete-photo--contain img {
    height: 190px;
    max-height: 190px;
  }
  .wang-photo img { height: 260px; object-position: center 45%; }
  .section-photo-break img {
    height: 230px;
    max-height: 230px;
  }
  .resources-photo,
  .resources-photo img { min-height: 240px; }
}


/* =========================================================
   TARGETED PHOTO POSITION FIXES
   ========================================================= */

/* Wang: make the single story card wider and visually center him */
#journeys .story-grid {
  grid-template-columns: 1fr;
}
#journeys .wang-story {
  width: min(100%, 980px);
  max-width: 980px;
  margin-inline: auto;
}
#journeys .wang-photo {
  height: 430px;
  overflow: hidden;
}
#journeys .wang-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Zoom slightly so Wang can be centered instead of sitting far left */
  transform: scale(1.22) translateX(7%);
  transform-origin: center center;
}

/* Ohtani photo break: keep the entire head/cap visible */
.section-photo-break.reverse img[src*="athlete-baseball"] {
  object-fit: cover;
  object-position: center 8%;
}

/* Putellas photo break: keep the full head/hair visible */
.section-photo-break img[src*="athlete-soccer"] {
  object-fit: cover;
  object-position: center 7%;
}

/* Preserve those focal points on tablets and phones */
@media (max-width: 980px) {
  #journeys .wang-photo { height: 360px; }
  #journeys .wang-photo img {
    transform: scale(1.18) translateX(6%);
  }
  .section-photo-break.reverse img[src*="athlete-baseball"] {
    object-position: center 6%;
  }
  .section-photo-break img[src*="athlete-soccer"] {
    object-position: center 5%;
  }
}
@media (max-width: 650px) {
  #journeys .wang-photo { height: 280px; }
  #journeys .wang-photo img {
    transform: scale(1.14) translateX(5%);
  }
}


/* About founder photo */
.about-founder-photo {
  margin: 28px 0 34px;
  width: min(100%, 720px);
  overflow: hidden;
  border-radius: 22px;
  background: #e9ecef;
}
.about-founder-photo img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 58%;
}
.about-founder-photo figcaption {
  padding: 10px 14px;
  background: #fff;
  color: var(--muted);
  font-size: .72rem;
}
.interview-credit {
  display: inline-block;
  margin-top: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
}
@media (max-width: 650px) {
  .about-founder-photo img { height: 330px; }
}


/* About photo placement: directly below the main title */
#about .about-founder-photo {
  margin: 30px 0 42px;
  width: min(100%, 820px);
}
#about .about-founder-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 55%;
}
@media (max-width: 650px) {
  #about .about-founder-photo {
    margin-top: 22px;
  }
  #about .about-founder-photo img {
    height: 340px;
  }
}


/* =========================================================
   LANGUAGE SELECTOR
   ========================================================= */
.language-button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  color: var(--ink);
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.language-button:hover { background: #fff; }

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(9,23,29,.82);
  backdrop-filter: blur(12px);
}
.language-gate[hidden] { display: none; }
.language-gate-card {
  width: min(680px, 100%);
  background: var(--paper);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.language-gate-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.language-gate-subtitle {
  color: var(--muted);
  max-width: 560px;
  margin: 18px 0 28px;
}
.language-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.language-options button {
  min-height: 112px;
  text-align: left;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.language-options button:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.language-options strong,
.language-options span { display: block; }
.language-options strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}
.language-options span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .85rem;
}
@media (max-width: 980px) {
  .language-button { margin-left: auto; }
}
@media (max-width: 650px) {
  .language-options { grid-template-columns: 1fr; }
  .language-options button { min-height: 88px; }
}

/* =========================================================
   V25 — FULL-SCREEN INTRO + CLICKABLE SECTION DIRECTORY
   ========================================================= */
.hero-v25 {
  position: relative;
  min-height: calc(100svh - 74px);
  height: calc(100svh - 74px);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #141d26;
  color: #fff;
  isolation: isolate;
}
.hero-v25::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 92%);
}
.hero-v25-inner {
  position: relative;
  width: min(1400px, calc(100% - 72px));
  min-height: 100%;
  padding: clamp(32px, 5vh, 62px) 0 clamp(70px, 9vh, 105px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.hero-v25-kicker {
  margin: 0;
  color: var(--lime);
  font-weight: 800;
  font-size: clamp(.72rem, 1vw, .9rem);
  letter-spacing: .22em;
}
.hero-v25-title {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5.2rem, 13.5vw, 13.5rem) !important;
  line-height: .72 !important;
  letter-spacing: -.085em !important;
  font-weight: 700;
  white-space: nowrap;
}
.hero-v25-title span:last-child { margin-left: clamp(20px, 8vw, 130px); }
.hero-v25-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero-v25-bottom p {
  width: min(610px, 52vw);
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(.95rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}
.hero-v25-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-v25-support { color: #fff; font-weight: 800; text-decoration: none; }
.hero-v25-support:hover { color: var(--lime); }
.hero-v25-index {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
  display: flex;
  gap: 20px;
  color: rgba(255,255,255,.42);
  font-size: .68rem;
  letter-spacing: .18em;
  font-weight: 800;
}
.hero-v25-orb { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -1; }
.hero-v25-orb-a { width: 28vw; height: 28vw; right: -9vw; top: -11vw; background: rgba(215,255,93,.16); }
.hero-v25-orb-b { width: 18vw; height: 18vw; left: 44%; bottom: -13vw; background: rgba(255,128,92,.18); }

.explore-hub { background: var(--paper); padding-top: 110px; padding-bottom: 120px; scroll-margin-top: 74px; }
.explore-hub-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--ink);
}
.explore-hub-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -.06em;
  line-height: .92;
}
.explore-hub-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 1.05rem; }
.explore-hub-grid { display: grid; grid-template-columns: 1fr 1fr; }
.explore-hub-card {
  min-height: 155px;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .2s ease, padding-left .2s ease;
}
.explore-hub-card:nth-child(odd) { border-right: 1px solid var(--line); }
.explore-hub-card:hover, .explore-hub-card:focus-visible { background: var(--lime); padding-left: 34px; outline: none; }
.explore-num { align-self: start; font-size: .72rem; font-weight: 800; color: var(--muted); letter-spacing: .12em; }
.explore-hub-card strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.05; letter-spacing: -.035em; }
.explore-hub-card small { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; }
.explore-arrow { font-size: 1.7rem; justify-self: end; }

@media (max-width: 900px) {
  .hero-v25-inner { width: min(100% - 40px, 1160px); }
  .hero-v25-title { font-size: clamp(4.2rem, 16vw, 8.5rem) !important; line-height: .78 !important; }
  .hero-v25-title span:last-child { margin-left: 0; }
  .hero-v25-bottom { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-v25-bottom p { width: min(100%, 620px); }
  .hero-v25-index { display: none; }
  .explore-hub-heading { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 650px) {
  .hero-v25 { min-height: calc(100svh - 66px); height: calc(100svh - 66px); }
  .hero-v25-inner { width: calc(100% - 30px); padding: 26px 0 34px; }
  .hero-v25-title { font-size: clamp(3.65rem, 20vw, 6.3rem) !important; line-height: .79 !important; white-space: normal; }
  .hero-v25-kicker { font-size: .64rem; }
  .hero-v25-bottom p { font-size: .9rem; line-height: 1.45; }
  .hero-v25-actions { gap: 14px; }
  .hero-v25-actions .btn { min-height: 46px; padding: 0 18px; }
  .explore-hub { padding-top: 72px; padding-bottom: 80px; }
  .explore-hub-grid { grid-template-columns: 1fr; }
  .explore-hub-card:nth-child(odd) { border-right: 0; }
  .explore-hub-card { min-height: 125px; padding: 24px 8px; grid-template-columns: 34px 1fr 30px; gap: 10px; }
  .explore-hub-card:hover, .explore-hub-card:focus-visible { padding-left: 16px; }
}

/* V26 — photographic home hero */
.hero-v25 {
  background-image:
    linear-gradient(180deg, rgba(10,17,23,.46) 0%, rgba(10,17,23,.20) 42%, rgba(10,17,23,.62) 100%),
    url("assets/home-hero-lauda.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-v25::before {
  background: linear-gradient(90deg, rgba(8,15,21,.20), transparent 42%, rgba(8,15,21,.12));
  mask-image: none;
}
.hero-v25-title {
  color: rgba(255,255,255,.64);
  text-shadow: 0 2px 22px rgba(0,0,0,.12);
}
.hero-v25-bottom p {
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.hero-v25-orb { display: none; }

/* =========================================================
   V27 — FEDERER CINEMATIC HOME PAGE
   ========================================================= */
.hero-v27{position:relative;height:100svh;min-height:650px;overflow:hidden;color:#fff;background:url('assets/federer-home-hero.jpeg') center 43%/cover no-repeat;isolation:isolate}
.hero-v27-shade{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(4,9,12,.54) 0%,rgba(4,9,12,.12) 32%,rgba(4,9,12,.08) 54%,rgba(4,9,12,.58) 100%),linear-gradient(90deg,rgba(3,8,10,.34),transparent 38%,transparent 72%,rgba(3,8,10,.18))}
.hero-v27-content{width:min(1500px,calc(100% - 72px));height:100%;margin:auto;padding:clamp(94px,11vh,120px) 0 22px;display:flex;flex-direction:column;position:relative}
.hero-v27-title{margin:0 auto;font-family:"Space Grotesk",sans-serif;font-weight:700;font-size:clamp(5.8rem,12.3vw,12.5rem)!important;line-height:.75!important;letter-spacing:-.075em!important;text-align:center;text-transform:uppercase;color:rgba(255,255,255,.68);text-shadow:0 2px 18px rgba(0,0,0,.18);-webkit-text-stroke:1px rgba(255,255,255,.22);filter:drop-shadow(0 8px 15px rgba(0,0,0,.08));white-space:nowrap}
.hero-v27-title span{display:block}.hero-v27-side{position:absolute;left:0;top:34%;display:flex;gap:16px;align-items:stretch;font-size:clamp(.8rem,1.1vw,1.05rem);letter-spacing:.08em;line-height:1.55;color:rgba(255,255,255,.78)}
.hero-v27-side span{width:1px;background:rgba(255,255,255,.65)}.hero-v27-side p{margin:0}.hero-v27-side strong{color:#fff}
.hero-v27-lower{margin-top:auto;display:flex;justify-content:space-between;align-items:end;padding-bottom:clamp(18px,3vh,34px)}
.hero-v27-message>p{font-size:clamp(1.25rem,2.15vw,2rem);font-weight:700;line-height:1.08;margin:0 0 22px;text-shadow:0 2px 12px rgba(0,0,0,.35)}
.hero-v27-actions{display:flex;gap:14px;align-items:center}.hero-v27-primary,.hero-v27-secondary{min-height:52px;padding:0 28px;border-radius:999px;display:inline-flex;align-items:center;gap:18px;color:#fff;text-decoration:none;font-weight:700;border:1px solid rgba(255,255,255,.85);backdrop-filter:blur(5px)}
.hero-v27-primary{background:#e72b2d;border-color:#e72b2d}.hero-v27-primary:hover{background:#fff;color:#111}.hero-v27-secondary{background:rgba(0,0,0,.12)}.hero-v27-secondary:hover{background:#fff;color:#111}.hero-v27-secondary .play{font-size:.72rem;width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.25)}
.hero-v27-quote{margin:0 2% 30px 0;font-size:clamp(1rem,1.5vw,1.35rem);line-height:1.35;font-style:italic;text-shadow:0 2px 12px rgba(0,0,0,.5)}.hero-v27-quote cite{display:block;margin-top:10px;font-size:.78em;font-style:normal;font-weight:700}
.hero-v27-shortcuts{border-top:1px solid rgba(255,255,255,.35);display:grid;grid-template-columns:repeat(6,1fr);min-height:105px}.hero-v27-shortcuts a{color:#fff;text-decoration:none;text-align:center;display:flex;flex-direction:column;justify-content:center;gap:7px;border-right:1px solid rgba(255,255,255,.25);font-size:.69rem;font-weight:800;text-transform:uppercase;line-height:1.12}.hero-v27-shortcuts a:last-child{border-right:0}.hero-v27-shortcuts b{font-size:1.7rem;font-weight:400}.hero-v27-shortcuts a:hover{background:rgba(255,255,255,.12)}
@media(min-width:981px){body:has(.hero-v27) .site-header{position:absolute;width:100%;background:linear-gradient(180deg,rgba(5,10,14,.58),transparent);border:0;box-shadow:none;color:#fff}body:has(.hero-v27) .site-header .site-nav a,body:has(.hero-v27) .site-header .brand,body:has(.hero-v27) .site-header .language-button{color:#fff}body:has(.hero-v27) .site-header .brand-mark{background:#fff;color:#111}}
@media(max-width:980px){.hero-v27{height:auto;min-height:100svh}.hero-v27-content{width:calc(100% - 40px);padding-top:54px}.hero-v27-title{font-size:clamp(4.4rem,16vw,9rem)!important;white-space:normal}.hero-v27-side{display:none}.hero-v27-lower{padding-top:35vh}.hero-v27-shortcuts{grid-template-columns:repeat(3,1fr)}.hero-v27-shortcuts a{min-height:88px}.hero-v27-quote{display:none}}
@media(max-width:600px){.hero-v27{background-position:55% center}.hero-v27-content{width:calc(100% - 28px);padding-top:38px}.hero-v27-title{font-size:clamp(3.6rem,19vw,6rem)!important;line-height:.8!important}.hero-v27-lower{padding-top:31vh}.hero-v27-message>p{font-size:1.2rem}.hero-v27-actions{flex-wrap:wrap}.hero-v27-primary,.hero-v27-secondary{min-height:46px;padding:0 18px;font-size:.84rem}.hero-v27-shortcuts{grid-template-columns:repeat(3,1fr)}.hero-v27-shortcuts a{font-size:.58rem}.hero-v27-shortcuts b{font-size:1.3rem}}

/* =========================================================
   V28 — CLEAN FEDERER HOME HERO
   Keeps the original Federer image unchanged; fixes legacy hero collisions.
   ========================================================= */
.hero.hero-v27{
  box-sizing:border-box;
  display:block;
  width:100%;
  height:100svh;
  min-height:680px;
  padding:0;
  overflow:hidden;
  background-image:url('assets/federer-home-hero.jpeg');
  background-size:cover;
  background-position:center 43%;
  background-repeat:no-repeat;
}
.hero-v27 .hero-v27-shade{
  z-index:0;
  background:linear-gradient(180deg,rgba(5,10,14,.56) 0%,rgba(5,10,14,.18) 24%,rgba(5,10,14,.05) 52%,rgba(5,10,14,.66) 100%);
}
.hero-v27 .hero-v27-content{
  box-sizing:border-box;
  z-index:1;
  width:min(1460px,calc(100% - 72px));
  height:100%;
  padding:112px 0 20px;
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:0;
}
.hero-v27 .hero-v27-title{
  max-width:none;
  width:100%;
  margin:12px 0 0;
  padding:0;
  font-size:clamp(5.4rem,11.2vw,10.9rem)!important;
  line-height:.78!important;
  letter-spacing:-.07em!important;
  color:rgba(255,255,255,.58);
  -webkit-text-stroke:1px rgba(255,255,255,.16);
  text-shadow:0 5px 24px rgba(0,0,0,.16);
  filter:none;
  white-space:nowrap;
}
.hero-v27 .hero-v27-side{top:38%;left:0;opacity:.9}
.hero-v27 .hero-v27-lower{
  align-self:end;
  width:100%;
  margin:0 0 18px;
  padding:0;
  display:grid;
  grid-template-columns:minmax(330px,520px) 1fr minmax(250px,320px);
  align-items:end;
}
.hero-v27 .hero-v27-message{grid-column:1}
.hero-v27 .hero-v27-message>p{
  margin:0 0 20px;
  font-size:clamp(1.35rem,1.8vw,1.75rem);
  line-height:1.08;
  text-shadow:0 2px 14px rgba(0,0,0,.55);
}
.hero-v27 .hero-v27-quote{
  grid-column:3;
  margin:0 0 10px;
  justify-self:end;
  font-size:clamp(.95rem,1.25vw,1.18rem);
  text-shadow:0 2px 14px rgba(0,0,0,.6);
}
.hero-v27 .hero-v27-shortcuts{
  width:100%;
  min-height:92px;
  margin:0;
  border-top:1px solid rgba(255,255,255,.32);
  background:linear-gradient(180deg,rgba(4,10,12,.05),rgba(4,10,12,.22));
}
.hero-v27 .hero-v27-shortcuts a{min-width:0;padding:10px 8px}
.hero-v27 .hero-v27-shortcuts b{font-size:1.45rem}

@media(max-width:1100px){
  .hero-v27 .hero-v27-content{width:calc(100% - 44px);padding-top:100px}
  .hero-v27 .hero-v27-title{font-size:clamp(4.7rem,12vw,8rem)!important}
  .hero-v27 .hero-v27-side{display:none}
  .hero-v27 .hero-v27-lower{grid-template-columns:minmax(300px,480px) 1fr minmax(220px,280px)}
}
@media(max-width:760px){
  .hero.hero-v27{height:auto;min-height:100svh;background-position:55% center}
  .hero-v27 .hero-v27-content{width:calc(100% - 28px);min-height:100svh;padding:88px 0 14px;grid-template-rows:auto 1fr auto}
  .hero-v27 .hero-v27-title{font-size:clamp(3.5rem,17vw,6.2rem)!important;line-height:.82!important;white-space:normal}
  .hero-v27 .hero-v27-lower{display:block;align-self:end;margin-bottom:18px}
  .hero-v27 .hero-v27-message>p{font-size:1.15rem;max-width:330px}
  .hero-v27 .hero-v27-quote{display:none}
  .hero-v27 .hero-v27-shortcuts{grid-template-columns:repeat(3,1fr);min-height:0}
  .hero-v27 .hero-v27-shortcuts a{min-height:72px;font-size:.56rem}
}

/* =========================================================
   V29 — CLEAN IMAGE-ONLY HOME HERO
   ========================================================= */
.hero.hero-v29{
  position:relative;
  box-sizing:border-box;
  display:block;
  width:100%;
  height:100svh;
  min-height:560px;
  padding:0;
  margin:0;
  overflow:hidden;
  background-image:url('assets/federer-home-clean.jpg');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.hero-v29-scroll{
  position:absolute;
  right:28px;
  bottom:28px;
  width:50px;
  height:50px;
  border:1px solid rgba(255,255,255,.8);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  font-size:1.5rem;
  background:rgba(0,0,0,.18);
  backdrop-filter:blur(4px);
  transition:.2s ease;
}
.hero-v29-scroll:hover{background:rgba(0,0,0,.45);transform:translateY(2px)}
@media(min-width:981px){
  body:has(.hero-v29) .site-header{
    position:absolute;
    width:100%;
    background:linear-gradient(180deg,rgba(5,10,14,.62),rgba(5,10,14,.16),transparent);
    border:0;
    box-shadow:none;
    color:#fff;
  }
  body:has(.hero-v29) .site-header .site-nav a,
  body:has(.hero-v29) .site-header .brand,
  body:has(.hero-v29) .site-header .language-button{color:#fff}
  body:has(.hero-v29) .site-header .brand-mark{background:#fff;color:#111}
}
@media(max-width:980px){
  .hero.hero-v29{height:calc(100svh - 66px);background-position:center center}
}

/* V30 — clean Federer hero + bubbly title */
.hero-v29-title{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;transform:translateY(-3vh);pointer-events:none;text-align:center;font-family:Arial Rounded MT Bold,Arial Black,Arial,sans-serif;font-weight:900;font-size:clamp(5rem,12vw,12rem);line-height:.78;letter-spacing:-.065em;color:rgba(255,255,255,.46);-webkit-text-stroke:2px rgba(255,255,255,.28);text-shadow:0 8px 32px rgba(0,0,0,.22)}
.hero-v29-title span{display:block}
@media(max-width:760px){.hero-v29-title{font-size:clamp(4rem,18vw,7rem);line-height:.84;transform:translateY(-8vh)}}

/* V31 — clean homepage title positioned over Federer, with compact section tabs */
.hero.hero-v31{position:relative;background-image:url('assets/federer-home-clean.jpg');background-position:center center;background-size:cover;background-repeat:no-repeat}
.hero-v31-overlay{position:absolute;left:50%;top:49%;width:min(94vw,1280px);transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;gap:22px;z-index:2;text-align:center}
.hero-v31-title{margin:0;font-family:"Arial Rounded MT Bold","Trebuchet MS","DM Sans",sans-serif;font-size:clamp(4rem,9.2vw,9.4rem)!important;line-height:.9!important;letter-spacing:-.055em!important;font-weight:900;color:rgba(255,255,255,.58);-webkit-text-stroke:1.5px rgba(255,255,255,.55);text-shadow:0 5px 24px rgba(0,0,0,.2);white-space:nowrap}
.hero-v31-tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;padding:8px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(8,15,12,.22);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 10px 35px rgba(0,0,0,.13)}
.hero-v31-tabs a{display:flex;align-items:center;justify-content:center;min-height:38px;padding:0 17px;border-radius:999px;color:#fff;text-decoration:none;font-size:.76rem;font-weight:700;letter-spacing:.01em;text-shadow:0 1px 8px rgba(0,0,0,.4);transition:background .2s ease,color .2s ease,transform .2s ease}
.hero-v31-tabs a:hover,.hero-v31-tabs a:focus-visible{background:#fff;color:#17211c;text-shadow:none;transform:translateY(-1px);outline:none}
@media(max-width:900px){.hero-v31-overlay{top:50%;gap:16px}.hero-v31-title{font-size:clamp(3.8rem,12vw,7rem)!important;white-space:normal}.hero-v31-tabs{max-width:680px;border-radius:28px}.hero-v31-tabs a{font-size:.7rem;padding:0 13px}}
@media(max-width:600px){.hero.hero-v31{background-position:center center}.hero-v31-overlay{top:52%;width:calc(100% - 24px)}.hero-v31-title{font-size:clamp(3.2rem,17vw,5.2rem)!important;line-height:.84!important}.hero-v31-tabs{gap:5px;padding:6px;border-radius:22px}.hero-v31-tabs a{min-height:34px;padding:0 10px;font-size:.62rem}}

/* =========================================================
   V32 — editorial Federer landing page
   ========================================================= */
.hero.hero-v32{
  position:relative; width:100%; height:100svh; min-height:650px; margin:0; padding:0; overflow:hidden;
  background:url('assets/federer-home-clean.jpg') center center/cover no-repeat;
  color:#fff;
}
.hero-v32-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,9,10,.48) 0%,rgba(4,9,10,.08) 31%,rgba(4,9,10,.05) 55%,rgba(4,9,10,.62) 100%);pointer-events:none}
.hero-v32-inner{position:relative;z-index:2;width:min(1440px,calc(100% - 80px));height:100%;margin:auto;padding:112px 0 34px;box-sizing:border-box;display:grid;grid-template-rows:auto 1fr auto}
.hero-v32-kicker{margin:0;font:700 .72rem/1 "DM Sans",sans-serif;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.8)}
.hero-v32-title{align-self:center;margin:-2vh 0 0!important;font-family:"Arial Rounded MT Bold","Trebuchet MS","Space Grotesk",sans-serif!important;font-size:clamp(5.8rem,12.7vw,12.6rem)!important;font-weight:900!important;line-height:.72!important;letter-spacing:-.075em!important;color:rgba(255,255,255,.56)!important;-webkit-text-stroke:1.5px rgba(255,255,255,.42);text-shadow:0 8px 34px rgba(0,0,0,.2);pointer-events:none}
.hero-v32-title span{display:block}.hero-v32-title span:last-child{margin-left:8.5vw}
.hero-v32-bottom{display:grid;grid-template-columns:minmax(260px,390px) 1fr;gap:48px;align-items:end;border-top:1px solid rgba(255,255,255,.35);padding-top:18px}
.hero-v32-copy{margin:0;max-width:380px;font-size:clamp(.9rem,1.15vw,1.08rem);line-height:1.4;font-weight:600;text-shadow:0 2px 12px rgba(0,0,0,.45)}
.hero-v32-tabs{justify-self:end;display:flex;gap:7px;flex-wrap:wrap;justify-content:flex-end}
.hero-v32-tabs a{display:flex;align-items:center;gap:9px;min-height:38px;padding:0 14px;border:1px solid rgba(255,255,255,.42);border-radius:999px;background:rgba(5,12,10,.18);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);color:#fff;text-decoration:none;font-size:.72rem;font-weight:700;transition:.2s ease}
.hero-v32-tabs a span{opacity:.72}.hero-v32-tabs a:hover,.hero-v32-tabs a:focus-visible{background:#fff;color:#152018;transform:translateY(-2px);outline:none}
.hero-v32-scroll{position:absolute;z-index:3;right:28px;bottom:26px;width:46px;height:46px;border:1px solid rgba(255,255,255,.6);border-radius:50%;display:grid;place-items:center;color:#fff;text-decoration:none;background:rgba(0,0,0,.16);backdrop-filter:blur(6px)}
@media(min-width:981px){body:has(.hero-v32) .site-header{position:absolute;width:100%;background:linear-gradient(180deg,rgba(4,9,10,.68),rgba(4,9,10,.18),transparent);border:0;box-shadow:none;color:#fff}body:has(.hero-v32) .site-header .site-nav a,body:has(.hero-v32) .site-header .brand,body:has(.hero-v32) .site-header .language-button{color:#fff}body:has(.hero-v32) .site-header .brand-mark{background:#fff;color:#111}}
@media(max-width:980px){.hero.hero-v32{height:calc(100svh - 66px);min-height:620px}.hero-v32-inner{width:calc(100% - 36px);padding:52px 0 24px}.hero-v32-title{font-size:clamp(4.8rem,15vw,8rem)!important}.hero-v32-bottom{grid-template-columns:1fr;gap:14px}.hero-v32-tabs{justify-self:start;justify-content:flex-start;max-width:720px}.hero-v32-scroll{right:18px;bottom:18px}}
@media(max-width:600px){.hero.hero-v32{background-position:center center}.hero-v32-inner{width:calc(100% - 24px);padding-top:38px}.hero-v32-kicker{font-size:.6rem}.hero-v32-title{font-size:clamp(3.8rem,20vw,5.8rem)!important;line-height:.77!important}.hero-v32-title span:last-child{margin-left:0}.hero-v32-copy{font-size:.86rem;max-width:300px}.hero-v32-tabs{gap:5px;padding-right:48px}.hero-v32-tabs a{min-height:34px;padding:0 10px;font-size:.62rem}}

/* =========================================================
   V33 — supplied Federer title artwork + bottom shortcuts
   ========================================================= */
.hero.hero-v33{
  position:relative;
  width:100%;
  height:100svh;
  min-height:650px;
  margin:0;
  padding:0;
  overflow:hidden;
  background:#18310f url('assets/homepage-v33.jpg') center center/cover no-repeat;
}
.hero-v33-shortcuts{
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  bottom:0;
  min-height:108px;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  border-top:1px solid rgba(255,255,255,.38);
  background:linear-gradient(180deg,rgba(5,18,8,.06),rgba(5,18,8,.70));
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.hero-v33-shortcuts a{
  min-width:0;
  padding:13px 8px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  border-right:1px solid rgba(255,255,255,.25);
  color:#fff;
  text-decoration:none;
  text-align:center;
  text-transform:uppercase;
  font-size:.67rem;
  font-weight:800;
  line-height:1.12;
  letter-spacing:.02em;
  text-shadow:0 2px 8px rgba(0,0,0,.45);
  transition:background .2s ease,transform .2s ease;
}
.hero-v33-shortcuts a:last-child{border-right:0}
.hero-v33-shortcuts a:hover,.hero-v33-shortcuts a:focus-visible{background:rgba(255,255,255,.14);outline:none}
.hero-v33-shortcuts .shortcut-icon{font-size:1.55rem;line-height:1;font-weight:400}
@media(min-width:981px){
  body:has(.hero-v33) .site-header{display:none}
}
@media(max-width:980px){
  .hero.hero-v33{height:calc(100svh - 66px);min-height:620px;background-position:center center}
  .hero-v33-shortcuts{grid-template-columns:repeat(3,1fr);min-height:176px}
  .hero-v33-shortcuts a{min-height:88px;font-size:.62rem}
}
@media(max-width:560px){
  .hero.hero-v33{background-position:center center}
  .hero-v33-shortcuts{min-height:162px}
  .hero-v33-shortcuts a{min-height:81px;padding:8px 4px;font-size:.54rem}
  .hero-v33-shortcuts .shortcut-icon{font-size:1.25rem}
}

/* V35 — homepage is a locked landing screen until a section tab is chosen */
/* V35 scroll lock removed in V36 */


/* V37 — refined hero wordmark + compact glass language control */
.hero-v36-controls{
  position:absolute; z-index:20; top:22px; left:28px;
  display:flex; align-items:center; gap:10px;
  font-family:"DM Sans",sans-serif;
}
.hero-v36-brand{
  display:inline-flex; align-items:center; min-height:34px;
  color:#fff; text-decoration:none !important; text-transform:uppercase;
  font-size:.72rem; font-weight:800; letter-spacing:.16em;
  white-space:nowrap; text-shadow:0 2px 14px rgba(0,0,0,.72);
}
.hero-v36-language{
  display:inline-flex; align-items:center; gap:6px; min-height:34px;
  border:1px solid rgba(255,255,255,.35); border-radius:999px;
  padding:7px 11px; background:rgba(9,14,12,.38);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  color:#fff; font:700 .68rem/1 "DM Sans",sans-serif;
  cursor:pointer; box-shadow:0 5px 20px rgba(0,0,0,.18);
}
.hero-v36-language:hover{background:rgba(255,255,255,.16)}
.hero-v36-language:focus-visible{outline:2px solid #fff;outline-offset:3px}
.journey-visual-wang{padding:0!important;overflow:hidden;background:#111!important}
.journey-visual-wang img{display:block;width:100%;height:100%;min-height:360px;object-fit:cover;object-position:center}
@media(max-width:980px){
  body:has(.hero-v33) .site-header{display:none}
  .hero.hero-v33{height:100svh}
  .hero-v36-controls{top:16px;left:16px;right:16px;gap:8px}
  .hero-v36-brand{font-size:.62rem;letter-spacing:.13em}
  .hero-v36-language{font-size:.62rem;padding:7px 10px}
}

/* v39 — Lucas athlete journey */
#journeys .lucas-story { width: min(100%, 980px); max-width: 980px; margin: 52px auto 0; }
#journeys .lucas-photo { margin: 0; height: 430px; overflow: hidden; background: #eef2f6; }
#journeys .lucas-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; display: block; }
#journeys .lucas-photo figcaption { padding: 10px 18px; font-size: .82rem; color: var(--muted); background: #fff; }
.athlete-identity { display: flex; gap: 18px; align-items: center; margin-bottom: 24px; }
.club-crest { width: 76px; height: 76px; object-fit: contain; flex: 0 0 auto; }
.athlete-identity h3 { margin: 8px 0 4px; }
.athlete-identity .athlete-meta { margin: 0; }
.interview-qa h4 { margin: 28px 0 8px; font-size: 1.05rem; }
.interview-qa p { margin-top: 0; }
@media (max-width: 650px) { #journeys .lucas-photo { height: 280px; } .athlete-identity { align-items: flex-start; } .club-crest { width: 58px; height: 58px; } }


/* V40 — one-click return to homepage */
.back-home-button{
  position:fixed; top:18px; left:18px; z-index:1000;
  display:flex; align-items:center; gap:8px;
  min-height:42px; padding:8px 13px 8px 10px;
  border:1px solid rgba(255,255,255,.22); border-radius:999px;
  background:rgba(13,20,18,.78); color:#fff;
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  box-shadow:0 8px 28px rgba(0,0,0,.18);
  text-decoration:none; font:700 .78rem/1 "DM Sans",sans-serif;
  opacity:0; visibility:hidden; transform:translateY(-7px);
  transition:opacity .2s ease,transform .2s ease,background .2s ease,visibility .2s;
}
.back-home-button.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-home-button:hover{background:rgba(13,20,18,.94)}
.back-home-button:focus-visible{outline:3px solid #fff;outline-offset:3px}
.back-home-icon{display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:rgba(255,255,255,.14);font-size:1.15rem;line-height:1}
@media(max-width:560px){
  .back-home-button{top:12px;left:12px;padding:8px}
  .back-home-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
}
