/* ============================================================
   CAPISTRANO BOXING GYM — Stylesheet
   ============================================================ */

/* ---------- 1. VARIABLES ---------- */
:root{
  --red:#e01b24;
  --red-dark:#b3151c;
  --black:#0d0d0d;
  --ink:#111111;
  --grey-bg:#f4f4f4;
  --grey-text:#6b6b6b;
  --white:#ffffff;
  --border:#e2e2e2;
  --container:1200px;
  --font-head:'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --radius:4px;
  --shadow:0 6px 24px rgba(0,0,0,.10);
}

/* ---------- 2. RESET ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:15px;
  line-height:1.65;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-head);margin:0;line-height:1.05;text-transform:uppercase;letter-spacing:.01em;}
p{margin:0 0 1rem;}
button{font:inherit;cursor:pointer;border:none;background:none;}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px;}
.section{padding:72px 0;}
.center{text-align:center;}
.text-red{color:var(--red);}

.eyebrow{
  font-family:var(--font-head);
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:700;
  font-size:14px;
  margin:0 0 6px;
}
.section-title{
  font-size:clamp(28px,3.6vw,42px);
  font-weight:700;
  margin-bottom:34px;
}
.section-title.light{color:var(--white);margin-bottom:18px;}

/* ---------- 3. BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-head);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:15px;
  padding:12px 24px;
  border-radius:var(--radius);
  transition:.22s ease;
  white-space:nowrap;
}
.btn-lg{padding:15px 30px;font-size:16px;}
.btn-sm{padding:9px 16px;font-size:13px;}
.btn-arrow{width:18px;height:12px;flex:none;}
.btn-red{background:var(--red);color:#fff;}
.btn-red:hover{background:var(--red-dark);}
.btn-white{background:#fff;color:var(--ink);}
.btn-white:hover{background:#e9e9e9;}
.btn-dark{background:var(--black);color:#fff;}
.btn-dark:hover{background:#000;}
.btn-outline{border:2px solid #fff;color:#fff;}
.btn-outline:hover{background:#fff;color:var(--ink);}

/* ---------- 4. HEADER ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--black);
}
.header-inner{
  display:flex;align-items:center;gap:20px;
  height:74px;
}
.brand{flex:none;display:block;}
.brand-logo{height:58px;width:58px;object-fit:contain;max-width:none;}
.main-nav{margin-left:auto;}
.nav-list{display:flex;align-items:center;gap:22px;}
.nav-list > li{position:relative;}
.nav-link{
  display:inline-flex;align-items:center;gap:6px;
  white-space:nowrap;
  font-family:var(--font-head);
  font-weight:600;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  padding:26px 0;
  transition:color .2s;
}
.nav-link:hover{color:var(--red);}
.nav-link.active{color:var(--red);}
.nav-link.active::after{
  content:'';position:absolute;left:0;right:0;bottom:18px;
  height:3px;background:var(--red);
}
.caret{width:10px;height:7px;transition:transform .2s;}
.has-dropdown:hover .caret{transform:rotate(180deg);}

.dropdown{
  position:absolute;top:100%;left:-14px;min-width:230px;
  background:#171717;border-top:3px solid var(--red);
  padding:8px 0;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:.2s ease;
  box-shadow:var(--shadow);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown a{
  display:block;padding:9px 18px;color:#ddd;font-size:14px;
  transition:.18s;
}
.dropdown a:hover{background:var(--red);color:#fff;}

.header-cta{flex:none;}

.nav-toggle{display:none;flex-direction:column;gap:5px;padding:8px;}
.nav-toggle span{display:block;width:24px;height:2px;background:#fff;transition:.25s;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- 5. HERO ---------- */
.hero{
  position:relative;
  min-height:640px;
  display:flex;align-items:center;
  background:#0a0a0a;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.75) 38%,rgba(0,0,0,.35) 70%,rgba(0,0,0,.55) 100%);
}
.hero-watermark{
  position:absolute;right:6%;top:22%;width:120px;opacity:.28;
  filter:grayscale(1) contrast(1.2);
  pointer-events:none;
}
.hero-inner{position:relative;z-index:2;padding-top:60px;padding-bottom:60px;}
.hero-title{
  color:#fff;
  font-size:clamp(42px,6.2vw,76px);
  font-weight:700;
  letter-spacing:.005em;
  margin-bottom:18px;
}
.hero-sub{color:#e6e6e6;font-size:18px;margin-bottom:26px;}

.hero-features{display:flex;flex-wrap:wrap;gap:34px;margin-bottom:32px;}
.hero-features li{display:flex;align-items:center;gap:12px;}
.feat-icon{
  width:26px;height:26px;flex:none;
  fill:none;stroke:var(--red);stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;
}
.hero-features div{display:flex;flex-direction:column;line-height:1.3;}
.hero-features strong{
  font-family:var(--font-head);font-size:14px;letter-spacing:.1em;
  text-transform:uppercase;color:#fff;
}
.hero-features span{font-size:12.5px;color:#b7b7b7;}

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

.rating-badge{
  position:absolute;right:5%;bottom:12%;z-index:3;
  background:rgba(10,10,10,.86);
  border:1px solid #3a3a3a;
  padding:14px 20px;border-radius:var(--radius);
  text-align:left;color:#fff;
}
.rating-badge .stars{color:#f5b301;font-size:19px;letter-spacing:3px;}
.rating-score{font-family:var(--font-head);font-size:24px;font-weight:700;margin-top:4px;}
.rating-score span{font-size:14px;font-weight:500;color:#d0d0d0;}
.rating-meta{font-size:11px;color:#a3a3a3;text-transform:uppercase;letter-spacing:.06em;line-height:1.5;margin-top:2px;}

/* ---------- 6. PROGRAMS ---------- */
.programs{background:var(--grey-bg);}
.program-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:18px;margin-bottom:34px;
}
.program-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.07);
  display:flex;flex-direction:column;
  transition:transform .25s,box-shadow .25s;
}
.program-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
.program-media{position:relative;aspect-ratio:16/13;background:#222;}
.program-media img{width:100%;height:100%;object-fit:cover;}
.program-icon{
  position:absolute;left:50%;bottom:-24px;transform:translateX(-50%);
  width:48px;height:48px;border-radius:50%;
  background:#111;border:2px solid var(--red);
  display:grid;place-items:center;
}
.program-icon svg{
  width:24px;height:24px;fill:none;stroke:var(--red);
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
.program-body{padding:38px 16px 20px;text-align:center;display:flex;flex-direction:column;flex:1;}
.program-body h3{font-size:17px;font-weight:700;margin-bottom:10px;}
.program-body p{font-size:13px;color:var(--grey-text);flex:1;}
.link-more{
  display:inline-flex;align-items:center;justify-content:center;gap:7px;
  font-family:var(--font-head);font-size:13px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--red);
}
.link-more svg{width:17px;height:11px;transition:transform .2s;}
.link-more:hover svg{transform:translateX(4px);}

/* ---------- 7. ABOUT ---------- */
.about{background:var(--black);color:#cfcfcf;}
.about-grid{
  display:grid;
  grid-template-columns:1.05fr 1.15fr .85fr;
  gap:42px;align-items:center;
}
.about-media{position:relative;border-radius:var(--radius);overflow:hidden;}
.about-media img{width:100%;aspect-ratio:16/11;object-fit:cover;}
.play-btn{
  position:absolute;inset:0;margin:auto;
  width:64px;height:64px;border-radius:50%;
  background:rgba(255,255,255,.92);
  display:grid;place-items:center;
  transition:.22s;
}
.play-btn:hover{background:#fff;transform:scale(1.08);}
.play-btn svg{width:26px;height:26px;fill:var(--ink);margin-left:3px;}

.about-text p{color:#b9b9b9;font-size:14.5px;margin-bottom:22px;}

.about-points{display:flex;flex-direction:column;gap:26px;}
.about-points li{display:flex;gap:14px;align-items:flex-start;}
.point-icon{
  width:46px;height:46px;flex:none;border-radius:50%;
  border:2px solid var(--red);display:grid;place-items:center;
}
.point-icon svg{
  width:24px;height:24px;fill:none;stroke:var(--red);
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
.about-points strong{
  display:block;font-family:var(--font-head);font-size:15px;
  letter-spacing:.08em;text-transform:uppercase;color:#fff;
}
.about-points span{font-size:13px;color:#a5a5a5;}

/* ---------- 8. STATS ---------- */
.stats{background:#f7f7f7;border-bottom:1px solid var(--border);}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  padding-top:26px;padding-bottom:26px;
}
.stat{
  display:flex;align-items:center;justify-content:center;gap:16px;
  border-right:1px solid var(--border);
}
.stat:last-child{border-right:none;}
.stat-icon{
  width:38px;height:38px;flex:none;fill:none;stroke:var(--ink);
  stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round;
}
.stat b{
  display:block;font-family:var(--font-head);font-size:30px;
  font-weight:700;color:var(--red);line-height:1.1;
}
.stat span{font-size:13px;color:var(--grey-text);}

/* ---------- 9. TESTIMONIALS ---------- */
.testimonials{background:var(--black);}
.testi-title{
  text-align:center;color:var(--red);
  font-size:22px;font-weight:700;letter-spacing:.14em;margin-bottom:30px;
}
.testi-wrap{display:flex;align-items:center;gap:16px;}
.testi-viewport{overflow:hidden;flex:1;}
.testi-track{display:flex;transition:transform .45s ease;}
.testi-slide{
  min-width:100%;
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.testi-card{
  background:#191919;border:1px solid #2b2b2b;
  padding:26px 24px 22px;border-radius:var(--radius);
  position:relative;text-align:center;
}
.testi-card .quote{
  position:absolute;left:18px;top:6px;
  font-family:Georgia,serif;font-size:46px;color:var(--red);line-height:1;
}
.testi-card .stars{color:#f5b301;letter-spacing:2px;margin-bottom:10px;font-size:14px;}
.testi-card p{color:#d2d2d2;font-size:14px;margin-bottom:14px;}
.testi-author{font-family:var(--font-head);color:#fff;font-size:15px;letter-spacing:.08em;}
.testi-role{font-size:12px;color:#8f8f8f;}

.testi-arrow{
  width:38px;height:38px;flex:none;
  border:1px solid #3a3a3a;color:#fff;font-size:22px;line-height:1;
  border-radius:var(--radius);background:#141414;transition:.2s;
}
.testi-arrow:hover{background:var(--red);border-color:var(--red);}

.testi-dots{display:flex;justify-content:center;gap:9px;margin-top:24px;}
.testi-dots button{
  width:9px;height:9px;border-radius:50%;background:#4a4a4a;transition:.2s;
}
.testi-dots button.active{background:var(--red);width:11px;height:11px;}

/* ---------- 10. CTA BAND ---------- */
.cta-band{position:relative;background:var(--red);overflow:hidden;}
.cta-gloves{
  position:absolute;right:0;top:0;height:100%;width:auto;
  object-fit:cover;opacity:.35;pointer-events:none;
}
.cta-inner{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:space-between;
  gap:26px;padding-top:36px;padding-bottom:36px;
}
.cta-band h2{color:#fff;font-size:clamp(24px,3vw,34px);font-weight:700;margin-bottom:6px;}
.cta-band p{color:#ffe1e1;margin:0;font-size:15px;}

/* ---------- 11. FOOTER ---------- */
.site-footer{background:var(--black);color:#b0b0b0;padding-top:56px;font-size:13.5px;}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1.15fr 1.2fr;
  gap:36px;padding-bottom:40px;
}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.footer-brand img{height:54px;width:54px;object-fit:contain;flex:none;max-width:none;}
.footer-brand strong{
  display:block;font-family:var(--font-head);font-size:19px;
  color:#fff;text-transform:uppercase;letter-spacing:.05em;line-height:1.1;
}
.footer-brand span{
  font-family:var(--font-head);font-size:16px;color:var(--red);
  text-transform:uppercase;letter-spacing:.05em;
}
.footer-col h4{
  color:#fff;font-size:15px;letter-spacing:.14em;margin-bottom:16px;
}
.footer-links li{margin-bottom:9px;}
.footer-links a:hover{color:var(--red);}

.hours li{display:flex;justify-content:space-between;gap:12px;margin-bottom:8px;}
.hours b{color:#fff;font-weight:500;}
.hours-note{color:var(--red);font-size:12.5px;margin-top:12px;line-height:1.55;}

.contact-list li{display:flex;gap:10px;margin-bottom:12px;align-items:flex-start;}
.contact-list svg{width:17px;height:17px;flex:none;margin-top:3px;stroke:var(--red);fill:none;}
.contact-list a:hover{color:#fff;}

.socials{display:flex;gap:14px;margin-top:16px;}
.socials a{
  width:30px;height:30px;display:grid;place-items:center;
  color:#cfcfcf;transition:.2s;
}
.socials a:hover{color:var(--red);}
.socials svg{width:19px;height:19px;fill:currentColor;}

.footer-bottom{border-top:1px solid #262626;padding:16px 0;}
.footer-bottom-inner{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  font-size:12px;color:#8a8a8a;
}
.footer-bottom p{margin:0;}
.badges{text-transform:uppercase;letter-spacing:.08em;}

/* ============================================================
   12. RESPONSIVE
============================================================ */
@media (max-width:1320px){
  .nav-list{gap:16px;}
  .nav-link{font-size:14px;}
  .header-cta{padding:11px 16px;font-size:13.5px;}
}
@media (max-width:1180px){
  .program-grid{grid-template-columns:repeat(3,1fr);}
  .nav-list{gap:13px;}
  .nav-link{font-size:13.5px;letter-spacing:.05em;}
}

@media (max-width:1024px){
  .header-cta{display:none;}
  .nav-toggle{display:flex;}
  .main-nav{
    position:fixed;top:74px;right:0;bottom:0;width:min(320px,84vw);
    background:#111;padding:20px;overflow-y:auto;
    transform:translateX(105%);transition:transform .3s ease;
    margin-left:0;
  }
  .main-nav.open{transform:translateX(0);}
  .nav-list{flex-direction:column;align-items:stretch;gap:0;}
  .nav-list > li{border-bottom:1px solid #242424;}
  .nav-link{padding:14px 4px;justify-content:space-between;}
  .nav-link.active::after{display:none;}
  .dropdown{
    position:static;opacity:1;visibility:visible;transform:none;
    display:none;background:#0b0b0b;border-top:none;box-shadow:none;
  }
  .has-dropdown.open .dropdown{display:block;}

  .about-grid{grid-template-columns:1fr 1fr;}
  .about-points{grid-column:1 / -1;flex-direction:row;flex-wrap:wrap;}
  .about-points li{flex:1 1 240px;}
  .hero-watermark{display:none;}
  .hero{flex-direction:column;align-items:stretch;justify-content:center;}
  .rating-badge{
    position:static;align-self:flex-start;
    margin:0 24px 34px;max-width:calc(100% - 48px);
  }
  .hero-inner{padding-bottom:26px;}
}

@media (max-width:820px){
  .section{padding:54px 0;}
  .program-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:22px 0;}
  .stat:nth-child(2){border-right:none;}
  .testi-slide{grid-template-columns:1fr;}
  .testi-slide .testi-card:nth-child(n+2){display:none;}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .cta-inner{flex-direction:column;align-items:flex-start;text-align:left;}
}

@media (max-width:560px){
  .hero{min-height:auto;}
  .hero-inner{padding-top:48px;padding-bottom:34px;}
  .hero-features{gap:18px;flex-direction:column;}
  .hero-buttons .btn{width:100%;}
  .program-grid{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom-inner{flex-direction:column;}
  .brand-logo{height:46px;}
}

/* ============================================================
   13. INNER PAGES
   ============================================================ */

/* ---------- page banner ---------- */
.page-banner{position:relative;min-height:330px;display:flex;align-items:flex-end;background:#0a0a0a;overflow:hidden;}
.banner-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.banner-overlay{position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.93) 0%,rgba(0,0,0,.72) 55%,rgba(0,0,0,.5) 100%);}
.banner-inner{position:relative;z-index:2;padding-top:64px;padding-bottom:44px;}
.page-banner h1{color:#fff;font-size:clamp(32px,5vw,58px);font-weight:700;margin-bottom:12px;}
.banner-sub{color:#c9c9c9;font-size:16.5px;max-width:660px;margin-bottom:14px;}
.crumbs{font-family:var(--font-head);font-size:13px;letter-spacing:.1em;
  text-transform:uppercase;color:#8f8f8f;}
.crumbs a{color:var(--red);}
.crumbs a:hover{color:#fff;}
.crumbs span{margin:0 6px;}

/* ---------- generic layout ---------- */
.section.alt{background:var(--grey-bg);}
.center-text{text-align:center;}
.lead{font-size:17px;color:#3d3d3d;line-height:1.7;}
.narrow{max-width:760px;}
.center-text.narrow{margin-left:auto;margin-right:auto;}
.sub-head{font-size:20px;font-weight:700;margin:30px 0 14px;}
.inline-link{color:var(--red);border-bottom:1px solid rgba(224,27,36,.35);}
.inline-link:hover{border-color:var(--red);}

.split{display:grid;grid-template-columns:1.35fr .95fr;gap:48px;align-items:start;}

/* ---------- checklist ---------- */
.checklist{display:flex;flex-direction:column;gap:11px;margin:20px 0;}
.checklist li{display:flex;gap:11px;align-items:flex-start;font-size:14.5px;}
.checklist svg{width:19px;height:19px;flex:none;margin-top:2px;color:var(--red);}

/* ---------- info cards ---------- */
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:28px;}
.info-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:26px 22px;transition:.22s;}
.info-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#d2d2d2;}
.info-icon{width:48px;height:48px;border-radius:50%;border:2px solid var(--red);
  display:grid;place-items:center;color:var(--red);margin-bottom:14px;}
.info-icon svg{width:24px;height:24px;}
.info-card h3{font-size:18px;font-weight:700;margin-bottom:8px;}
.info-card p{font-size:14px;color:var(--grey-text);margin:0;}
.section.alt .info-card{background:#fff;}

.values-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.values-grid .info-card{padding:22px 20px;}

/* ---------- affiliations ---------- */
.affiliations{background:var(--black);}
.affil-list{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin:8px 0 20px;}
.affil-list li{font-family:var(--font-head);font-size:16px;letter-spacing:.12em;
  text-transform:uppercase;color:#fff;border:1px solid #333;border-radius:var(--radius);
  padding:12px 24px;background:#151515;}
.affil-note{text-align:center;color:#9a9a9a;font-size:14px;max-width:760px;margin:0 auto;}

/* ---------- class groups ---------- */
.class-group{margin-bottom:52px;}
.group-title{font-size:26px;font-weight:700;margin-bottom:6px;}
.group-blurb{color:var(--grey-text);font-size:14.5px;margin-bottom:22px;}
.program-grid.wide{grid-template-columns:repeat(4,1fr);}

/* ---------- callout ---------- */
.callout{display:flex;align-items:center;justify-content:space-between;gap:26px;
  flex-wrap:wrap;background:var(--black);color:#c9c9c9;border-radius:var(--radius);
  padding:30px 34px;margin-top:34px;}
.callout h3{color:#fff;font-size:24px;font-weight:700;margin-bottom:6px;}
.callout p{margin:0;font-size:14.5px;max-width:620px;}
.callout-actions{display:flex;gap:12px;flex-wrap:wrap;}

/* ---------- notice ---------- */
.notice{display:flex;flex-direction:column;gap:4px;border-left:4px solid var(--red);
  background:#fff4f4;padding:16px 20px;border-radius:0 var(--radius) var(--radius) 0;margin-top:22px;}
.notice strong{font-family:var(--font-head);font-size:17px;letter-spacing:.04em;text-transform:uppercase;}
.notice span{font-size:14px;color:#5c5c5c;}

/* ---------- schedule table ---------- */
.sched-block{margin-top:30px;}
.sched-block h3{font-size:21px;font-weight:700;margin-bottom:12px;color:var(--red);}
.table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:var(--radius);background:#fff;}
table.sched{width:100%;border-collapse:collapse;min-width:520px;}
table.sched th{background:var(--black);color:#fff;font-family:var(--font-head);
  font-size:14px;letter-spacing:.1em;text-transform:uppercase;text-align:left;padding:12px 16px;}
table.sched td{padding:12px 16px;border-top:1px solid var(--border);font-size:14px;}
table.sched tbody tr:nth-child(even){background:#fafafa;}
table.sched td:first-child{font-weight:600;}
table.sched td:last-child{color:var(--red);font-weight:600;white-space:nowrap;}
table.sched em{color:#0a8a3c;font-style:normal;font-weight:600;}

.hours-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:34px;}
.hours-strip > div{display:flex;gap:12px;align-items:center;background:#fff;
  border:1px solid var(--border);border-radius:var(--radius);padding:16px 18px;}
.hours-strip svg{width:26px;height:26px;flex:none;color:var(--red);}
.hours-strip b{display:block;font-family:var(--font-head);font-size:16px;letter-spacing:.06em;text-transform:uppercase;}
.hours-strip span{font-size:13px;color:var(--grey-text);}

/* ---------- pricing ---------- */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px;}
.price-card{position:relative;background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);padding:30px 26px;display:flex;flex-direction:column;}
.price-card.featured{border-color:var(--red);box-shadow:0 8px 30px rgba(224,27,36,.14);}
.price-tag{position:absolute;top:-12px;left:26px;background:var(--red);color:#fff;
  font-family:var(--font-head);font-size:12px;letter-spacing:.14em;text-transform:uppercase;
  padding:5px 12px;border-radius:var(--radius);}
.price-card h3{font-size:24px;font-weight:700;margin-bottom:4px;}
.price-note{font-size:13.5px;color:var(--grey-text);margin-bottom:16px;}
.price-rows{border-top:1px solid var(--border);margin-bottom:20px;flex:1;}
.price-rows li{display:flex;justify-content:space-between;gap:12px;align-items:baseline;
  padding:11px 0;border-bottom:1px solid var(--border);font-size:14px;}
.price-rows b{font-family:var(--font-head);font-size:20px;color:var(--red);white-space:nowrap;}
.fine-print{margin-top:26px;font-size:13.5px;color:var(--grey-text);}
.fine-print p{margin-bottom:6px;}

/* ---------- side card ---------- */
.side-card{background:var(--black);color:#c2c2c2;border-radius:var(--radius);padding:30px 28px;
  position:sticky;top:96px;}
.side-card h3{color:#fff;font-size:19px;font-weight:700;margin:0 0 12px;}
.side-card h3 + h3,.side-card ul + h3{margin-top:26px;}
.side-card p{font-size:14px;color:#a9a9a9;}
.side-icon{width:50px;height:50px;border-radius:50%;border:2px solid var(--red);
  display:grid;place-items:center;color:var(--red);margin-bottom:16px;}
.side-icon svg{width:26px;height:26px;}
.side-list{margin-bottom:18px;}
.side-list li{display:flex;justify-content:space-between;gap:12px;padding:9px 0;
  border-bottom:1px solid #262626;font-size:13.5px;}
.side-list b{color:#fff;font-weight:600;text-align:right;}
.side-list.plain li{display:list-item;list-style:none;padding-left:18px;position:relative;color:#b5b5b5;}
.side-list.plain li::before{content:'';position:absolute;left:0;top:16px;width:7px;height:7px;
  border-radius:50%;background:var(--red);}
.side-note{font-size:12.5px;color:#8a8a8a;margin-top:12px;}
.btn.full{display:flex;width:100%;margin-top:10px;}

/* ---------- services ---------- */
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px;}
.service-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;transition:.22s;}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);}
.service-media{aspect-ratio:4/3;background:#191919;}
.service-media img{width:100%;height:100%;object-fit:cover;}
.service-body{padding:22px;}
.service-icon{width:44px;height:44px;border-radius:50%;border:2px solid var(--red);
  display:grid;place-items:center;color:var(--red);margin:-46px 0 14px;background:#111;position:relative;}
.service-icon svg{width:22px;height:22px;}
.service-body h3{font-size:18px;font-weight:700;margin-bottom:8px;}
.service-body p{font-size:14px;color:var(--grey-text);margin:0;}

/* ---------- steps ---------- */
.step-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:26px;}
.step{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:24px 22px;}
.step b{display:block;font-family:var(--font-head);font-size:30px;color:var(--red);line-height:1;margin-bottom:10px;}
.step h3{font-size:17px;font-weight:700;margin-bottom:6px;}
.step p{font-size:13.5px;color:var(--grey-text);margin:0;}
.step-grid.tight{grid-template-columns:repeat(2,1fr);}

/* ---------- forms ---------- */
.lead-form{background:var(--black);border-radius:var(--radius);padding:32px 30px;position:sticky;top:96px;}
.lead-form h3{color:#fff;font-size:22px;font-weight:700;margin-bottom:18px;}
.lead-form label{display:block;font-family:var(--font-head);font-size:13px;letter-spacing:.1em;
  text-transform:uppercase;color:#b5b5b5;margin-bottom:14px;}
.lead-form input,.lead-form select,.lead-form textarea{
  display:block;width:100%;margin-top:6px;background:#161616;border:1px solid #2e2e2e;
  color:#fff;font-family:var(--font-body);font-size:14px;letter-spacing:normal;
  text-transform:none;padding:11px 13px;border-radius:var(--radius);transition:.18s;}
.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus{
  outline:none;border-color:var(--red);background:#1c1414;}
.lead-form textarea{resize:vertical;}
.lead-form .btn{width:100%;margin-top:4px;}
.form-note{font-size:12.5px;color:#8a8a8a;margin:14px 0 0;}
.form-status{font-size:13.5px;margin:12px 0 0;min-height:1em;color:#4ade80;}
.form-status.error{color:#ff8f8f;}

/* ---------- contact ---------- */
.contact-cards{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:22px;}
.contact-card{display:block;background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);padding:24px 22px;transition:.22s;}
a.contact-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--red);}
.contact-card h3{font-size:17px;font-weight:700;margin-bottom:6px;}
.contact-card p{font-size:14px;color:var(--grey-text);margin-bottom:10px;}
.socials.big a{width:42px;height:42px;border:1px solid var(--border);border-radius:var(--radius);color:#4a4a4a;}
.socials.big a:hover{background:var(--red);border-color:var(--red);color:#fff;}
.map-section{line-height:0;}
.map-section iframe{width:100%;height:420px;border:0;filter:grayscale(.35) contrast(1.05);}

.hours-block{margin:18px 0;max-width:420px;}
.hours-block li{display:flex;justify-content:space-between;gap:12px;padding:10px 0;
  border-bottom:1px solid var(--border);font-size:14px;}
.hours-block b{font-family:var(--font-head);font-size:16px;letter-spacing:.03em;}
.hours-block.bare li{padding:6px 0;border:none;font-size:13.5px;}

/* ---------- prose ---------- */
.prose{max-width:820px;margin:0 auto;}
.prose h2{font-size:24px;font-weight:700;margin:32px 0 10px;}
.prose p,.prose li{font-size:15px;color:#3d3d3d;line-height:1.75;}
.prose ul{list-style:disc;padding-left:22px;margin-bottom:16px;}
.prose li{margin-bottom:7px;}
.prose a{color:var(--red);text-decoration:underline;}
.updated{font-size:13px;color:var(--grey-text);text-transform:uppercase;letter-spacing:.1em;
  font-family:var(--font-head);}

.disclaimer{margin-top:28px;font-size:12.5px;color:#8a8a8a;font-style:italic;
  border-top:1px solid var(--border);padding-top:16px;}

/* ============================================================
   14. INNER PAGE RESPONSIVE
   ============================================================ */
@media (max-width:1180px){
  .program-grid.wide{grid-template-columns:repeat(3,1fr);}
  .info-grid,.service-grid{grid-template-columns:repeat(2,1fr);}
  .step-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:1024px){
  .split{grid-template-columns:1fr;gap:34px;}
  .side-card,.lead-form{position:static;}
  .price-grid{grid-template-columns:1fr;}
  .hours-strip{grid-template-columns:repeat(2,1fr);}
  .values-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:820px){
  .page-banner{min-height:250px;}
  .program-grid.wide{grid-template-columns:repeat(2,1fr);}
  .contact-cards{grid-template-columns:1fr;}
  .callout{flex-direction:column;align-items:flex-start;}
  .map-section iframe{height:320px;}
}
@media (max-width:560px){
  .info-grid,.service-grid,.step-grid,.step-grid.tight,.values-grid{grid-template-columns:1fr;}
  .program-grid.wide{grid-template-columns:1fr;}
  .hours-strip{grid-template-columns:1fr;}
  .affil-list li{font-size:14px;padding:10px 16px;}
  .callout-actions{width:100%;}
  .callout-actions .btn{flex:1;}
  /* mobile schedule table -> stacked cards */
  table.sched{min-width:0;}
  table.sched thead{display:none;}
  table.sched tr{display:block;border-top:1px solid var(--border);padding:10px 0;}
  table.sched td{display:flex;justify-content:space-between;gap:14px;border:none;padding:5px 16px;}
  table.sched td::before{content:attr(data-l);font-family:var(--font-head);
    font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--grey-text);}
  table.sched td:last-child{text-align:right;white-space:normal;}
}

/* ============================================================
   15. ICON SIZING (generated inline SVGs)
   ============================================================ */
.hero-features > li > svg{width:26px;height:26px;flex:none;color:var(--red);}
.stat > svg{width:38px;height:38px;flex:none;color:var(--ink);stroke-width:1.4;}
.btn > svg{width:17px;height:17px;flex:none;}
.btn-lg > svg{width:19px;height:19px;}
.btn-sm > svg{width:14px;height:14px;}
.link-more > svg{width:17px;height:11px;}
.crumbs{display:block;}

/* ---------- contrast fixes ---------- */
.callout .btn-dark{background:#2a2a2a;border:1px solid #444;}
.callout .btn-dark:hover{background:#3a3a3a;border-color:#666;}
.side-card .btn-dark{background:#242424;border:1px solid #3a3a3a;}
.side-card .btn-dark:hover{background:#333;border-color:#5a5a5a;}
.map-section{background:#141414;min-height:420px;}

/* ============================================================
   16. REAL PHOTO ADJUSTMENTS
   ============================================================ */

/* Hero photo pehle se dark hai — overlay halka kar diya taaki
   bags aur ring dikhein, aur left par text readable rahe. */
.hero-overlay{
  background:linear-gradient(90deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.72) 30%,
    rgba(0,0,0,.30) 62%,
    rgba(0,0,0,.10) 100%);
}
.hero-bg{object-position:center right;}

/* CTA band ab asli glove photo use karta hai.
   #d0151d exactly image ke red se match karta hai, isliye
   left side flat aur crisp rehta hai — koi seam nahi dikhta. */
/* Band ka red exactly glove image ke red (#d0161d) se match karta hai,
   isliye slab ka left kinaara band mein ghul jaata hai — koi seam nahi. */
.cta-band{background:#d0161d;}
.cta-gloves{
  display:block;position:absolute;right:0;top:0;
  height:100%;width:auto;max-width:none;
  object-fit:cover;object-position:left center;
  opacity:1;pointer-events:none;
}

/* About photo mein play button already baked-in hai,
   isliye poora image hi clickable hai. */
.about-media.has-video{cursor:pointer;}
.about-media.has-video img{transition:transform .4s ease, filter .3s ease;}
.about-media.has-video:hover img{transform:scale(1.03);filter:brightness(1.08);}
.about-media.has-video:focus-visible{outline:3px solid var(--red);outline-offset:3px;}
