/* Rhyne Park Renegades — dark theme */

:root {
  --bg: #24242a;
  --band: #1c1c22;
  --panel: #2e2e35;
  --panel-alt: #383840;
  --purple: #9c3fb0;
  --purple-hi: #b552c9;
  --purple-deep: #5f2570;
  --green: #83c65e;
  --green-hi: #9bd678;
  --text: #f3f1f5;
  --text-soft: #d6d3dd;
  --text-mid: #c9c6d1;
  --muted: #b6b3bf;
  --faint: #7d7a86;
  --border: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--green); }
a:hover { color: var(--green-hi); }

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(30, 30, 36, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-strong);
}

.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav__brand img {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 6px;
  transition: all 0.15s ease;
  color: var(--text-mid);
  background: transparent;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #fff;
  background: rgba(156, 63, 176, 0.28);
}

.site-nav__link--active {
  color: #fff;
  background: var(--purple);
}

.site-nav__link--active:hover,
.site-nav__link--active:focus-visible {
  color: #fff;
  background: var(--purple-hi);
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.site-nav__toggle:hover,
.site-nav__toggle:focus-visible {
  background: rgba(156, 63, 176, 0.28);
}

.site-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav--open .site-nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav--open .site-nav__toggle-bar:nth-child(2) { opacity: 0; }
.site-nav--open .site-nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Type helpers ---------- */

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn--purple { color: #fff; background: var(--purple); }
.btn--purple:hover, .btn--purple:focus-visible { color: #fff; background: var(--purple-hi); }

.btn--green { color: var(--purple-deep); background: var(--green); }
.btn--green:hover, .btn--green:focus-visible { color: var(--purple-deep); background: var(--green-hi); }

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--text); background: rgba(255, 255, 255, 0.16); }

.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--glass:hover, .btn--glass:focus-visible { color: #fff; background: rgba(255, 255, 255, 0.22); }

/* ---------- Page header band ---------- */

.page-header {
  background: var(--band);
  border-bottom: 1px solid var(--border-soft);
}

.page-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 60px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0;
  max-width: 820px;
}

.page-header__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 620px;
  margin: 16px 0 0;
}

/* ---------- Cards & image slots ---------- */

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.img-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--panel-alt), #2c2c33);
  color: var(--faint);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

/* ---------- Home: hero ---------- */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 20, 24, 0.95) 0%, rgba(20, 20, 24, 0.82) 46%, rgba(20, 20, 24, 0.5) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(131, 198, 94, 0.5);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
  max-width: 820px;
}

.hero h1 .grit { color: var(--purple-hi); }
.hero h1 .pride { color: var(--green); }

.hero__lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 0 34px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Home: stat strip ---------- */

.stats {
  background: var(--purple);
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #fff;
}

.stats__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e6cdf0;
  margin-top: 6px;
}

/* Highlights page: one card per division, laid out on the teams grid */
.highlight-card .team-card__photo {
  height: 240px;
}

/* Celebration shots keep faces mid-frame, not at the top like team banners */
.highlight-card .team-card__photo .slot-img {
  object-position: 50% 60%;
}

.highlight-card__summary {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 4px;
}

.highlight-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-hi);
  margin: 22px 0 10px;
}

.highlight-card__label:first-child {
  margin-top: 0;
}

.highlight-card__result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
}

.highlight-card__result + .highlight-card__result {
  border-top: 1px solid var(--border);
}

.highlight-card .expect__num {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 14px;
}

.highlight-card__result h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin: 2px 0 2px;
}

.highlight-card__result p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.highlight-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 12px;
  background: var(--purple);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.highlight-card__stats .stats__value {
  font-size: 26px;
}

.highlight-card__stats .stats__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.highlight-card__award {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  padding: 5px 0;
}

.highlight-card__check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Home: pillars ---------- */

.pillars {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}

.pillars__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.pillars__intro .section-title { font-size: clamp(32px, 4vw, 48px); }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  padding: 32px 28px;
}

.pillar__num {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(131, 198, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--green);
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------- Home: teams preview ---------- */

.teams-preview {
  background: var(--band);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.teams-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}

.teams-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.teams-preview__head .section-title { font-size: clamp(32px, 4vw, 48px); line-height: 1; }

.teams-preview__all {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green);
}

