/* css/styles.css */
:root{
  --navy:#0b1324;
  --navy2:#081022;
  --navy3:#060d1c;
  --accent:#ff9600;

  --text:#0f172a;
  --muted:#475569;

  --bg:#ffffff;
  --bg-soft:#f3f6fb;

  --footer-bg:#1f2530;   /* dark ash */
  --footer-text:#e5e7eb;

  --line:rgba(255,255,255,.10);

  --shadow:0 18px 40px rgba(0,0,0,.10);
  --shadow2:0 26px 56px rgba(0,0,0,.16);
}

/* Global reset */
*{box-sizing:border-box; border-radius:0 !important;}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
}
body{overflow-x:hidden;}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}

/* =========================================================
   ICON BUTTON SYSTEM (USED IN HEADER/TOP BAR)
========================================================= */
.icon-btn{
  width:34px;height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.88);
  background:transparent;
  transition:color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.icon-btn--sm{width:28px;height:28px;}
.icon-btn:hover svg{fill:var(--accent);
  background:rgba(255,150,0,.06);
  border-color:rgba(255,150,0,.35);
  transform:translateY(-1px);
}
.icon{width:16px;height:16px;fill:currentColor}

/* =========================================================
   TOP BAR
========================================================= */
.top-bar{
  position:sticky;
  top:0;
  z-index:1200;
  background:var(--navy3);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:opacity .28s ease, transform .28s ease, max-height .28s ease;
  max-height:44px;
}
.top-bar.is-hidden{
  opacity:0;
  transform:translateY(-8px);
  max-height:0;
  overflow:hidden;
  pointer-events:none;
}
.top-bar-inner{
  height:36px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.top-left{display:flex;align-items:center;gap:10px;}
.top-link{font-size:13px;color:rgba(255,255,255,.78);}
.top-link:hover{color:#fff}
.top-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:nowrap;
}

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1100;
  background:linear-gradient(180deg, rgba(8,16,34,.96), rgba(11,19,36,.96));
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand img{height:75px;width:auto}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:#fff;
  font-weight:650;
  margin-left:auto;
}
.nav-link{
  opacity:.92;
  padding:10px 2px;
  position:relative;
  letter-spacing:.2px;
}
.nav-link:hover{opacity:1;}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:2px;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}
.nav-link:hover::after{transform:scaleX(1);}

/* Register button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  font-weight:850;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  color:#fff;
}
.btn-pill{border-radius:999px !important;padding:12px 22px;}
.btn-primary{
  background:rgba(255,255,255,.04);
  box-shadow:inset 0 -3px 0 var(--accent);
}
.btn-primary:hover{background:rgba(255,255,255,.07);}

/* Mobile toggle (if present in your HTML) */
.header-actions{display:none;align-items:center;}
.mobile-toggle{
  width:48px;height:48px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:#fff;
  cursor:pointer;
}
.hamburger{
  display:block;
  width:22px;height:2px;
  background:#fff;
  margin:0 auto;
  position:relative;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;height:2px;
  background:#fff;
}
.hamburger::before{top:-7px}
.hamburger::after{top:7px}

/* Mobile menu (if present) */
.mobile-menu{
  display:none;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(6,13,28,.98);
}
.mobile-menu.show{display:block;}
.mobile-menu-inner{padding:12px 0;}
.mobile-link{
  display:block;
  padding:14px 24px;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.06);
  opacity:.95;
  font-weight:800;
}
.mobile-link:hover{background:rgba(255,255,255,.05)}
.mobile-link--cta{font-weight:950;}
.mobile-utility{padding:14px 24px;color:rgba(255,255,255,.78);font-size:14px;}
.mobile-email{display:inline-block;color:rgba(255,255,255,.88);margin-bottom:12px;}
.mobile-email:hover{color:#fff;}
.mobile-social{display:flex;gap:14px;flex-wrap:wrap;}
.mobile-social a{color:rgba(255,255,255,.75)}
.mobile-social a:hover{color:var(--accent)}

/* =========================================================
   HERO (LEFT COPY + VIGNETTE)
========================================================= */
.hero{
  position:relative;
  z-index:2;
  color:#fff;
  text-align:left;

  background:
    linear-gradient(to bottom, rgba(8,16,34,.52), rgba(8,16,34,.90)),
    url("../assets/hero-home.jpg") center/cover no-repeat;

  min-height:560px;
  padding:130px 0 240px;
  overflow:visible;
}

/* vignette to calm busy image behind copy */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(6,13,28,.92) 0%,
      rgba(6,13,28,.70) 40%,
      rgba(6,13,28,.35) 65%,
      rgba(6,13,28,0) 100%
    );
  z-index:1;
  pointer-events:none;
}
.hero .container{position:relative;z-index:2;}

