/* ============================================================================
   Spirit Baton — stylesheet
   Brand: hot pink #ec3d96 · cyan #1ba9c4 · lavender/pink gradients · plum text
   ========================================================================== */

/* ---- Design tokens -------------------------------------------------------*/
:root {
  --pink: #ec3d96;
  --pink-deep: #c9247f;      /* buttons — AA contrast with white */
  --cyan: #1ba9c4;
  --cyan-deep: #0f7f96;
  --plum: #24131f;
  --plum-soft: #5b4451;
  --cream: #fdf7fb;
  --lav: #efe3f6;
  --border: #f0dfe9;
  --card: #ffffff;
  --white: #ffffff;

  --grad-hero: linear-gradient(135deg, #ffd7ec 0%, #f4d9f2 38%, #e3ddf7 70%, #d7ecf5 100%);
  --grad-brand: linear-gradient(120deg, var(--pink) 0%, #b5379b 55%, var(--cyan) 120%);
  --grad-band: linear-gradient(120deg, #c9247f 0%, #8e2f86 55%, #1ba9c4 110%);

  --shadow-sm: 0 2px 8px rgba(75, 20, 55, .07);
  --shadow-md: 0 12px 34px rgba(120, 30, 90, .13);
  --shadow-lg: 0 26px 60px rgba(120, 30, 90, .20);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1140px;

  --serif: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset / base --------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--plum);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pink-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--plum); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 0 0 .4em; }
h3 { font-size: 1.3rem; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ---- Layout helpers ------------------------------------------------------*/
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: linear-gradient(180deg, #fff 0%, var(--lav) 100%); }
.eyebrow {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; font-size: .78rem; color: var(--cyan-deep); margin: 0 0 .8rem;
}
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--plum-soft); }

/* ---- Buttons -------------------------------------------------------------*/
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--pink-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: #b11d70; box-shadow: var(--shadow-lg); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--plum); border-color: rgba(201,36,127,.35); }
.btn--ghost:hover { background: #fff; }
.btn--light { background: #fff; color: var(--pink-deep); }
.btn--on-dark { background: #fff; color: var(--pink-deep); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: rgba(255,255,255,.14); }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }

/* ---- Header / nav --------------------------------------------------------*/
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,247,251,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand svg { width: 34px; height: 34px; }
.brand-name { font-family: var(--serif); font-size: 1.25rem; color: var(--cyan-deep); letter-spacing: -.01em; }
.brand-name b { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--plum); font-weight: 500; font-size: .97rem; }
.nav-links a:hover { color: var(--pink-deep); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--plum); margin: 5px 0; border-radius: 2px; transition: .25s; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-menu {
    display: flex; position: fixed; inset: 68px 0 auto 0; background: var(--cream);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    flex-direction: column; align-items: flex-start; gap: 0; padding: .5rem 1.2rem 1.2rem;
    transform: translateY(-130%); transition: transform .3s ease; z-index: 49;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--border); }
  .nav[data-open="true"] .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav[data-open="true"] .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---- Hero ----------------------------------------------------------------*/
.hero { position: relative; background: var(--grad-hero); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 55% at 82% 12%, rgba(27,169,196,.20), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: .2rem 0 .6rem; }
.hero h1 .accent { color: var(--pink-deep); }
.hero .lead { font-size: 1.2rem; max-width: 33ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--lav);
  border: 6px solid #fff;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.worlds-ribbon {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
  background: rgba(255,255,255,.75); border: 1px solid rgba(201,36,127,.25);
  color: var(--pink-deep); font-weight: 600; font-size: .9rem;
  padding: .45rem .95rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.worlds-ribbon .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(236,61,150,.2); }

/* ---- Worlds band (home) --------------------------------------------------*/
.worlds-band { background: var(--grad-band); color: #fff; position: relative; overflow: hidden; }
.worlds-band::before, .worlds-band::after {
  content: ""; position: absolute; border-radius: 50%; opacity: .16; background: #fff;
}
.worlds-band::before { width: 340px; height: 340px; top: -140px; right: -60px; }
.worlds-band::after { width: 220px; height: 220px; bottom: -120px; left: -40px; }
.worlds-band .container { position: relative; z-index: 1; }
.worlds-band h2 { color: #fff; }
.worlds-band .lead { color: rgba(255,255,255,.9); }
.worlds-flag { font-size: 1.4rem; letter-spacing: .1em; }

/* countdown */
.countdown { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.4rem 0; }
.count-unit {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px; padding: .8rem 1.1rem; min-width: 78px; text-align: center;
}
.count-unit b { display: block; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.count-unit span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; opacity: .85; }

/* thermometer */
.goal { margin-top: 1.4rem; max-width: 520px; }
.goal-bar { height: 20px; background: rgba(255,255,255,.22); border-radius: 999px; overflow: hidden; }
.goal-fill { height: 100%; width: 0; background: linear-gradient(90deg, #ffd84d, #ff8fc4); border-radius: 999px; transition: width 1.4s cubic-bezier(.2,.7,.2,1); }
.goal-meta { display: flex; justify-content: space-between; margin-top: .5rem; font-weight: 600; font-size: .95rem; }

/* ---- Stat row ------------------------------------------------------------*/
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.4rem .6rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--pink-deep); line-height: 1; }
.stat span { font-size: .9rem; color: var(--plum-soft); }

/* ---- Cards / grids -------------------------------------------------------*/
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--pink-deep); }
.card .role { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan-deep); font-weight: 700; margin-bottom: .5rem; }
.card p { font-size: .96rem; color: var(--plum-soft); margin: 0; }