.teams-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-tile {
  text-decoration: none;
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.team-tile:hover,
.team-tile:focus-visible {
  border-color: rgba(156, 63, 176, 0.6);
}

.team-tile__age {
  height: 120px;
  background: linear-gradient(135deg, var(--purple), #6a2a7a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-tile__age span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  color: #fff;
  letter-spacing: 0.02em;
}

.team-tile__body { padding: 20px; }

.team-tile__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 4px;
}

.team-tile__body p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ---------- CTA panels ---------- */

.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px;
}

.cta__panel {
  background: linear-gradient(120deg, var(--purple), var(--purple-deep));
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__panel h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #fff;
}

.cta__panel p {
  font-size: 19px;
  line-height: 1.55;
  color: #f0e2f5;
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About ---------- */

.about-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.about-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 16px;
}

.about-intro p:last-child { margin-bottom: 0; }

.about-intro__photo {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.values {
  background: var(--band);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.values__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.values__inner .section-title {
  font-size: clamp(30px, 4vw, 44px);
  text-align: center;
  margin-bottom: 48px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 28px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.expect {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.expect .section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 34px;
}

.expect__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expect__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
}

.expect__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.expect__row h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.expect__row p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.expect__cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Teams ---------- */

.teams {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.teams__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.team-card__photo {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.team-card__age {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  padding: 6px 16px;
  border-radius: 8px;
  pointer-events: none;
}

/* Cards with an open roster spot get an accent border plus a banner across the
   bottom of the photo — a small corner pill got lost against busy team shots. */
.team-card--openings {
  border-color: rgba(131, 198, 94, 0.55);
  box-shadow: 0 0 0 1px rgba(131, 198, 94, 0.28), 0 10px 30px rgba(0, 0, 0, 0.28);
}

.team-card__openings {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #14210c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.team-card__openings::before,
.team-card__openings::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14210c;
  opacity: 0.55;
  flex: none;
}

.team-card__body { padding: 28px 30px; }

.team-card__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.team-card__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.team-card__body > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}

.team-card__meta {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.team-card__meta-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.team-card__meta-value {
  font-size: 15px;
  color: #e4e1e9;
  font-weight: 500;
}

.roster-callout--lead {
  margin-top: 0;
  margin-bottom: 44px;
}

.roster-callout {
  background: var(--panel);
  border: 1px dashed rgba(131, 198, 94, 0.4);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.roster-callout h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.roster-callout p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 24px;
}

/* ---------- Coaches ---------- */

.coaches {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.coaches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coach-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.coach-card__photo {
  aspect-ratio: 1 / 1;
  width: min(240px, 70%);
  margin: 24px auto 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--panel-alt);
}

.coach-card__body { padding: 22px 24px; }

.coach-card__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 3px;
}

.coach-card__role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.coach-card__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.coach-cta {
  background: linear-gradient(120deg, var(--purple), var(--purple-deep));
  border-radius: 16px;
  padding: 44px;
  text-align: center;
  margin-top: 44px;
}

.coach-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #fff;
}

.coach-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: #f0e2f5;
  max-width: 520px;
  margin: 0 auto 24px;
}

/* ---------- Tryouts ---------- */

.openings {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}

.openings .section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 40px;
}

.openings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.openings__grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.opening {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  border-radius: 16px;
  padding: 36px;
}

.opening__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e6cdf0;
  margin-bottom: 10px;
}

.opening h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #fff;
}

.opening__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opening__fact {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: #f0e2f5;
  font-size: 16px;
}

.opening__fact span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  width: 70px;
  flex-shrink: 0;
}

.opening .btn {
  margin-top: 26px;
  font-size: 16px;
  padding: 13px 26px;
}

.opening__flyer {
  display: block;
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s ease;
}

.opening__flyer:hover,
.opening__flyer:focus-visible {
  border-color: var(--green);
}

.opening__flyer img {
  display: block;
  width: 100%;
  height: auto;
}

.bring-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.bring {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.bring h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

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

.bring__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bring__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(131, 198, 94, 0.2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

.bring__item span:last-child {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
}

.registration {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.registration .section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 40px;
}

.registration__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 26px 24px;
}

.step-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--purple);
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.registration__cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Sponsors ---------- */