.hero-content{
  max-width:680px;
  margin-left:clamp(48px, 8vw, 160px);
}
.hero h1{
  font-size:clamp(2.35rem,4.7vw,3.55rem);
  margin:0 0 12px;
  line-height:1.05;
}
.hero p{
  font-size:1.05rem;
  opacity:.92;
  margin:0;
  line-height:1.6;
}
.hero-actions{
  margin-top:18px;
  display:flex;
  justify-content:flex-start;
}

/* Underline CTA */
.link-cta{
  position:relative;
  display:inline-block;
  padding:10px 2px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  opacity:.96;
}
.link-cta::after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:0;
  height:3px;
  background:var(--accent);
  transform:scaleX(.25);
  transform-origin:left;
  transition:transform .18s ease;
}
.link-cta:hover{opacity:1;}
.link-cta:hover::after{transform:scaleX(1);}
.link-cta--dark{
  color:var(--text);
  text-transform:none;
  letter-spacing:.02em;
}

/* =========================================================
   OVERLAP CARDS (BACKGROUND DOESN'T COVER HERO)
========================================================= */
.cards-band{
  position:relative;
  z-index:3;
  background:transparent;
  margin-top:-160px;
  padding:0 0 10px;
}
.cards-band::before{
  content:"";
  position:absolute;
  left:0;right:0;
  top:125px;
  bottom:0;
  background:var(--bg-soft);
  z-index:-1;
}
.hero-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}
.hero-card{
  background:#fff;
  color:var(--text);
  border-top:4px solid var(--accent);
  padding:32px;
  min-height:440px;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.hero-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow2);
}
.card-icon{
  width:46px;height:46px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(15,23,42,.10);
  margin-bottom:16px;
}
.card-icon svg{width:22px;height:22px;fill:rgba(11,19,36,.9)}
.hero-card h3{margin:0 0 12px;font-size:1.15rem;letter-spacing:.2px}
.hero-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:0.98rem;
}
.card-actions{margin-top:auto;padding-top:18px;}
.card-btn{
  display:inline-block;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
  padding:10px 2px;
  position:relative;
  color:var(--text);
}
.card-btn::after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:0;
  height:3px;
  background:var(--accent);
  transform:scaleX(.22);
  transform-origin:left;
  transition:transform .18s ease;
}
.hero-card:hover .card-btn::after{transform:scaleX(1);}

/* =========================================================
   MODULE SECTIONS (RESTORED FULLY)
========================================================= */
.module{padding:72px 0;}
.module-white{background:#fff;}
.module-soft{background:var(--bg-soft);padding-top:60px;}

.module-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
  align-items:start;
}
.module-title{
  margin:0 0 10px;
  font-size:1.9rem;
  letter-spacing:.2px;
}
.module-lead{
  margin:0;
  font-size:1.06rem;
  line-height:1.7;
  max-width:640px;
  color:var(--text);
  opacity:.92;
}

/* stats */
.stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.stat{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  padding:18px;
}
.stat-num{font-weight:900;font-size:1.08rem;color:var(--text)}
.stat-label{color:var(--muted);font-size:.92rem;margin-top:6px}

/* callout list */
.callout{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  padding:18px;
}
.callout-line{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  color:var(--text);
  font-weight:800;
}
.dot{width:8px;height:8px;background:var(--accent);display:inline-block}

/* bottom dual panels */
.dual-panels{
  padding:68px 0;
  background:linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}
