:root {
  --navy: #07162f;
  --navy-2: #0c2348;
  --orange: #ff5a1f;
  --orange-2: #ff7a36;
  --cream: #f7f1e8;
  --white: #ffffff;
  --ink: #111827;
  --muted: #637083;
  --line: #dce2e8;
  --shadow: 0 24px 60px rgba(7, 22, 47, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,22,47,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: .9;
}
.brand-mark { width: 44px; color: var(--orange); }
.brand strong, .brand small {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: .09em;
}
.brand strong { font-size: 22px; }
.brand small { color: var(--orange); font-size: 16px; margin-top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  padding: 10px 16px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,90,31,.25), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
  padding-top: 70px;
  padding-bottom: 86px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}
.eyebrow.dark { color: var(--orange); }
.hero h1, h2, h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: .98;
}
.hero h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 106px);
  letter-spacing: -.03em;
}
.hero h1 span { color: var(--orange); }
.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(255,90,31,.28);
}
.button-primary:hover { background: var(--orange-2); }
.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
}
.button-light { background: var(--white); color: var(--navy); }
.full-width { width: 100%; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
}
.hero-points span::before {
  content: "●";
  color: var(--orange);
  margin-right: 8px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.planet-ball {
  position: relative;
  width: min(340px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8247, #e6470f);
  box-shadow: 0 42px 90px rgba(0,0,0,.35), inset -30px -30px 60px rgba(106,19,0,.24);
  overflow: hidden;
  transform: rotate(-8deg);
}
.ball-line {
  position: absolute;
  border: 8px solid var(--navy);
  opacity: .95;
}
.line-one { inset: 46% -20%; height: 8px; border-left: 0; border-right: 0; }
.line-two { inset: -20% 46%; width: 8px; border-top: 0; border-bottom: 0; }
.line-three {
  width: 130%;
  height: 55%;
  left: -15%;
  top: 4%;
  border-radius: 50%;
  border-left: 0; border-right: 0; border-bottom: 0;
  transform: rotate(35deg);
}
.line-four {
  width: 130%;
  height: 55%;
  left: -15%;
  bottom: 4%;
  border-radius: 50%;
  border-left: 0; border-right: 0; border-top: 0;
  transform: rotate(-35deg);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.orbit-one { width: 460px; height: 220px; transform: rotate(-18deg); }
.orbit-two { width: 520px; height: 280px; transform: rotate(31deg); }
.star { position: absolute; color: var(--white); opacity: .75; }
.star-a { top: 13%; left: 10%; font-size: 28px; }
.star-b { right: 5%; top: 28%; font-size: 18px; }
.star-c { bottom: 11%; left: 18%; font-size: 22px; }
.visual-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  min-width: 190px;
  padding: 18px 22px;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.visual-card span, .visual-card small { display: block; color: var(--muted); }
.visual-card strong { display: block; font-size: 22px; margin: 3px 0; }
.hero-stripe {
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 82px, var(--cream) 82px 164px);
}

.stat-band { background: var(--cream); border-bottom: 1px solid #ece4da; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}
.stats div {
  padding: 0 24px;
  border-right: 1px solid #ded5ca;
}
.stats div:first-child { padding-left: 0; }
.stats div:last-child { border-right: 0; }
.stats strong, .stats span { display: block; }
.stats strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--navy);
  font-size: 28px;
}
.stats span { color: var(--muted); font-size: 13px; }

.section { padding: 110px 0; }
.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -.025em;
}
.lead-copy { font-size: 18px; color: var(--muted); }
.lead-copy p:first-child { margin-top: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.feature-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-number {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
}
.feature-card h3 {
  color: var(--navy);
  margin: 0 0 14px;
  font-size: 31px;
}
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.section-dark .section-heading > p:last-child { color: rgba(255,255,255,.65); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.team-card {
  position: relative;
  padding: 36px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card.featured {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-14px);
}
.team-ribbon {
  position: absolute;
  top: 18px; right: -42px;
  width: 170px;
  padding: 8px 0;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(36deg);
}
.team-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 21px;
  font-weight: 800;
}
.team-card h3 { font-size: 35px; margin: 28px 0 16px; }
.team-card p { color: rgba(255,255,255,.65); min-height: 116px; }
.team-card.featured p { color: var(--muted); }
.team-card ul, .price-card ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.team-card li, .price-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}
.team-card.featured li { border-color: var(--line); }