/* about split */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; border: 5px solid #fff; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; list-style: none; padding: 0; }
.pill-list li { background: var(--lav); color: var(--pink-deep); font-weight: 600; font-size: .85rem; padding: .4rem .9rem; border-radius: 999px; }

/* ---- Titles timeline -----------------------------------------------------*/
.titles-wrap { max-width: 780px; margin-inline: auto; }
.year { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: .8rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.year summary { list-style: none; cursor: pointer; padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 1.35rem; color: var(--pink-deep); }
.year summary::-webkit-details-marker { display: none; }
.year summary .count { font-family: var(--sans); font-size: .8rem; font-weight: 700; color: var(--cyan-deep); background: var(--lav); padding: .25rem .7rem; border-radius: 999px; }
.year[open] summary { border-bottom: 1px solid var(--border); }
.year ul { margin: 0; padding: 1rem 1.4rem 1.3rem 2.6rem; color: var(--plum-soft); }
.year li { margin-bottom: .35rem; }

/* ---- Gallery -------------------------------------------------------------*/
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--lav); box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.06); }
.ph { display: grid; place-items: center; width: 100%; height: 100%; color: var(--cyan-deep); background: repeating-linear-gradient(45deg, #f6e7f1, #f6e7f1 12px, #efe0ec 12px, #efe0ec 24px); font-size: .8rem; text-align: center; padding: .5rem; }

/* ---- Practices / Join ----------------------------------------------------*/
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: .9rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .8rem; }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { font-weight: 700; min-width: 92px; color: var(--plum); }

/* ---- Contact -------------------------------------------------------------*/
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.contact-card .role { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan-deep); font-weight: 700; }
.contact-card a { font-weight: 600; font-size: 1.15rem; }