.dual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.panel{
  padding:30px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.08);
}
.panel h3{margin:0 0 10px;font-size:1.25rem}
.panel p{margin:0 0 14px;color:var(--muted);line-height:1.6}
.panel-a{
  background:#fff;
  border-left:6px solid var(--accent);
}
.panel-b{
  background:var(--navy);
  color:#fff;
  border-left:6px solid rgba(255,150,0,.55);
}
.panel-b p{color:rgba(255,255,255,.82)}
.panel-b .link-cta--dark{color:#fff}
.panel-b .link-cta--dark::after{background:var(--accent)}

/* =========================================================
   FOOTER (DARK, LOGO NORMAL, SOCIALS ICON-ONLY)
========================================================= */
.site-footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:56px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:26px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-logo{
  height:75px;
  width:auto;
  margin-bottom:12px;
  filter:none; /* keep logo original */
}
.footer-note{color:rgba(255,255,255,.75);margin:0;line-height:1.6}

.footer-col h4{
  margin:0 0 12px;
  letter-spacing:.08em;
  font-size:.95rem;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
}
.footer-col a{
  display:block;
  padding:6px 0;
  color:rgba(255,255,255,.75);
}
.footer-col a:hover{color:#fff}

/* Footer socials: icon-only (NO boxes) */
.footer-social{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;height:auto;
  border:0;
  background:transparent;
  padding:0;
}
.footer-social svg{
  width:18px;height:18px;
  fill:rgba(255,255,255,.75);
  transition:fill .2s ease;
}
.footer-social a:hover svg{fill:var(--accent);}

.footer-bottom{
  margin-top:16px;
  text-align:center;
  color:rgba(255,255,255,.70);
  font-size:14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:1024px){
  .hero{min-height:520px;padding:120px 0 220px;}
  .hero-cards{grid-template-columns:repeat(2,1fr);}
  .hero-card{min-height:420px;}
  .module-grid{grid-template-columns:1fr;}
  .stat-grid{grid-template-columns:repeat(3,1fr);}

  .cards-band{margin-top:-150px;}
  .cards-band::before{top:120px;}
}

@media (max-width:768px){
  .top-bar{display:none;}
  .nav{display:none;}
  .header-actions{display:flex;}
  .header-inner{height:84px;}
  .brand img{height:54px;}

  .hero{
    min-height:520px;
    padding:110px 0 210px;
    text-align:left;
    background-position:65% center; /* keeps subject in frame */
  }
  .hero-content{
    margin-left:0;
    margin-right:0;
    max-width:100%;
  }

  .hero-cards{grid-template-columns:1fr;}
  .hero-card{min-height:0;}

  .cards-band{margin-top:-130px;}
  .cards-band::before{top:110px;}

  .stat-grid{grid-template-columns:1fr;}
  .dual-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:520px){
  .hero{
    min-height:500px;
    padding:100px 0 200px;
    background-position:60% center;
  }
  .footer-grid{grid-template-columns:1fr;}
}

/* =========================================
   ABOUT PAGE ONLY (minimal additions)
   Safe: only activates when .hero--interior is used
   ========================================= */

/* Interior hero variant (shorter than homepage hero) */
.hero.hero--interior{
  min-height:360px;
  padding:90px 0 110px;
  background:
    linear-gradient(to bottom, rgba(8,16,34,.58), rgba(8,16,34,.92)),
    url("../assets/hero-about.jpg") center/cover no-repeat;
}

/* Adjust vignette balance for interior hero */
.hero.hero--interior::before{
  background:
    linear-gradient(
      90deg,
      rgba(6,13,28,.92) 0%,
      rgba(6,13,28,.72) 45%,
      rgba(6,13,28,.30) 70%,
      rgba(6,13,28,0) 100%
    );
}

/* Leadership headshot placeholder (swap for img later) */
.leadership-photo{
  width:100%;
  height:320px;

}

/* Tighten on smaller screens */
@media (max-width:768px){
  .hero.hero--interior{
    min-height:320px;
    padding:80px 0 96px;
    background-position:65% center;
  }
  .leadership-photo{height:260px;}
}


/* =========================================
   FIX INTERIOR HERO TEXT ALIGNMENT
   Does NOT affect homepage
   ========================================= */

.hero.hero--interior .hero-content{
  max-width: 900px;        /* tighter than homepage */
  margin-left: 0;         /* kill homepage offset */
  padding-left: 0;        /* kill extra inset */
  transform: none;        /* neutralize any translate */
}

/* =========================================
   COACHES PAGE (additions only)
   ========================================= */

/* Hero */
.coaches-hero{
  position:relative;
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(to bottom, rgba(6,13,28,.25), rgba(6,13,28,.55)),
    url("../assets/hero-coaches.jpg") center/cover no-repeat;
  border-top:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
}

.coaches-hero h1{
  margin:0;
  color:#fff;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:clamp(2.1rem, 4.4vw, 4rem);
  text-shadow:0 14px 40px rgba(0,0,0,.45);
}

/* Coaches section */
.coaches-wrap{
  background:#fff;
  padding:56px 0 72px;
}

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

/* Coach card */
.coach-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 10px 26px rgba(0,0,0,.10);
  overflow:hidden; /* keeps image + band clean */
}

.coach-media{
  position:relative;
  height:220px;
  background:#0b1324;
  overflow:hidden;
}

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

/* Navy name band overlay on image (like mockup) */
.coach-band{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(to bottom, rgba(11,19,36,.86), rgba(11,19,36,.96));
  padding:12px 14px 12px;
  border-top:1px solid rgba(255,255,255,.10);
}

.coach-name{
  margin:0;
  color:#fff;
  font-weight:950;
  letter-spacing:.01em;
  font-size:1.05rem;
}

.coach-role{
  margin:4px 0 0;
  color:rgba(255,255,255,.82);
  font-size:.92rem;
  line-height:1.25;
}

.coach-body{
  padding:16px 16px 18px;
}

.coach-meta{
  font-weight:900;
  color:#0f172a;
  margin:0 0 10px;
}

.coach-desc{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.65;
  font-size:.98rem;
}

/* CTA button (orange, square edges) */
.coach-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px 14px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:1px solid rgba(0,0,0,.15);
  background:var(--accent);
  color:#0b1324;
  text-decoration:none;
}