.schedule-section { background: var(--cream); }
.schedule-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.schedule-intro { max-width: 480px; color: var(--muted); font-size: 17px; }
.schedule-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.schedule-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--line);
}
.schedule-row.weekend { background: var(--navy); color: var(--white); }
.day {
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
}
.schedule-row strong, .schedule-row span { display: block; }
.schedule-row strong { font-size: 18px; }
.schedule-row span { color: var(--muted); font-size: 14px; }
.schedule-row.weekend span { color: rgba(255,255,255,.6); }
.location-note { padding: 24px 30px; background: #fbfcfd; }
.location-note strong, .location-note span { display: block; }
.location-note span { color: var(--muted); font-size: 14px; margin-top: 3px; }

.section-light { background: #f8fafc; }
.coach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.coach-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.coach-avatar {
  width: 100px; height: 100px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #183e76);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  font-weight: 800;
}
.coach-role {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 800;
}
.coach-card h3 { margin: 6px 0 10px; color: var(--navy); font-size: 30px; }
.coach-card p { margin: 0; color: var(--muted); font-size: 14px; }

.pricing-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
}
.pricing-copy p:last-child { color: var(--muted); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.featured-price {
  grid-row: span 2;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.price-label {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .13em;
}
.price {
  margin: 20px 0 4px;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 64px;
  font-weight: 800;
}
.featured-price .price { color: var(--white); }
.price-card > p { color: var(--muted); }
.featured-price > p { color: rgba(255,255,255,.6); }
.mini-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.mini-price strong {
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 38px;
}
.mini-price span { color: var(--muted); font-size: 13px; }
.price-note { font-size: 13px; }

.register-section {
  background:
    linear-gradient(rgba(7,22,47,.94), rgba(7,22,47,.94)),
    radial-gradient(circle at 20% 20%, rgba(255,90,31,.7), transparent 35%);
  color: var(--white);
}
.register-section h2 { color: var(--white); }
.register-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.register-grid > div > p:not(.eyebrow) { color: rgba(255,255,255,.65); font-size: 17px; }
.contact-details { margin-top: 36px; }
.contact-details span {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.registration-form {
  padding: 34px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.registration-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.registration-form input,
.registration-form textarea,
.registration-form select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfd;
  outline: none;
}
.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,31,.1);
}
.form-status { min-height: 22px; margin: 14px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.final-cta { background: var(--orange); color: var(--white); padding: 58px 0; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { color: var(--white); font-size: clamp(38px, 4vw, 56px); }
.final-cta .eyebrow { color: rgba(255,255,255,.7); }

.site-footer { background: #040d1d; color: rgba(255,255,255,.5); padding: 34px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  font-size: 12px;
}
.footer-brand .brand-mark { width: 34px; }
.footer-brand strong { font-size: 17px; }
.footer-brand small { font-size: 12px; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .split-layout, .schedule-grid, .register-grid, .pricing-wrap {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 10px; padding-top: 76px; }
  .hero-visual { min-height: 430px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-card.featured { transform: none; }
  .team-card p { min-height: auto; }
  .coach-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .featured-price { grid-row: span 2; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: clamp(58px, 18vw, 86px); }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 360px; }
  .planet-ball { width: 250px; }
  .orbit-one { width: 330px; height: 160px; }
  .orbit-two { width: 350px; height: 200px; }
  .visual-card { right: 10px; bottom: 15px; min-width: 165px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(3) { padding-left: 0; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .featured-price { grid-row: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .coach-card { grid-template-columns: 1fr; }
  .schedule-row { grid-template-columns: 74px 1fr; padding: 18px 20px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Space City Hoops logo integration */
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-brand .brand-logo { width: 48px; height: 48px; }
.brand-text { display: block; }
.hero-logo-watermark {
  position: absolute;
  width: min(440px, 88vw);
  height: auto;
  opacity: .10;
  filter: saturate(.9);
  z-index: 0;
  pointer-events: none;
}
.hero-visual > *:not(.hero-logo-watermark) { z-index: 1; }
.registration-link-card {
  padding: 38px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  text-align: center;
}
.registration-link-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 18px;
}
.registration-link-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 36px;
}
.registration-link-card p {
  margin: 0 0 24px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .brand-logo { width: 50px; height: 50px; }
  .brand-text strong { font-size: 18px; }
  .brand-text small { font-size: 13px; }
  .registration-link-card { padding: 28px 22px; }
  .registration-link-card img { width: 145px; height: 145px; }
}

/* V3 photography and CTA refinements */
.photo-showcase {
  padding: 56px 0 10px;
  background: var(--white);
}
.photo-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 18px;
}
.photo-showcase figure,
.coaches-photo,
.team-photo-banner {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-showcase img,
.coaches-photo img,
.team-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-main { position: relative; min-height: 470px; }
.showcase-main img { object-position: center 42%; }
.showcase-side { min-height: 470px; }
.showcase-side img { object-position: center center; }
.showcase-main figcaption {
  position: absolute;
  left: 26px;
  bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(7,22,47,.88);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}
.team-photo-banner {
  position: relative;
  height: 430px;
  margin-top: 44px;
  border: 1px solid rgba(255,255,255,.14);
}
.team-photo-banner img { object-position: center 45%; }
.team-photo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,22,47,.88), rgba(7,22,47,.08) 64%);
}
.team-photo-overlay {
  position: absolute;
  z-index: 2;
  left: 38px;
  bottom: 34px;
  color: var(--white);
}
.team-photo-overlay span,
.team-photo-overlay strong { display: block; }
.team-photo-overlay span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.team-photo-overlay strong {
  margin-top: 6px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}
.coaches-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.coaches-photo { min-height: 540px; background: var(--white); }
.coaches-photo img { object-position: center 34%; }
.coaches-feature .coach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.coaches-feature .coach-card { align-content: center; }
.registration-link-card-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
}
.registration-link-card-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(255,90,31,.22), transparent 44%);
  pointer-events: none;
}
.registration-link-card-dark > * { position: relative; z-index: 1; }
.registration-link-card-dark img {
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.34));
}
.registration-link-card-dark h3 { color: var(--white); }
.registration-link-card-dark p { color: rgba(255,255,255,.68); }