/* forms */
.form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .9rem; font: inherit; color: var(--plum);
  background: var(--cream); border: 1.5px solid var(--border); border-radius: 12px; transition: border .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); }
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--plum-soft); margin-top: .5rem; }
.form-status { margin-top: .8rem; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1a7f4f; }
.form-status.err { color: #c0392b; }

/* ---- Footer --------------------------------------------------------------*/
.site-footer { background: var(--plum); color: #f4e6ef; padding: 3rem 0 2rem; }
.site-footer a { color: #ffc6e4; }
.footer-top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.3rem; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: #f4e6ef; opacity: .85; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.4rem; font-size: .85rem; opacity: .7; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; }

/* ---- Scroll reveal -------------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ----------------------------------------------------------*/
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .split, .two-col { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .contact-cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .count-unit { min-width: 64px; padding: .65rem .8rem; }
}

/* ============================================================================
   WOW-FACTOR ENHANCEMENTS (tasteful) — animated hero, sparkles, shimmer
   wordmark, Worlds seal, credibility strip, champions ribbon, hover polish.
   ========================================================================== */

/* Slowly drifting hero gradient */
.hero { background-size: 220% 220%; animation: heroDrift 24s ease-in-out infinite; }
@keyframes heroDrift { 0%,100% { background-position: 0% 40%; } 50% { background-position: 100% 60%; } }

/* Twinkling sparkles layer (baton shimmer) */
.sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.spark { position: absolute; color: #fff; opacity: 0; text-shadow: 0 0 10px rgba(255,255,255,.9), 0 0 4px rgba(236,61,150,.5); animation: twinkle 5.5s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: 0; transform: scale(.4) rotate(0deg); } 45%,55% { opacity: .9; transform: scale(1) rotate(18deg); } }
.hero-inner { z-index: 2; }

/* Shimmering "shine." wordmark */
.hero h1 .accent {
  background: linear-gradient(100deg, #c9247f 0%, #ec3d96 32%, #ffd6ee 50%, #ec3d96 68%, #c9247f 100%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; animation: shineSweep 6s linear infinite;
}
@keyframes shineSweep { to { background-position: 200% center; } }

/* Pulsing "Worlds 2026" seal (floats on the hero photo) */
.hero-photo { position: relative; }
.seal { position: absolute; top: 16px; left: 16px; width: 112px; height: 112px; z-index: 3; }
.seal__ring { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed rgba(255,255,255,.85); animation: spin 18s linear infinite; }
.seal__core { position: absolute; inset: 8px; border-radius: 50%; overflow: hidden; background: var(--grad-brand); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 6px; box-shadow: var(--shadow-md); animation: pulse 3.2s ease-in-out infinite; }
.seal__core b { font-family: var(--serif); font-size: 1.18rem; line-height: 1; }
.seal__core span { font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; line-height: 1.1; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* "Performed at" credibility strip */
.creds { background: #fff; border-block: 1px solid var(--border); }
.creds__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem 1.2rem; padding: 1.25rem 0; }
.creds__label { font-family: var(--serif); font-style: italic; color: var(--plum-soft); font-size: 1.02rem; }
.creds__pill { display: inline-flex; align-items: center; gap: .45rem; background: var(--lav); color: var(--pink-deep); font-weight: 600; font-size: .92rem; padding: .5rem 1.05rem; border-radius: 999px; transition: transform .15s, box-shadow .2s; }
.creds__pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Elegant champions ribbon (slow marquee) */
.ribbon { overflow: hidden; background: var(--grad-band); color: #fff; }
.ribbon__track { display: inline-flex; white-space: nowrap; padding: .8rem 0; animation: ribbonMove 44s linear infinite; will-change: transform; }
.ribbon:hover .ribbon__track { animation-play-state: paused; }
.ribbon__track span { font-family: var(--serif); font-size: 1.08rem; padding: 0 1.1rem; letter-spacing: .02em; }
.ribbon__track .star { color: #ffd6ee; }
@keyframes ribbonMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Card glow + primary button sheen */
.card:hover { box-shadow: 0 18px 42px rgba(201,36,127,.18); }
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); }
.btn--primary:hover::after { animation: sheen .85s ease; }
@keyframes sheen { to { left: 140%; } }

@media (max-width: 560px) {
  .seal { width: 92px; height: 92px; top: 12px; left: 12px; }
  .seal__core b { font-size: 1rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero, .seal__ring, .seal__core, .ribbon__track { animation: none !important; }
  .hero h1 .accent { animation: none; -webkit-text-fill-color: var(--pink-deep); color: var(--pink-deep); background: none; }
  .spark { display: none; }
}

/* ============================================================================
   MOBILE POLISH — center the layout on phones so nothing feels off-balance
   or edge-hung. Body copy (bios, key/value lists) stays left for readability.
   ========================================================================== */
@media (max-width: 640px) {
  /* center hero, Worlds band, and About */
  .hero-inner, .worlds-band .split, #about .split { text-align: center; }
  .hero .lead, #about .lead, #about p, .goal { margin-inline: auto; }
  .hero-cta, .countdown, .creds__row, .pill-list, .goal-meta { justify-content: center; }
  .goal-meta { gap: 1.2rem; }

  /* center any section header that isn't already centered */
  .section-head:not(.center) { text-align: center; margin-inline: auto; }

  /* center the contact "reach a person" cards */
  .contact-card { text-align: center; }

  /* keep long display words from ever clipping the edge */
  .hero h1, .section-head h2 { overflow-wrap: break-word; }

  /* give hero CTAs comfortable, centered sizing */
  .hero-cta .btn { flex: 0 1 auto; }
}

/* Coach avatars — photo-ready, with an initials fallback until headshots arrive */
.coach-avatar { width: 74px; height: 74px; border-radius: 50%; margin-bottom: .9rem; display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; background: var(--grad-brand); overflow: hidden; box-shadow: var(--shadow-sm); }
.coach-avatar img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { #coaches .card { text-align: center; } .coach-avatar { margin-inline: auto; } }