.coach-btn:hover{
  filter:brightness(.96);
}

/* Responsive */
@media (max-width:1100px){
  .coaches-grid{grid-template-columns:repeat(2, 1fr);}
  .coach-media{height:240px;}
}

@media (max-width:620px){
  .coaches-hero{min-height:200px;}
  .coaches-grid{grid-template-columns:1fr;}
  .coach-media{height:230px;}
}

/* =========================================
   COACH DETAIL PAGE (additions only)
   ========================================= */

.coach-hero{
  position:relative;
  background:
    linear-gradient(to bottom, rgba(6,13,28,.55), rgba(6,13,28,.92)),
    url("../assets/hero-coaches.jpg") center/cover no-repeat;
  padding:70px 0;
}

.coach-hero-inner{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:32px;
  align-items:end;
}

.coach-portrait{
  width:100%;
  height:420px;
  background:#0b1324;
  border:1px solid rgba(255,255,255,.12);
}

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

.coach-hero h1{
  margin:0 0 8px;
  color:#fff;
  font-weight:950;
  letter-spacing:.02em;
  font-size:clamp(2rem, 3vw, 3rem);
  text-shadow:0 14px 40px rgba(0,0,0,.40);
}

.coach-subtitle{
  margin:0 0 14px;
  color:rgba(255,255,255,.85);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.coach-quickfacts{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  margin-top:10px;
}

.fact{
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.92);
  padding:8px 10px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.82rem;
  background:rgba(11,19,36,.55);
}

.fact strong{
  color:var(--accent);
  font-weight:950;
}

.coach-detail-wrap{
  background:#fff;
  padding:56px 0 76px;
}

.coach-detail-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:34px;
  align-items:start;
}

.coach-block{
  border:1px solid rgba(15,23,42,.10);
  padding:18px 18px;
  margin-bottom:18px;
}

.coach-block h2{
  margin:0 0 12px;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#0b1324;
  position:relative;
  display:inline-block;
}

.coach-block h2::after{
  content:"";
  display:block;
  width:52px;
  height:2px;
  background:var(--accent);
  margin-top:8px;
}

.coach-block p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.75;
}

.coach-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.75;
}

.coach-list li{
  margin:0 0 8px;
}

.coach-side .coach-block{
  background:#fafafa;
}

.coach-cta{
  border:2px solid var(--accent);
  padding:18px;
}

.coach-cta p{
  margin:0 0 14px;
}