@media (max-width: 980px) {
  .photo-showcase-grid,
  .coaches-feature { grid-template-columns: 1fr; }
  .showcase-main,
  .showcase-side { min-height: 420px; }
  .coaches-photo { min-height: 620px; }
}

@media (max-width: 720px) {
  .photo-showcase { padding-top: 28px; }
  .photo-showcase-grid { gap: 14px; }
  .showcase-main { min-height: 330px; }
  .showcase-side { min-height: 280px; }
  .showcase-main figcaption { left: 16px; bottom: 15px; }
  .team-photo-banner { height: 340px; margin-top: 30px; }
  .team-photo-overlay { left: 20px; right: 20px; bottom: 22px; }
  .coaches-photo { min-height: 440px; }
}


/* V4: photography-led hero, two-team layout, and coach profiles */
.hero-photo {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(4,13,29,.96) 0%, rgba(4,13,29,.84) 43%, rgba(4,13,29,.34) 72%, rgba(4,13,29,.18) 100%),
    url("images/team-coaches.jpg") center 42% / cover no-repeat;
}
.hero-photo::before {
  background: linear-gradient(180deg, rgba(7,22,47,.08), rgba(7,22,47,.35));
  opacity: 1;
}
.hero-photo-grid {
  grid-template-columns: minmax(0, 680px) 1fr;
  min-height: 760px;
}
.hero-photo .hero-copy {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}
.hero-brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.35));
}
.hero-photo h1 { text-shadow: 0 10px 34px rgba(0,0,0,.35); }
.hero-photo .hero-text { color: rgba(255,255,255,.84); max-width: 610px; }

.photo-hover { position: relative; }
.photo-hover img {
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.photo-hover:hover img { transform: scale(1.035); filter: contrast(1.04) saturate(1.05); }

.team-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}
.team-grid-two .team-card { min-height: 410px; }
.team-grid-two .team-card.featured { transform: none; }
.team-grid-two .team-card p { min-height: 122px; }

.coach-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.coach-profile-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(7,22,47,.08);
}
.coach-profile-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
}
.coach-profile-photo {
  margin: 0;
  height: 560px;
  overflow: hidden;
  background: #f3f1ec;
}
.coach-profile-featured .coach-profile-photo { height: 650px; }
.coach-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.coach-profile-card:hover .coach-profile-photo img { transform: scale(1.025); }
.coach-profile-body { padding: 30px 32px 34px; }
.coach-profile-featured .coach-profile-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}
.coach-profile-body h3 {
  margin: 7px 0 18px;
  color: var(--navy);
  font-size: 36px;
}
.coach-profile-featured .coach-profile-body h3 { font-size: 46px; }
.coach-profile-body p { margin: 0 0 16px; color: var(--muted); }
.coach-profile-body p:last-child { margin-bottom: 0; }

