:root {
  --ink: #111111;
  --paper: #f3f4f5;
  --accent: #0f4cbe;
  --accent-soft: #90b7ff;
  --line: #d8dbe2;
  --gold: #f3bf2d;
  --hero-athlete-opacity: 1;
  --bg-athlete-opacity: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

.home-cover {
  position: relative;
}

.home-cover::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("Van Ginkel no bkg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: min(64vw, 740px);
  opacity: var(--bg-athlete-opacity);
  transition: opacity 0.12s linear;
}

main {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
.cover-topline,
.eyebrow,
.scroll-banner p {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.floating-header {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 30;
}

.floating-header-right {
  left: auto;
  right: 14px;
  top: 12px;
  z-index: 32;
}

.home-cover .floating-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-cover .floating-header-right {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.home-cover.reveal-ui .floating-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 5px;
  align-content: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.slideout-menu {
  margin-top: 12px;
  padding: 12px;
  width: 220px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.slideout-menu.open {
  display: flex;
}

.slideout-menu a {
  font-weight: 700;
}

.floating-header-right .slideout-menu {
  position: absolute;
  right: 0;
  margin-top: 8px;
}

.scroll-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-120%);
  transition: transform 0.28s ease;
  z-index: 25;
  background: linear-gradient(90deg, #0a0a0a, #1f1f1f);
  color: #ffffff;
  border-bottom: 2px solid var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
}

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 26;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  min-height: 69px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(8px);
  transform: translate3d(0, -120%, 0);
  transition: transform 0.28s ease;
}

.scroll-header.visible {
  transform: translate3d(0, 0, 0);
}

.scroll-header img {
  position: absolute;
  left: 8px;
  top: 58%;
  transform: translateY(-50%);
  height: 116px;
  width: auto;
  object-fit: contain;
}

.scroll-header-toggle {
  display: none;
}

.scroll-header-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.8vw, 22px);
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}


.scroll-header-nav a {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  padding: 4px 6px;
  border-radius: 4px;
}

.scroll-header-nav a.banner-donate-link {
  background: #f0c040;
  color: #1a1a1a;
  font-weight: 700;
}

.scroll-header-nav a.banner-donate-link:hover {
  background: #ffd966;
}

.scroll-header-nav a.is-active {
  background: #0f4cbe;
  color: #ffffff;
}

.scroll-header-nav a.banner-donate-link.is-active {
  background: #f0c040;
  color: #1a1a1a;
}

.home-cover .scroll-banner {
  opacity: 0;
  pointer-events: none;
}

.home-cover .scroll-header {
  pointer-events: none;
}

.home-cover.reveal-ui .scroll-header {
  pointer-events: auto;
}

.home-cover.reveal-ui .scroll-banner {
  opacity: 1;
  pointer-events: auto;
}

.scroll-banner.visible {
  transform: translateY(0);
}

.scroll-banner p {
  margin: 0;
  font-size: 1.2rem;
}

.scroll-banner a {
  border: 1px solid #ffffff;
  padding: 6px 12px;
  font-weight: 700;
}

.cover-hero {
  min-height: 100vh;
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.camp-dates-bar {
  background: #0f1f3d;
  color: #ffffff;
  padding: 22px 24px;
  width: 100%;
}

.camp-dates-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.camp-dates-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #f0c040;
  white-space: nowrap;
  flex-shrink: 0;
}

.camp-dates-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.camp-date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.camp-date-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.camp-date-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}

.camp-date-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.camp-dates-cta {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  background: #f0c040;
  color: #0f1f3d;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.camp-dates-cta:hover {
  background: #ffd966;
}

.cover-topline {
  width: fit-content;
  margin: 0 auto;
  border: 2px solid var(--line);
  padding: 6px 18px;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  background: rgba(255, 255, 255, 0.8);
}

.logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  margin-top: 0;
  z-index: 1;
  pointer-events: none;
}