.coach-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px 14px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:1px solid rgba(0,0,0,.15);
  background:var(--accent);
  color:#0b1324;
  text-decoration:none;
}

.coach-cta a:hover{
  filter:brightness(.96);
}

.coach-back{
  display:inline-block;
  margin-top:14px;
  color:rgba(255,255,255,.85);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  border-bottom:2px solid transparent;
}

.coach-back:hover{
  border-bottom-color:var(--accent);
}

/* Responsive */
@media (max-width: 980px){
  .coach-hero-inner{
    grid-template-columns: 1fr;
    align-items:start;
  }
  .coach-portrait{
    height:360px;
    max-width:420px;
  }
  .coach-detail-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px){
  .coach-hero{
    padding:56px 0;
  }
  .coach-portrait{
    height:300px;
    max-width:100%;
  }
}

/* =========================================
   TEAMS LANDING PAGE (additions only)
   No rounded corners
   ========================================= */

/* Hero */
.teams-hero{
  position:relative;
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(to bottom, rgba(6,13,28,.30), rgba(6,13,28,.55)),
    url("../assets/hero-teams.jpg") center/cover no-repeat;
  border-top:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
}

.teams-hero h1{
  margin:0;
  color:#fff;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:clamp(2.1rem, 4.4vw, 4rem);
  text-shadow:0 14px 40px rgba(0,0,0,.45);
}

/* Page wrap */
.teams-wrap{
  background:#fff;
  padding:60px 0 80px;
}

/* Grid */
.teams-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
  align-items:stretch;
}

/* Card */
.team-card{
  background:#fff;
  border:3px solid #0b1b33;          /* strong navy border like mockup */
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  overflow:hidden;                    /* keeps inner blocks clean */
  display:flex;
  flex-direction:column;
}

/* Card header */
.team-head{
  padding:20px 18px 10px;
  text-align:center;
}

.team-title{
  margin:0 0 8px;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#0b1324;
  font-size:1.35rem;
}

.team-division{
  margin:0 0 14px;
  color:#0b1324;
  font-weight:800;
}

.team-division strong{
  font-weight:950;
}

/* Description */
.team-desc{
  margin:0;
  padding:0 18px 16px;
  color:var(--muted);
  line-height:1.65;
  text-align:center;
  font-size:.98rem;
}

/* Photo placeholder */
.team-photo{
  margin:0 18px 16px;
  height:150px;
  border:2px solid rgba(15,23,42,.25);
  background:
    linear-gradient(to bottom, rgba(6,13,28,.20), rgba(6,13,28,.55)),
    url("../assets/teams/team-placeholder.jpg") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.team-photo .photo-overlay{
  text-align:center;
  color:#fff;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
  text-shadow:0 10px 22px rgba(0,0,0,.45);
}

.team-photo .camera{
  width:44px;
  height:34px;
  border:2px solid #fff;
  position:relative;
  margin:0 auto 10px;
}

.team-photo .camera::before{
  content:"";
  position:absolute;
  top:6px;
  left:50%;
  transform:translateX(-50%);
  width:14px;
  height:14px;
  border:2px solid #fff;
  border-radius:50%;
}

.team-photo .camera::after{
  content:"";
  position:absolute;
  top:-8px;
  left:10px;
  width:16px;
  height:10px;
  border:2px solid #fff;
  border-bottom:none;
}

/* Button */
.team-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:calc(100% - 36px);
  margin:0 18px 18px;
  padding:12px 14px;
  background:var(--accent);
  color:#0b1324;
  text-decoration:none;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:2px solid rgba(0,0,0,.18);
}

.team-btn:hover{
  filter:brightness(.96);
}

/* Responsive */
@media (max-width:1100px){
  .teams-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width:620px){
  .teams-hero{min-height:200px;}
  .teams-wrap{padding:48px 0 64px;}
  .teams-grid{grid-template-columns:1fr;}
  .team-photo{height:160px;}
}

/* =========================================
   TEAM DETAIL PAGE (additions only)
   No rounded corners
   ========================================= */

/* Team hero */
.team-hero{
  position:relative;
  background:
    linear-gradient(to bottom, rgba(6,13,28,.35), rgba(6,13,28,.82)),
    url("../assets/hero-teams.jpg") center/cover no-repeat;
  padding:64px 0 56px;
  border-top:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
}