.register-section-solid {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.register-section-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 26%, rgba(255,90,31,.17), transparent 32%);
}
.register-section-solid { position: relative; overflow: hidden; }
.register-section-solid .register-grid { position: relative; z-index: 1; align-items: center; }
.evaluation-card {
  background: #0c2348;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 72px rgba(0,0,0,.32);
}
.evaluation-card img {
  width: 210px;
  height: 210px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}
.evaluation-card h3 { color: var(--white); }
.evaluation-card p { color: rgba(255,255,255,.72); }

@media (max-width: 980px) {
  .hero-photo { min-height: 700px; background-position: 62% 42%; }
  .hero-photo-grid { grid-template-columns: 1fr; min-height: 700px; }
  .hero-photo .hero-copy { max-width: 650px; }
  .coach-profile-featured { grid-template-columns: 1fr; }
  .coach-profile-featured .coach-profile-photo { height: 620px; }
  .coach-profile-featured .coach-profile-body { padding: 36px; }
}
@media (max-width: 720px) {
  .hero-photo {
    min-height: 760px;
    background-position: 64% center;
    background-image:
      linear-gradient(180deg, rgba(4,13,29,.90) 0%, rgba(4,13,29,.77) 57%, rgba(4,13,29,.46) 100%),
      url("images/team-coaches.jpg");
  }
  .hero-photo-grid { min-height: 760px; padding-top: 48px; padding-bottom: 54px; }
  .hero-brand-logo { width: 92px; height: 92px; margin-bottom: 18px; }
  .team-grid-two, .coach-profile-grid { grid-template-columns: 1fr; }
  .team-grid-two .team-card { min-height: auto; }
  .team-grid-two .team-card p { min-height: auto; }
  .coach-profile-featured { grid-column: auto; }
  .coach-profile-photo,
  .coach-profile-featured .coach-profile-photo { height: 500px; }
  .coach-profile-body,
  .coach-profile-featured .coach-profile-body { padding: 28px 24px 30px; }
  .coach-profile-featured .coach-profile-body h3 { font-size: 38px; }
  .evaluation-card img { width: 170px; height: 170px; }
}

/* Roster page */
.brand-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.team-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.team-card-link .team-card {
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card-link:hover .team-card {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  border-color: rgba(255,90,31,.6);
}
.roster-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  background: url("images/team-coaches.jpg") center 38% / cover no-repeat;
  color: white;
}
.roster-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,22,47,.20), rgba(7,22,47,.94));
}
.roster-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 68px;
}
.roster-hero h1 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: .95;
}
.roster-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.roster-intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.roster-summary-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid #e8dfd4;
}
.roster-summary-card span {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #ded5ca;
  color: var(--muted);
}
.roster-summary-card span:last-child { border-bottom: 0; }
.roster-summary-card strong {
  display: inline-block;
  min-width: 90px;
  color: var(--navy);
}
.player-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.player-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0b1c38, #102b55);
  color: white;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7,22,47,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.player-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  border: 18px solid rgba(255,90,31,.16);
}
.player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(7,22,47,.22);
}
.player-number {
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.player-card h3 {
  margin: 22px 0 20px;
  color: white;
  font-size: 32px;
}
.player-meta {
  display: grid;
  gap: 10px;
}
.player-meta span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.player-meta strong {
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .11em;
}
.roster-photo-section {
  padding-top: 0;
  background: #f8fafc;
}
.roster-team-photo {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .roster-intro { grid-template-columns: 1fr; }
  .player-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .player-grid { grid-template-columns: 1fr; }
  .roster-hero { min-height: 360px; }
  .brand-logo-img { height: 46px; }
}

/* Version 6 multi-page navigation */
.site-nav a.active {
  color: var(--white);
  position: relative;
}
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--orange);
}
.subpage-main {
  min-height: 70vh;
}
.subpage-banner {
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,90,31,.24), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.subpage-banner h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 94px);
  line-height: .95;
  letter-spacing: -.025em;
}
.subpage-main > .section:first-of-type {
  padding-top: 86px;
}
@media (max-width: 980px) {
  .site-nav a.active::after { display: none; }
}

/* V8: consistent evaluation CTA on every page */
.universal-evaluation-cta {
  margin-top: 0;
}
.subpage-main .universal-evaluation-cta {
  margin-top: 0;
}