.cover-logo {
  width: 95vw;
  max-width: 1600px;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.cover-logo-mobile {
  display: none;
}

.mobile-hero-video-wrap {
  display: none;
}

.mobile-hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.cover-athlete {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(900px, 72vw);
  height: 92vh;
  object-fit: contain;
  object-position: bottom center;
  z-index: 3;
  animation: rise-in 0.9s ease both;
  opacity: var(--hero-athlete-opacity);
}

.hero-side-words {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-side-words span {
  position: absolute;
  bottom: clamp(12px, 4vh, 48px);
  transform: none;
  font-size: clamp(1.85rem, 5.1vw, 4.8rem);
  color: rgba(17, 17, 17, 0.88);
  text-shadow: none;
}

.left-word {
  left: calc(clamp(14px, 4vw, 54px) + 92px);
}

.right-word {
  right: calc(clamp(14px, 4vw, 54px) + 177px);
}

.ghost {
  position: absolute;
  bottom: 2vh;
  width: min(760px, 55vw);
  height: min(760px, 55vw);
  background-image: url("van-ginkel.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(100%);
}

.athlete-ghost-left {
  left: 12%;
  transform: scale(0.88);
}

.athlete-ghost-right {
  right: 10%;
  transform: scale(0.86);
}

.cover-story {
  position: absolute;
  z-index: 4;
  max-width: 280px;
}

.cover-kicker {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.cover-story-left {
  left: 5vw;
  bottom: 16vh;
}

.cover-story-left h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 0.9;
}

.cover-story-left p {
  margin: 6px 0 0;
  font-size: 1.15rem;
}

.cover-story-right {
  right: 3vw;
  top: 30vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cover-story-right a {
  border-left: 3px solid var(--accent);
  padding: 7px 10px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.cover-story-right a:hover {
  transform: translateX(-6px);
}

.cover-story-right span {
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

.hero-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.btn {
  padding: 12px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.tweet-fallback-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #555;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--ink);
}

.content-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.section-header {
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.section-header h2 {
  margin: 3px 0 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

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

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
  min-height: 170px;
}

.donate-options {
  margin-top: 16px;
}

.donate-quick-actions {
  margin: 20px 0 10px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.2);
}

.payment-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.venmo-btn {
  background: linear-gradient(135deg, #008cff, #0a6edb);
}

.square-btn {
  background: linear-gradient(135deg, #171717, #2a2a2a);
}

.support-path-grid {
  margin-bottom: 22px;
}

.donate-option {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.donate-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9, 16, 34, 0.5), rgba(12, 12, 12, 0.34));
  z-index: 0;
}

.donate-option > * {
  position: relative;
  z-index: 1;
}

.donate-option h3,
.donate-option p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.individual-donation {
  background-image: url("donate1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company-sponsorship {
  background-image: url("Sponsor golf.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donate-option .btn {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.sponsorship-tier-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

#sponsorship-tiers {
  scroll-margin-top: 90px;
}

.sponsorship-tier-grid {
  align-items: start;
}

.sponsorship-tier-card {
  min-height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  transform-style: preserve-3d;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.sponsorship-tier-card::before {
  content: "";
  position: absolute;
  inset: -120% 35% 100% -35%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.45s ease;
  transform: translateX(-18%) rotate(10deg);
  pointer-events: none;
}
.sponsorship-tier-card:hover {
  transform: translateY(-9px) scale(1.02);
  filter: brightness(1.06) saturate(1.08);
}

.sponsorship-tier-card:hover::before {
  opacity: 1;
  transform: translateX(135%) rotate(10deg);
}

.sponsorship-tier-card h3,
.sponsorship-tier-card li,
.sponsorship-tier-card p {
  position: relative;
  z-index: 1;
}

.sponsorship-tier-card h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.tier-price {
  margin: -4px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(1.62rem, 2.9vw, 2.2rem);
}

.silver-tier {
  background: linear-gradient(145deg, #f4f5f7 0%, #d7dbe0 45%, #b7bdc6 100%);
  border: 1px solid rgba(116, 124, 136, 0.55);
  box-shadow: 0 10px 24px rgba(136, 142, 152, 0.2);
}

.silver-tier h3 {
  color: #303641;
}

.gold-tier {
  background: linear-gradient(145deg, #fff2b0 0%, #f1c75b 42%, #d7961d 100%);
  border: 1px solid rgba(175, 120, 8, 0.55);
  box-shadow: 0 10px 24px rgba(197, 145, 28, 0.24);
}

.gold-tier h3 {
  color: #5e3900;
}

.platinum-tier {
  background: linear-gradient(145deg, #f7fbff 0%, #dce4ef 32%, #bcc7d5 58%, #f6fbff 100%);
  border: 1px solid rgba(138, 149, 167, 0.7);
  box-shadow: 0 14px 32px rgba(151, 165, 184, 0.34);
}

.platinum-tier h3 {
  color: #263243;
}

.platinum-tier::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.65), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.45), transparent 18%);
  pointer-events: none;
}

.platinum-tier:hover {
  box-shadow: 0 20px 42px rgba(151, 165, 184, 0.5), 0 0 26px rgba(211, 223, 238, 0.55);
}

.tier-note {
  margin: 8px 0;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.7);
}

.editorial-links {
  display: grid;
  gap: 14px;
}

.editorial-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.94;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  padding-bottom: 8px;
}

.editorial-links a:hover {
  color: var(--accent);
}

.legacy-coach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.meet-coaches-section {
  padding-top: 56px;
  background-image: url("Van Ginkel smoke.PNG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(17, 17, 17, 0.15);
}

.meet-coaches-section .section-header h2 {
  color: #ffffff;
}

.meet-coaches-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(15, 76, 190, 0.42);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.meet-coaches-link:hover {
  background: rgba(15, 76, 190, 0.72);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.celebrity-coach-feature-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.celebrity-coach-feature-link:hover .celebrity-coach-feature,
.celebrity-coach-feature-link:focus-visible .celebrity-coach-feature {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

.celebrity-coach-feature {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 18, 26, 0.52);
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.celebrity-coach-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: #ffffff;
}

.celebrity-role {
  margin: 4px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  color: #9bc3ff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.celebrity-coach-copy p {
  color: #f4f7ff;
}

.coach-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.coach-staff-card {
  min-height: 100%;
}

.coach-photo-placeholder {
  width: 100%;
  height: clamp(160px, 20vw, 220px);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(17, 17, 17, 0.35);
  background: repeating-linear-gradient(
    -45deg,
    rgba(17, 17, 17, 0.06),
    rgba(17, 17, 17, 0.06) 10px,
    rgba(255, 255, 255, 0.42) 10px,
    rgba(255, 255, 255, 0.42) 20px
  );
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  color: rgba(17, 17, 17, 0.75);
}

.coach-staff-photo {
  width: 100%;
  height: clamp(160px, 20vw, 220px);
  margin-bottom: 10px;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.2);
  display: block;
}

.coach-staff-card h3 {
  margin: 0 0 6px;
}

.coach-staff-card p {
  margin: 0 0 8px;
}

.coach-staff-card ul {
  margin: 0;
  padding-left: 18px;
}

.legacy-coach-card {
  display: block;
  width: 100%;
  min-height: clamp(300px, 36vw, 420px);
  padding: 0;
  text-align: left;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  perspective: 1200px;
}

.legacy-card-inner {
  display: block;
  position: relative;
  width: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.58s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.legacy-coach-card.is-flipped .legacy-card-inner {
  transform: rotateY(180deg);
}

.legacy-card-face {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.16);
  overflow: hidden;
  backface-visibility: hidden;
}

.legacy-card-front {
  display: block;
  z-index: 2;
}

.legacy-card-back {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(165deg, #ffffff 0%, #eef4ff 100%);
  transform: rotateY(180deg);
}

.legacy-card-badge {
  display: none;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0f4cbe;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legacy-card-back h3 {
  margin: 4px 0 2px;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.legacy-card-back p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.legacy-card-front img {
  width: 100%;
  height: clamp(220px, 30vw, 340px);
  object-fit: cover;
  display: block;
}

.legacy-card-front .legacy-coach-meta {
  padding: 12px 12px 14px;
}

.legacy-card-front .legacy-coach-meta h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.legacy-card-front .legacy-coach-meta p {
  margin: 4px 0 0;
  font-size: 0.98rem;
}

.legacy-coach-card:focus-visible {
  outline: 3px solid #0f4cbe;
  outline-offset: 3px;
}

.legacy-coach-card:hover {
  transform: translateY(-4px);
}

.legacy-coach-card:hover .legacy-card-face {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
}

@media (hover: none) {
  .legacy-coach-card:hover {
    transform: none;
  }
}

.legacy-coach-meta {
  padding: 12px 12px 14px;
}

.legacy-coach-meta h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.legacy-coach-meta p {
  margin: 4px 0 0;
  font-size: 0.98rem;
}

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

blockquote {
  margin: 0;
  padding: 8px 0;
  border-left: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1.3;
}

.clean-quotes blockquote {
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
}

.mission-content {
  max-width: 880px;
}

.mission-section-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mission-section-link:hover,
.mission-section-link:focus-visible {
  text-decoration: none;
}

.mission-content p {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.35;
  margin: 0 0 14px;
}

.mission-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 10px;
}

.mission-photo-grid img {
  width: 100%;
  height: clamp(160px, 18vw, 220px);
  object-fit: cover;
  display: block;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.mission-content .btn {
  margin-top: 8px;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.sponsor-logos img {
  width: 100%;
  height: 95px;
  object-fit: contain;
  background: transparent;
  border: none;
  padding: 0;
}

.sponsor-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.sponsor-page-heading h1 {
  margin: 0;
}

.sponsor-register-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #f3b100 0%, #ff8a00 45%, #ff5b2e 100%);
  box-shadow: 0 10px 26px rgba(255, 122, 24, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: sponsor-cta-glow 1.8s ease-in-out infinite;
}

.sponsor-register-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(255, 122, 24, 0.42);
}

.sponsor-registration-intro {
  max-width: 860px;
  margin-bottom: 26px;
}

.sponsor-form-note {
  color: rgba(17, 17, 17, 0.72);
}

.sponsor-registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.sponsor-form-card {
  padding: 26px;
}

.sponsor-intake-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsor-intake-form label,
.form-fieldset {
  display: grid;
  gap: 8px;
}

.sponsor-intake-form label > span,
.form-fieldset legend {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
}

.sponsor-intake-form input,
.sponsor-intake-form select,
.sponsor-intake-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #ffffff;
}

.sponsor-intake-form input[type="file"] {
  padding: 10px 12px;
}

.sponsor-intake-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-fieldset {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  padding: 16px;
}

.radio-grid {
  display: grid;
  gap: 12px;
}

.tier-radio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-method-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 12px;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  outline: 2px solid #0f4cbe;
  outline-offset: 2px;
}

.choice-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.choice-detail {
  font-size: 0.95rem;
}

.custom-tier-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f1eb 100%);
}

.payment-choice-card {
  background: #f8fafc;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.sponsor-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.sponsor-side-panel {
  display: grid;
  gap: 18px;
}

.sponsor-help-card ul,
.sponsor-payment-card ul {
  margin: 0;
  padding-left: 20px;
}

.sponsor-pay-actions {
  margin-top: 16px;
}

.sponsor-submit-wrap {
  max-width: 860px;
}

.sponsor-submit-card {
  text-align: center;
  padding: clamp(24px, 4vw, 42px);
}

.sponsor-submit-actions {
  margin-top: 20px;
}

.sponsor-check-mailing {
  margin: 22px auto 10px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 10px;
  max-width: 420px;
  background: #f8f9fb;
}

.sponsor-check-mailing h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.sponsor-check-mailing p {
  margin: 0;
}

.sponsor-submit-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sponsor-custom-row input:disabled {
  background: #f2f4f7;
  color: rgba(17, 17, 17, 0.45);
}

.logo-email-section {
  background: #f8f9fa;
  border-left: 4px solid #0f4cbe;
  padding: 14px 16px;
  border-radius: 8px;
  margin-top: 6px;
}

.logo-email-section h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.logo-email-section p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.logo-email-section a {
  color: #0f4cbe;
  text-decoration: none;
  font-weight: 500;
}

.logo-email-section a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .sponsor-registration-layout {
    grid-template-columns: 1fr;
  }

  .two-column-grid,
  .tier-radio-grid,
  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-form-card {
    padding: 18px;
  }
}

.clean-sponsor-logos {
  align-items: center;
}

.gallery-grid img {
  height: clamp(120px, 18vw, 190px);
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.16);
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 36px 64px;
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-image {
  width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #111111;
}

.lightbox-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(18, 18, 18, 0.75);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close {
  right: 12px;
  top: 12px;
}

body.lightbox-open {
  overflow: hidden;
}

.registration-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 2px solid var(--ink);
}

.registration-cta-wrap {
  margin: 18px 0 22px;
  text-align: center;
}

.registration-cta {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #0f4cbe 0%, #1976ff 50%, #59a6ff 100%);
  box-shadow: 0 10px 26px rgba(15, 76, 190, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: register-glow 1.7s ease-in-out infinite;
}

.registration-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(15, 76, 190, 0.45);
}

.registration-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 20px;
}

.registration-photo-strip img {
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.15);
}

.page-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 20px 70px;
}

.page-wrap h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 10px;
}