.team-hero-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
}

.team-back{
  display:inline-block;
  margin-bottom:14px;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  border-bottom:2px solid transparent;
}

.team-back:hover{
  border-bottom-color:var(--accent);
}

.team-hero h1{
  margin:0 0 6px;
  color:#fff;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:clamp(2rem, 3.4vw, 3.4rem);
  text-shadow:0 14px 40px rgba(0,0,0,.45);
}

.team-sub{
  margin:0;
  color:rgba(255,255,255,.86);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.team-facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  margin-top:16px;
}

.team-fact{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(11,19,36,.55);
  color:rgba(255,255,255,.92);
  padding:8px 10px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.82rem;
}

.team-fact strong{
  color:var(--accent);
  font-weight:950;
}

/* Page wrap */
.team-wrap{
  background:#fff;
  padding:56px 0 80px;
}

/* Layout */
.team-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:28px;
  align-items:start;
}

/* Blocks */
.team-block{
  border:1px solid rgba(15,23,42,.10);
  padding:18px 18px;
  margin-bottom:18px;
}

.team-block h2{
  margin:0 0 12px;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#0b1324;
  display:inline-block;
}

.team-block h2::after{
  content:"";
  display:block;
  width:52px;
  height:2px;
  background:var(--accent);
  margin-top:8px;
}

.team-block p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.75;
}

/* Coaches list */
.team-coach{
  border-top:1px solid rgba(15,23,42,.10);
  padding-top:12px;
  margin-top:12px;
}

.team-coach:first-of-type{
  border-top:none;
  padding-top:0;
  margin-top:0;
}

.team-coach-name{
  margin:0 0 4px;
  font-weight:950;
  color:#0b1324;
  letter-spacing:.02em;
}

.team-coach-role{
  margin:0;
  color:var(--muted);
}

/* Roster table */
.roster-table{
  width:100%;
  border-collapse:collapse;
  border:1px solid rgba(15,23,42,.12);
}

.roster-table th,
.roster-table td{
  padding:12px 10px;
  text-align:left;
  border-bottom:1px solid rgba(15,23,42,.08);
  font-size:.96rem;
}

.roster-table th{
  background:#0b1324;
  color:#fff;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.roster-table td{
  color:#0b1324;
}

.roster-table tr:nth-child(even) td{
  background:#fafafa;
}

.roster-note{
  margin-top:10px;
  color:var(--muted);
  font-size:.92rem;
}

/* Schedule list */
.schedule-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.75;
}

.schedule-list li{
  margin:0 0 10px;
}

.schedule-list strong{
  color:#0b1324;
}

/* Side blocks */
.team-side .team-block{
  background:#fafafa;
}

/* CTA */
.team-cta{
  border:2px solid var(--accent);
}

.team-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px 14px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:2px solid rgba(0,0,0,.18);
  background:var(--accent);
  color:#0b1324;
  text-decoration:none;
}

.team-cta a:hover{
  filter:brightness(.96);
}

/* Responsive */
@media (max-width: 980px){
  .team-grid{
    grid-template-columns:1fr;
  }
  .team-hero-top{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 700px){
  .team-hero{
    padding:56px 0 48px;
  }
  .team-wrap{
    padding:48px 0 64px;
  }

  /* Make roster table scroll on small screens */
  .roster-scroll{
    overflow:auto;
    -webkit-overflow-scrolling:touch;
    border:1px solid rgba(15,23,42,.12);
  }
  .roster-table{
    min-width:640px;
    border:none;
  }
}

/* =========================================
   CONTACT PAGE (additions only)
   No rounded corners
   ========================================= */

/* Hero */
.contact-hero{
  position:relative;
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(to bottom, rgba(6,13,28,.25), rgba(6,13,28,.55)),
    url("../assets/") center/cover no-repeat;
  border-top:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
}

.contact-hero h1{
  margin:0 0 8px;
  color:#fff;
  font-weight:950;
  font-size:clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing:.02em;
  text-shadow:0 14px 40px rgba(0,0,0,.45);
}

.contact-hero p{
  margin:0;
  color:rgba(255,255,255,.86);
  max-width:720px;
  line-height:1.65;
}

/* Wrap */
.contact-wrap{
  background:#f4f6f8;
  padding:44px 0 76px;
}

/* Shared blocks */
.contact-block{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  padding:18px 18px;
}

.contact-block h2{
  margin:0 0 14px;
  font-weight:950;
  letter-spacing:.04em;
  color:#0b1324;
}

.contact-block h2::after{
  content:"";
  display:block;
  width:52px;
  height:2px;
  background:var(--accent);
  margin-top:8px;
}

/* Top row: info + map */
.contact-top{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:22px;
  margin-bottom:22px;
}

.contact-info{
  display:grid;
  gap:12px;
}

.contact-item{
  display:grid;
  grid-template-columns: 26px 1fr;
  gap:10px;
  align-items:start;
  color:var(--muted);
  line-height:1.55;
}

.contact-item strong{
  color:#0b1324;
}

.icon{
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.88);
}