.sponsor-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}

.sponsor-grid-section .section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  text-align: center;
  margin-bottom: 40px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sponsor-slot {
  aspect-ratio: 3 / 2;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.tiers {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.tiers .section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 12px;
}

.tiers__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mid);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tier {
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.tier--allstar { border-color: rgba(131, 198, 94, 0.5); }
.tier--mvp { border-color: rgba(181, 82, 201, 0.6); }

.tier__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.tier--allstar .tier__name { color: var(--green); }
.tier--mvp .tier__name { color: var(--purple-hi); }

.tier__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 22px;
}

.tier__perks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.tier__perk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
}

.tier__perk span {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.tier .btn {
  margin-top: 26px;
  text-align: center;
  font-size: 16px;
  padding: 13px;
}

/* ---------- Contact ---------- */

.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
}

.contact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
}

.contact-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.contact-card a {
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.contact-card a:hover { color: var(--green-hi); }

.contact__form-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
}

.contact__form-panel h2 { margin-bottom: 22px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--purple);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--faint);
}

.contact-form .btn {
  font-size: 17px;
  padding: 15px;
}

.contact__success {
  background: rgba(131, 198, 94, 0.14);
  border: 1px solid rgba(131, 198, 94, 0.5);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
}

.contact__success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 6px;
}

.contact__success p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
}

.contact__error {
  background: rgba(217, 83, 79, 0.1);
  border: 1px solid rgba(217, 83, 79, 0.4);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
  margin-bottom: 20px;
}

.contact__error h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #d9534f;
  margin: 0 0 6px;
}

.contact__error p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--band);
  border-top: 1px solid var(--border-strong);
  color: var(--muted);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.site-footer__blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 340px;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer__links a {
  color: #cbc8d2;
  text-decoration: none;
  font-size: 15px;
}

.site-footer__links a:hover { color: var(--green-hi); }

.site-footer__legal {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--faint);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .coaches__grid { grid-template-columns: repeat(2, 1fr); }
  .teams-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .registration__grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .site-nav__toggle { display: flex; }

  .site-nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    order: 3;
    padding-top: 8px;
    border-top: 1px solid var(--border-strong);
    margin-top: 12px;
  }

  .site-nav--open .site-nav__links { display: flex; }

  .site-nav__link { padding: 12px 14px; }

  .pillars__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .tiers__grid { grid-template-columns: 1fr; }
  .teams__grid { grid-template-columns: 1fr; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .openings__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .coaches__grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
  .cta__panel { padding: 48px 24px; }
}

@media (max-width: 520px) {
  .teams-preview__grid { grid-template-columns: 1fr; }
  .registration__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .site-nav__brand img { height: 44px; }
}

/* ---------- Slot images (CMS-uploaded photos fill the placeholder slots) ---------- */

.slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Wide team-card banners crop tall photos; favor the top where faces are */
.team-card__photo .slot-img {
  object-position: 50% 25%;
}

/* Square coach headshots: favor the top so tightly-framed heads aren't clipped */
.coach-card__photo .slot-img {
  object-position: 50% 10%;
}

/* About-page image is a text graphic — show all of it instead of cropping */
.about-intro__photo {
  background: #000;
}
.about-intro__photo .slot-img {
  object-fit: contain;
}

.sponsor-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
}

a.sponsor-slot { display: block; }

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

/* ---------- News ---------- */

.news-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 0;
}

.news-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.news-preview__head .section-title { font-size: clamp(32px, 4vw, 48px); line-height: 1; }

.news-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

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

.news-card {
  text-decoration: none;
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(156, 63, 176, 0.6);
}

.news-card__image {
  height: 160px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body { padding: 20px 22px; }

.news-card__date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.news-card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 6px;
}

.news-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ---------- News post ---------- */

.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}

.post__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  margin-bottom: 32px;
}

.post__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 18px;
}

.post__body h2,
.post__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin: 32px 0 12px;
}

.post__body h2 { font-size: 28px; }
.post__body h3 { font-size: 22px; }

.post__body ul,
.post__body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.7;
}

.post__body li { margin-bottom: 6px; }

.post__body img {
  max-width: 100%;
  border-radius: 12px;
}

.post__back { margin-top: 36px; }

@media (max-width: 980px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
}