.page-wrap p,
.page-wrap li {
  font-size: 1.1rem;
}

.mission-hero-text {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.mission-lead {
  font-size: 1.22rem !important;
  color: #333;
  line-height: 1.7;
}

.mission-section {
  max-width: 780px;
  margin: 0 auto 52px;
}

.mission-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: #0f1f3d;
}

.mission-section p {
  margin-bottom: 16px;
}

.mission-list {
  margin-top: 16px;
  padding-left: 22px;
}

.mission-list li {
  margin-bottom: 8px;
}

.mission-section-highlight {
  background: #0f1f3d;
  color: #ffffff;
  border-radius: 10px;
  padding: 40px 40px 36px;
  max-width: 900px;
}

.mission-section-highlight h2 {
  color: #f0c040;
}

.mission-section-highlight p {
  color: rgba(255,255,255,0.88);
}

.mission-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mission-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto 52px;
  max-width: 1100px;
}

.mission-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.mission-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 auto 52px;
  max-width: 900px;
}

.mission-photo-pair img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

@media (min-width: 701px) and (max-width: 1100px) {
  .legacy-coach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coach-staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-coach-card {
    min-height: 390px;
  }

  .legacy-card-front img,
  .coach-staff-photo {
    object-position: center top;
  }

  .legacy-card-front img {
    height: 270px;
  }

  .coach-staff-photo {
    height: 260px;
  }
}