.icon svg{
  width:20px;
  height:20px;
  display:block;
}

.contact-links a{
  color:#0b1324;
  text-decoration:none;
  border-bottom:2px solid transparent;
}

.contact-links a:hover{
  border-bottom-color:var(--accent);
}

/* Map */
.contact-map{
  padding:0;
  overflow:hidden;
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height:260px;
  border:0;
  display:block;
}

/* Bottom row: form + follow */
.contact-bottom{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:22px;
}

/* Form */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px 14px;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-row.full{
  grid-column:1 / -1;
}

.form-row label{
  font-weight:900;
  letter-spacing:.02em;
  color:#0b1324;
}

.form-row input,
.form-row textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(15,23,42,.22);
  background:#fff;
  outline:none;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus{
  border-color:rgba(242,101,34,.85);
}

.form-row textarea{
  min-height:160px;
  resize:vertical;
}

.form-actions{
  margin-top:14px;
}

.form-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px 14px;
  background:var(--accent);
  color:#0b1324;
  border:2px solid rgba(0,0,0,.18);
  text-decoration:none;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  cursor:pointer;
}

.form-btn:hover{
  filter:brightness(.96);
}

.form-note{
  margin-top:10px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

/* Follow */
.follow-list{
  display:grid;
  gap:12px;
  margin-top:10px;
}

.follow-item{
  display:grid;
  grid-template-columns: 26px 1fr;
  gap:10px;
  align-items:center;
  color:var(--muted);
}

.follow-item a{
  color:#0b1324;
  text-decoration:none;
  border-bottom:2px solid transparent;
}

.follow-item a:hover{
  border-bottom-color:var(--accent);
}

/* Responsive */
@media (max-width: 980px){
  .contact-top{grid-template-columns:1fr;}
  .contact-bottom{grid-template-columns:1fr;}
}

@media (max-width: 620px){
  .contact-hero{padding:56px 0 48px;}
  .contact-wrap{padding:36px 0 64px;}
  .form-grid{grid-template-columns:1fr;}
}

/* =========================================
   FACILITIES PAGE (single location)
   No rounded corners
   ========================================= */

/* Hero */
.facilities-hero{
  position:relative;
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(to bottom, rgba(6,13,28,.30), rgba(6,13,28,.62)),
    url("../assets/") center/cover no-repeat;
  border-top:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
}

.facilities-hero h1{
  margin:0;
  color:#fff;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:clamp(2.1rem, 4.4vw, 4rem);
  text-shadow:0 14px 40px rgba(0,0,0,.45);
}

/* Wrap */
.facilities-wrap{
  background:#fff;
  padding:56px 0 80px;
}

.facilities-title{
  text-align:center;
  margin:0 0 26px;
  font-weight:950;
  letter-spacing:.02em;
  color:#0b1324;
  font-size:clamp(1.5rem, 2.2vw, 2.2rem);
}

/* Main feature grid (image left, content right) */
.facility-feature{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

/* Image panel */
.facility-media{
  border:1px solid rgba(15,23,42,.10);
  overflow:hidden;
  background:#0b1324;
  min-height:360px;
}

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

/* Content panel */
.facility-panel{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:20px 20px;
}

.facility-panel h2{
  margin:0 0 10px;
  font-weight:950;
  letter-spacing:.02em;
  color:#0b1324;
  font-size:clamp(1.3rem, 1.6vw, 1.7rem);
}

.facility-panel p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.7;
}

/* Quick stats row */
.facility-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin:14px 0 16px;
}

