/* Apollo Gym — Shared Site Styles (prototype) */
:root{
  --bg:#0B0E14; --bg-alt:#12161F; --surface:#171B24; --surface-2:#1E2330; --border:#2A3040;
  --text:#F5F6F8; --text-muted:#9AA3B2; --gold:#C6A15B; --navy:#1A2B4C;
  --success:#2E7D5B; --danger:#B23B3B; --warning:#C9862F;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{background:var(--bg); color:var(--text); font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; line-height:1.5;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.container{max-width:1180px; margin:0 auto; padding:0 32px;}
.container-narrow{max-width:820px; margin:0 auto; padding:0 32px;}

.btn{display:inline-flex; align-items:center; justify-content:center; padding:15px 30px; border-radius:999px; font-weight:700; font-size:14.5px; letter-spacing:.3px; cursor:pointer; border:1px solid transparent;}
.btn-primary{background:var(--gold); color:#181103;}
.btn-outline{background:transparent; color:var(--text); border-color:rgba(255,255,255,.35);}
.btn-block{width:100%;}
.btn-sm{padding:11px 20px; font-size:13px;}

/* Nav */
header.site-header{position:sticky; top:0; z-index:20; background:rgba(11,14,20,.85); backdrop-filter:blur(10px); border-bottom:1px solid var(--border);}
nav.site-nav{display:flex; align-items:center; justify-content:space-between; padding:20px 0;}
.logo{font-weight:800; letter-spacing:3px; font-size:16px;}
.nav-links{display:flex; gap:30px; font-size:14px; color:var(--text-muted);}
.nav-links a:hover{color:var(--text);}
.nav-links a.current{color:var(--gold);}
.nav-cta{display:flex; gap:14px; align-items:center;}
.nav-toggle{display:none; background:none; border:none; color:var(--text); font-size:22px; cursor:pointer;}
@media (max-width:900px){
  .nav-links{display:none;}
  .nav-toggle{display:block;}
}

/* Mobile menu */
.mobile-menu{display:none; flex-direction:column; gap:2px; padding:12px 0 20px; border-top:1px solid var(--border);}
.mobile-menu.open{display:flex;}
.mobile-menu a{padding:12px 4px; font-size:15px; color:var(--text-muted); border-bottom:1px solid var(--border);}

/* Hero */
.hero{position:relative; padding:120px 0 90px; overflow:hidden;}
.hero::before{content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(198,161,91,.16), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(26,43,76,.5), transparent 60%),
    linear-gradient(160deg,#0B0E14 0%,#12161F 60%,#0B0E14 100%);
  z-index:-1;
}
.hero.compact{padding:80px 0 60px;}
.eyebrow{font-size:12.5px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:20px;}
.hero h1{font-size:58px; font-weight:800; line-height:1.08; max-width:800px; margin-bottom:22px; letter-spacing:-1px;}
.hero.compact h1{font-size:42px;}
.hero p.sub{font-size:18px; color:var(--text-muted); max-width:560px; margin-bottom:36px; line-height:1.6;}
.hero .actions{display:flex; gap:18px; flex-wrap:wrap;}
@media (max-width:640px){ .hero h1{font-size:36px;} .hero.compact h1{font-size:30px;} .hero{padding:80px 0 50px;} }

.stat-bar{display:flex; gap:60px; margin-top:80px; padding-top:36px; border-top:1px solid var(--border); flex-wrap:wrap;}
.stat b{display:block; font-size:32px; font-weight:800;}
.stat span{color:var(--text-muted); font-size:13.5px;}

/* Sections */
.section{padding:90px 0;}
.section-tight{padding:50px 0;}
.section-head{max-width:640px; margin-bottom:50px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:36px; font-weight:800; margin-top:14px; letter-spacing:-.5px;}
.section-head p{color:var(--text-muted); margin-top:16px; font-size:16px; line-height:1.6;}

/* Program cards */
.programs{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media (max-width:900px){ .programs{grid-template-columns:1fr;} }
.program-card{background:var(--surface); border:1px solid var(--border); border-radius:18px; overflow:hidden; transition:transform .2s;}
.program-card:hover{transform:translateY(-4px);}
.program-media{height:200px; background:linear-gradient(135deg,var(--navy),#0B0E14);}
.program-media.pt{background:linear-gradient(135deg,#3a2f18,#0B0E14);}
.program-media.sg{background:linear-gradient(135deg,#1A2B4C,#0B0E14);}
.program-media.ct{background:linear-gradient(135deg,#123a3a,#0B0E14);}
.program-media.tm{background:linear-gradient(135deg,#4a3a10,#0B0E14);}
.program-body{padding:26px;}
.program-body h3{font-size:19px; margin-bottom:10px;}
.program-body p{color:var(--text-muted); font-size:14.5px; line-height:1.6; margin-bottom:16px;}
.program-body a{color:var(--gold); font-weight:700; font-size:14px;}

/* Band / CTA */
.band{background:var(--navy); border-radius:24px; padding:60px; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;}
.band h2{font-size:30px; font-weight:800; max-width:480px;}
.band p{color:#B9C2D6; margin-top:12px; max-width:460px;}

/* Cards / generic */
.card{background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:28px;}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:860px){ .grid-2, .grid-3{grid-template-columns:1fr;} }

/* Quote */
.quote{max-width:760px; margin:0 auto; text-align:center;}
.quote p{font-size:26px; font-weight:600; line-height:1.5; font-style:italic;}
.quote span{display:block; margin-top:22px; color:var(--text-muted); font-size:14px;}

/* FAQ accordion */
.faq-item{border-bottom:1px solid var(--border); padding:22px 0;}
.faq-item summary{cursor:pointer; font-size:16px; font-weight:700; list-style:none; display:flex; justify-content:space-between; align-items:center;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; font-size:22px; color:var(--gold); font-weight:400;}
.faq-item[open] summary::after{content:"–";}
.faq-item p{color:var(--text-muted); margin-top:14px; font-size:14.5px; line-height:1.6;}

/* Forms */
.field{margin-bottom:18px;}
.field label{display:block; font-size:12.5px; color:var(--text-muted); margin-bottom:6px; font-weight:600;}
.field input, .field textarea, .field select{width:100%; background:var(--surface); border:1px solid var(--border); color:var(--text); padding:13px 16px; border-radius:10px; font-size:14.5px; font-family:inherit;}
.field input:focus, .field textarea:focus{outline:2px solid var(--gold); outline-offset:1px;}
.field textarea{resize:vertical; min-height:120px;}

/* Simple content pages */
.prose h2{font-size:22px; font-weight:800; margin:36px 0 14px;}
.prose h2:first-child{margin-top:0;}
.prose p{color:var(--text-muted); font-size:15px; line-height:1.7; margin-bottom:14px;}
.prose ul{color:var(--text-muted); font-size:15px; line-height:1.7; margin:0 0 14px 20px;}
.placeholder-note{background:rgba(198,161,91,.1); border:1px solid rgba(198,161,91,.35); color:var(--gold); font-size:13.5px; padding:14px 18px; border-radius:10px; margin-bottom:30px;}

/* Team / job listing */
.job{border:1px solid var(--border); border-radius:14px; padding:22px 26px; display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:16px; flex-wrap:wrap;}
.job h3{font-size:16px; margin-bottom:4px;}
.job span{color:var(--text-muted); font-size:13.5px;}

/* Blog list */
.blog-post{border-bottom:1px solid var(--border); padding:26px 0; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;}
.blog-post h3{font-size:18px; margin-bottom:6px;}
.blog-post span{color:var(--text-muted); font-size:13px;}
.blog-post p{color:var(--text-muted); font-size:14px; max-width:600px;}

/* Footer */
footer.site-footer{border-top:1px solid var(--border); padding:60px 0 40px; margin-top:40px;}
.footer-grid{display:grid; grid-template-columns:2fr repeat(3,1fr); gap:40px;}
@media (max-width:760px){ .footer-grid{grid-template-columns:1fr 1fr;} }
.footer-grid h4{font-size:13px; text-transform:uppercase; letter-spacing:1.5px; color:var(--text-muted); margin-bottom:16px;}
.footer-grid a{display:block; color:var(--text-muted); font-size:14px; margin-bottom:10px;}
.footer-grid a:hover{color:var(--text);}
.footer-bottom{color:var(--text-muted); font-size:13px; margin-top:50px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

.proto-banner{background:var(--gold); color:#181103; text-align:center; font-size:13px; font-weight:700; padding:9px 12px;}
.proto-banner a{text-decoration:underline;}