@media (max-width: 700px) {
  .mission-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-photo-pair {
    grid-template-columns: 1fr;
  }

  .mission-section-highlight {
    padding: 28px 20px;
  }
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.registration-info-grid ul {
  margin: 0;
  padding-left: 22px;
}

.registration-info-grid li {
  margin-bottom: 12px;
  line-height: 1.45;
}

.registration-info-grid li:last-child {
  margin-bottom: 0;
}

.video-embed {
  width: min(860px, 100%);
  margin: 10px 0 20px;
  aspect-ratio: 560 / 314;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.tweet-embed-wrap {
  max-width: 550px;
  margin: 10px 0 24px;
}

.video-fallback-link {
  position: relative;
  display: block;
  width: min(860px, 100%);
  margin: 10px 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  overflow: hidden;
  text-decoration: none;
}

.video-fallback-link img {
  width: 100%;
  height: auto;
  display: block;
}

.video-fallback-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.video-fallback-link:hover .video-fallback-overlay,
.video-fallback-link:focus-visible .video-fallback-overlay {
  background: rgba(15, 76, 190, 0.85);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translate(-50%, 16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes register-glow {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(15, 76, 190, 0.38);
  }
  50% {
    box-shadow: 0 14px 34px rgba(15, 76, 190, 0.56);
  }
}

@keyframes sponsor-cta-glow {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(255, 122, 24, 0.34);
  }
  50% {
    box-shadow: 0 14px 34px rgba(255, 122, 24, 0.52);
  }
}

@keyframes mobile-video-intro-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 900px) {
  .scroll-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    top: 0;
    padding: calc(8px + env(safe-area-inset-top)) 12px 8px;
    min-height: calc(60px + env(safe-area-inset-top));
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
  }

  .scroll-header.visible {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .scroll-header img {
    position: static;
    transform: none;
    height: 48px;
    width: auto;
    left: auto;
    top: auto;
    flex-shrink: 0;
  }

  .scroll-header-nav {
    flex: 1;
    justify-content: center;
    gap: 8px;
  }

  .scroll-header-nav a:not([href="registration.html"]):not(.banner-donate-link) {
    display: none;
  }

  .scroll-header-nav a {
    font-size: 0.95rem;
    padding: 6px 9px;
  }

  .scroll-header-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 6px 4px;
    cursor: pointer;
  }

  .scroll-header-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111111;
    border-radius: 2px;
  }


  .logo-wrap {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(-30px);
    animation: none;
  }

  .hero-side-words {
    display: none !important;
  }

  .mobile-hero-video-wrap {
    display: none;
  }

  .mobile-hero-video {
    width: min(96vw, 645px);
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  }

  .cover-logo {
    width: min(86vw, 86vh);
    height: auto;
  }

  .cover-logo-desktop {
    display: none;
  }

  .cover-logo-mobile {
    display: block;
  }

  .cover-athlete {
    width: 96vw;
    opacity: 1;
    bottom: 0;
  }

  .hero-side-words span {
    bottom: 10px;
    font-size: clamp(1.6rem, 8vw, 2.6rem);
  }

  .left-word {
    left: 8px;
  }

  .right-word {
    right: 8px;
  }

  .ghost {
    display: none;
  }

  .cover-story-left,
  .cover-story-right {
    position: static;
    max-width: none;
  }

  .cover-story-right {
    margin-top: 16px;
  }

  .cover-hero {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 90px;
  }

  .hero-cta {
    position: static;
    transform: none;
    margin-top: auto;
    flex-wrap: wrap;
  }

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

  .sponsor-page-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .sponsor-register-cta {
    width: 100%;
    text-align: center;
  }

  .payment-btn {
    width: 100%;
    max-width: 380px;
  }

  .gallery-lightbox {
    padding: 16px 8px;
  }

  .lightbox-btn {
    width: 42px;
    height: 42px;
  }

  .legacy-coach-grid {
    grid-template-columns: 1fr;
  }

  .celebrity-coach-feature {
    text-align: center;
  }

  .coach-staff-grid {
    grid-template-columns: 1fr;
  }

  .mission-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-photo-strip {
    grid-template-columns: 1fr;
  }

  .scroll-banner {
    justify-content: space-between;
    gap: 10px;
    padding-right: 10px;
  }

  .scroll-banner p {
    font-size: 1rem;
  }
}