.fstat{
  border:1px solid rgba(15,23,42,.10);
  background:#fafafa;
  padding:12px 12px;
}

.fstat strong{
  display:block;
  color:#0b1324;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.85rem;
  margin-bottom:6px;
}

.fstat span{
  display:block;
  color:var(--muted);
  line-height:1.45;
  font-size:.95rem;
}

/* Feature list */
.facility-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.75;
}

.facility-list li{
  margin:0 0 8px;
}

/* Buttons */
.facility-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.facility-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  background:var(--accent);
  color:#0b1324;
  text-decoration:none;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:2px solid rgba(0,0,0,.18);
}

.facility-btn:hover{
  filter:brightness(.96);
}

.facility-btn.secondary{
  background:#fff;
  color:#0b1324;
  border:2px solid rgba(15,23,42,.22);
}

.facility-btn.secondary:hover{
  border-color:rgba(242,101,34,.75);
}

/* Secondary section blocks */
.facility-sections{
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.fbox{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:18px 18px;
}

.fbox h3{
  margin:0 0 10px;
  font-weight:950;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#0b1324;
}

.fbox h3::after{
  content:"";
  display:block;
  width:44px;
  height:2px;
  background:var(--accent);
  margin-top:8px;
}

.fbox p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

/* Map/Address row */
.facility-bottom{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.facility-address{
  border:1px solid rgba(15,23,42,.10);
  padding:18px 18px;
  background:#fafafa;
}

.facility-address strong{
  display:block;
  color:#0b1324;
  font-weight:950;
  margin-bottom:10px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.facility-address p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.facility-map{
  border:1px solid rgba(15,23,42,.10);
  overflow:hidden;
  background:#fff;
}

.facility-map iframe{
  width:100%;
  height:100%;
  min-height:220px;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width: 980px){
  .facility-feature{
    grid-template-columns:1fr;
  }
  .facility-stats{
    grid-template-columns:1fr;
  }
  .facility-sections{
    grid-template-columns:1fr;
  }
  .facility-bottom{
    grid-template-columns:1fr;
  }
  .facility-media{
    min-height:300px;
  }
}

@media (max-width: 620px){
  .facilities-wrap{
    padding:48px 0 64px;
  }
  .facilities-hero{
    min-height:200px;
  }
}

/* =====================================
   COACH GRID EQUAL HEIGHT FIX
===================================== */


.coach-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.coach-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.coach-desc {
  flex-grow: 1;
}

/* Card polish */
.teams-grid-two .team-card {
  padding: 50px 50px 40px;
  border: 2px solid #1c2434;
  background: #f9fafc;
  transition: all .3s ease;
}

/* Add subtle lift */
.teams-grid-two .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Header spacing */
.team-head {
  margin-bottom: 35px;
}

.team-title {
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Section blocks */
.program-block {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.program-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Section headings */
.program-block h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 14px;
  border-left: 4px solid #1c2434;
}

/* List spacing */
.program-block ul {
  padding-left: 25px;
  line-height: 1.8;
}

/* Button spacing */
.team-card .team-btn {
  margin-top: 40px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
 .teams-grid.teams-grid-two {
    grid-template-columns: 1fr !important;
  }
  }

  .teams-grid-two .team-card {
    padding: 40px 25px;
  }
}

/* Force full-width 2-column layout */
.teams-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
}

/* Make sure cards stretch full column width */
.teams-grid-two .team-card {
  width: 100%;
}

/* Navy Header Bar */
.program-header-bar {
  background: #1c2434; /* navy */
  color: #ffffff;
  padding: 28px 35px;
  margin: -50px -50px 35px -50px; /* pulls to card edges */
  border-bottom: 4px solid #ff9600; /* your yellow accent */
}

.program-header-bar h2 {
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.program-header-bar p {
  opacity: 0.85;
  font-weight: 500;
}

/* Adjust padding for mobile */
@media (max-width: 900px) {
  .program-header-bar {
    margin: -40px -25px 30px -25px;
    padding: 22px 25px;
  }
}
.program-summary {
  margin-top: 15px;
  font-weight: 600;
  color: #1c2434;
}