/* ===================================================================
   ACS THEME — main.css
   Mobile-first. No framework. No specificity wars.
=================================================================== */

/* ------------------------------------------------------------------
   Custom properties
------------------------------------------------------------------ */
:root {
  --red:       #cc0000;
  --red-dark:  #a30000;
  --black:     #111111;
  --grey-dk:   #333333;
  --grey-md:   #666666;
  --grey-lt:   #f5f5f5;
  --white:     #ffffff;
  --border:    #e2e2e2;

  /* Dark charcoal theme */
  --bg:        #232323;
  --bg-alt:    #2b2b2b;
  --bg-card:   #323232;
  --bg-input:  #383838;
  --border-dk: rgba(255,255,255,.1);
  --text:      #f0f0f0;
  --text-md:   #f0f0f0;
  --text-lt:   rgba(240,240,240,.38);

  --font-body:    'Lato', system-ui, sans-serif;
  --font-head:    'Montserrat', system-ui, sans-serif;
  --font-accent:  'Raleway', system-ui, sans-serif;

  --nav-h:     80px;
  --max-w:     1200px;
  --gap:       clamp(1rem, 4vw, 2rem);

  --radius:    6px;
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --transition: .25s ease;
}

/* ------------------------------------------------------------------
   Reset / base
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ------------------------------------------------------------------
   Typography scale
------------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}
p { color: var(--text-md); }
h1 { font-size: clamp(2rem,   5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { max-width: 68ch; }

/* ------------------------------------------------------------------
   Layout utilities
------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.container--wide {
  max-width: 1560px;
}
.section {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--bg);
}
.section--tight-top {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}
.section--alt  { background: var(--bg-alt); }
.section--grey { background: var(--bg-alt); }
.section--dark { background: #111; color: var(--white); }
.section--red  { background: var(--red); color: var(--white); }

/* ------------------------------------------------------------------
   Marquee strip
------------------------------------------------------------------ */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip {
  background: var(--black);
  overflow: hidden;
  padding-block: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  line-height: 1;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__track--reverse {
  animation-direction: reverse;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: .8rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee__group > * { padding-inline: 1.5rem; }
.marquee__sep {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: .6rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ------------------------------------------------------------------
   Section header
------------------------------------------------------------------ */
.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .85rem;
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--red);
  opacity: .5;
}
.section__header h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .6rem;
}
.section__header h2::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: .8rem auto 0;
}
.section__sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.7;
}
.section--dark .section__eyebrow,
.section--red  .section__eyebrow { color: rgba(255,255,255,.7); }
.section--dark h2,
.section--dark h3 { color: var(--white); }

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85em 2em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(204,0,0,.35);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,.45); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: var(--grey-dk); }

/* ------------------------------------------------------------------
   Navigation
------------------------------------------------------------------ */
/* ------------------------------------------------------------------
   DARK HEADER — solid black, always readable
------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.1);
  transition: box-shadow var(--transition);
}
.site-header .container {
  height: 100%;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo — transparent PNG, renders perfectly on dark nav */
.site-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.site-logo svg { height: 40px; width: auto; }
.site-logo__text {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.15;
  white-space: nowrap;
}
.site-logo__text span {
  color: var(--red);
  display: block;
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Primary nav */
.primary-nav { display: none; }
.primary-nav .nav-menu,
.primary-nav ul {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
}
.primary-nav li { position: relative; }
.primary-nav > .nav-menu > li > a,
.primary-nav > ul > li > a {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .6em .85em;
  border-radius: var(--radius);
  color: rgba(0,0,0,.72);
  transition: color var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .3em;
  position: relative;
  background: transparent;
}
/* Sliding underline on top-level links */
.primary-nav > .nav-menu > li > a::after,
.primary-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: .15em;
  left: .85em;
  right: .85em;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.primary-nav > .nav-menu > li:hover > a::after,
.primary-nav > .nav-menu > .current-menu-item > a::after,
.primary-nav > ul > li:hover > a::after,
.primary-nav > ul > .current-menu-item > a::after { transform: scaleX(1); }

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav a[aria-current="page"] {
  color: var(--black);
  background: transparent;
}
.primary-nav .current-menu-item > a { color: var(--red); }
.nav-cta { margin-left: .75rem; }

/* Dropdown toggle chevron */
.dropdown-toggle {
  background: none;
  border: none;
  padding: .6em .25em;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition), transform var(--transition);
}
.dropdown-toggle svg { pointer-events: none; }
.menu-item-has-children:hover > .dropdown-toggle,
.menu-item-has-children.is-open > .dropdown-toggle { color: var(--white); }
.menu-item-has-children.is-open > .dropdown-toggle { transform: rotate(180deg); }

/* Dropdown sub-menus — dark theme */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
  list-style: none;
  padding: .4rem 0;
}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu,
.primary-nav .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.primary-nav .sub-menu li { position: static; }
.primary-nav .sub-menu a {
  display: block;
  padding: .65em 1.25em;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .77rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  border-radius: 0;
  background: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.primary-nav .sub-menu li:last-child a { border-bottom: none; }
.primary-nav .sub-menu a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Hamburger — dark bars on white header */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(0,0,0,.06); }
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.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; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer — dark theme */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: #0e0e0e;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 2.5rem;
}
/* Mobile nav list */
.mobile-nav-list, .mobile-menu ul { list-style: none; }
.mobile-nav-list > .menu-item > a,
.mobile-menu > .mobile-menu__inner > ul > .menu-item > a {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  padding: .9em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu .menu-item > a:hover,
.mobile-menu .menu-item.is-open > a { color: var(--red); }

/* Mobile sub-menu (accordion) */
.mobile-menu .sub-menu {
  list-style: none;
  display: none;
  padding-left: 1rem;
  border-left: 3px solid rgba(204,0,0,.4);
  margin-block: .4rem .8rem;
}
.mobile-menu .menu-item-has-children.is-open > .sub-menu { display: block; }
.mobile-menu .sub-menu a {
  display: block;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .6em .5em;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--transition);
}
.mobile-menu .sub-menu li:last-child a { border-bottom: none; }
.mobile-menu .sub-menu a:hover { color: var(--red); }

/* Mobile accordion toggle */
.mobile-accordion-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255,255,255,.4);
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.menu-item-has-children.is-open .mobile-accordion-btn {
  color: var(--red);
  transform: rotate(180deg);
}

.mobile-menu__ctas .btn--dark {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}
.mobile-menu__ctas .btn--dark:hover { background: rgba(255,255,255,.18); }

.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.mobile-menu__ctas .btn { width: 100%; justify-content: center; }

@media (min-width: 900px) {
  .primary-nav { display: flex; align-items: center; }
  .nav-toggle   { display: none; }
}

/* ------------------------------------------------------------------
   Hero — full redesign
------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--black);
  overflow: hidden;
}
/* Photo layer — full bleed */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 25%;
}
/* Gradient overlay: opaque-left → transparent-right so photo shows on right */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,.93) 0%,
    rgba(10,10,10,.88) 38%,
    rgba(10,10,10,.55) 62%,
    rgba(10,10,10,.18) 100%
  );
}
/* Red accent bar — hidden */
.hero__accent { display: none; }
/* Main content */
.hero__content {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: calc(var(--nav-h) + clamp(3rem, 8vw, 5rem)) clamp(2rem, 4vw, 3rem);
  max-width: 660px;
}
.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .75rem;
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero__eyebrow-sep { color: rgba(255,255,255,.25); }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.hero__title span { color: var(--red); display: block; }
.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  letter-spacing: .02em;
}
.hero__phone:hover { color: var(--white); }

/* Stats strip at bottom of hero */
.hero__stats {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.4rem;
  margin-top: auto;
}
.hero__stats-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
  align-items: center;
  text-align: center;
  padding-inline: 1rem;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero__stat:last-child { border-right: none; }
.hero__stat strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat span {
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Scroll indicator — right side, vertical */
.hero__scroll {
  position: absolute;
  right: 2rem;
  bottom: 6rem;
  z-index: 4;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-accent);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 44px;
  background: rgba(255,255,255,.2);
}
@media (max-width: 639px) { .hero__scroll { display: none; } }
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ------------------------------------------------------------------
   Trust bar
------------------------------------------------------------------ */
.trust-bar {
  background: var(--red);
  padding-block: 1rem;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-item__icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* ------------------------------------------------------------------
   Services grid
------------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 540px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  transform: translateY(-4px);
  border-color: var(--red);
  background: #f5f0f0;
}
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(204,0,0,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--red);
}
.acs-lucide,
.service-card__icon svg,
.service-landing-card__icon svg {
  width: 28px; height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.service-card__desc {
  font-size: .9rem;
  color: var(--grey-md);
  line-height: 1.6;
  flex: 1;
}
.service-card__link {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap var(--transition);
  display: flex;
  align-items: center;
  gap: .3em;
}
.service-card__link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ------------------------------------------------------------------
   Programs / sports bar
------------------------------------------------------------------ */
.programs-bar {
  padding-block: clamp(2rem, 5vw, 3rem);
}
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.program-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65em 1.4em;
  border: 2px solid var(--border);
  border-radius: 99px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-dk);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.program-chip:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204,0,0,.04);
}
.program-chip__icon { font-size: 1.1rem; }

/* ------------------------------------------------------------------
   Programs parallax banner
------------------------------------------------------------------ */
.programs-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.programs-banner__img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('../images/programs-banner.jpg');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.programs-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 50%, rgba(0,0,0,.35) 100%);
}

/* ------------------------------------------------------------------
   About / Philosophy
------------------------------------------------------------------ */
.about-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 4fr 7fr; }
  .about-grid--reverse .about-img { order: 2; }
}
.about-img {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--grey-lt);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  max-width: 380px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.6) 100%
  ),
  linear-gradient(
    to right,
    rgba(204,0,0,.08) 0%,
    transparent 60%
  );
  border-radius: inherit;
}
.about-img--placeholder {
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: var(--border);
}
.about-text { max-width: 100%; }
.about-text p { max-width: 100%; margin-block: .75rem; color: var(--grey-md); }
.about-text .btn { margin-top: 1.5rem; }

@media (min-width: 800px) {
  .about-grid--equal { grid-template-columns: 1fr 1fr; }
}
.about-img--equal {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3/4;
  margin: 0 auto;
}

.values-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.value-item__icon {
  width: 36px; height: 36px;
  background: rgba(204,0,0,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.value-item__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .15rem;
}
.value-item__text span { font-size: .87rem; color: var(--grey-md); }

/* ------------------------------------------------------------------
   Testimonials
------------------------------------------------------------------ */
.testimonials-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: #3a3a3a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transform: translateY(-4px);
  border-color: rgba(204,0,0,.4);
}
.testimonial-card__stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: .1em;
}
.testimonial-card__quote {
  font-family: var(--font-accent);
  font-size: .88rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.65;
  flex: 1;
}
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after  { content: '\201D'; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grey-lt);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
}
.testimonial-card__meta {
  font-size: .8rem;
  color: var(--grey-md);
}
.testimonial-card__link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.testimonial-card__google {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .25rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.testimonial-card__google .fa-google {
  font-size: 1rem;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ------------------------------------------------------------------
   FAQ accordion
------------------------------------------------------------------ */
/* ── Mobile overrides: commitment image block & stats block (service/program detail) ── */
@media (max-width: 700px) {
  .commitment-block { grid-template-columns: 1fr !important; }
  .commitment-block__img { min-height: 220px !important; }
}
@media (max-width: 560px) {
  .stats-block { grid-template-columns: 1fr !important; }
}

.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  transition: color var(--transition);
}
.faq-toggle:hover { color: var(--red); }
.faq-toggle[aria-expanded="true"] { color: var(--red); }
.faq-toggle__icon {
  width: 28px; height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .9rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.faq-toggle[aria-expanded="true"] .faq-toggle__icon {
  transform: rotate(45deg);
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.is-open { max-height: 600px; }
.faq-answer__inner {
  padding-bottom: 1.25rem;
  font-size: .95rem;
  color: var(--grey-md);
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   Blog preview
------------------------------------------------------------------ */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}
.topic-pill {
  display: inline-block;
  padding: .55em 1.2em;
  border: 1.5px solid var(--border-dk, var(--border));
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text, var(--grey-dk));
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.topic-pill:hover {
  border-color: var(--red);
  background: rgba(204,0,0,.1);
  color: var(--red);
}

.blog-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dk);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.blog-card__cat {
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--red); }
.blog-card__excerpt { font-size: .88rem; color: var(--grey-md); flex: 1; }
.blog-card__meta {
  font-size: .8rem;
  color: var(--grey-md);
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ------------------------------------------------------------------
   CTA band
------------------------------------------------------------------ */
.cta-band {
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5rem);
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.75); max-width: 50ch; margin-inline: auto; font-family: var(--font-accent); margin-bottom: 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding-block: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 600px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 1rem; max-width: 30ch; }
.footer__logo { filter: brightness(0) invert(1); max-height: 52px; width: auto; }
.footer-col__title {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: .6rem; font-size: .88rem; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-contact__item { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact__icon { color: var(--red); flex-shrink: 0; margin-top: .1em; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

/* ------------------------------------------------------------------
   Page hero (inner pages)
------------------------------------------------------------------ */
.page-hero {
  background: var(--black);
  padding-block: calc(var(--nav-h) + 3rem) 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: .75rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--red); }

/* ------------------------------------------------------------------
   Single post
------------------------------------------------------------------ */
.post-content {
  font-size: 1.1rem;
}
.post-content img { border-radius: var(--radius); margin-block: 1.5rem; width: 100%; }
.post-content h2, .post-content h3 { margin-block: 2rem .75rem; line-height: 1.3; }
.post-content p  { margin-bottom: 1.4rem; line-height: 1.85; color: var(--grey-md); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; color: var(--grey-md); }
.post-content li { margin-bottom: .5rem; line-height: 1.8; }

/* Float every other content image to alternate sides on wide viewports */
@media (min-width: 700px) {
  .post-content figure.wp-block-image {
    max-width: 320px;
    margin-block: .25rem 1.25rem;
  }
  .post-content figure.wp-block-image:nth-of-type(odd) {
    float: right;
    margin-left: 2rem;
  }
  .post-content figure.wp-block-image:nth-of-type(even) {
    float: left;
    margin-right: 2rem;
  }
}
.post-content blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--grey-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-block: 1.5rem;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--grey-dk);
}

/* ------------------------------------------------------------------
   Forms
------------------------------------------------------------------ */
.acs-form .form-row { margin-bottom: 1.25rem; }
.acs-form label {
  display: block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--black);
}
.acs-form input,
.acs-form textarea,
.acs-form select {
  width: 100%;
  padding: .8em 1em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-input);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.acs-form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 16px;
  padding-right: 2.75em;
}
.acs-form input:focus,
.acs-form textarea:focus,
.acs-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}
.acs-form textarea { min-height: 140px; resize: vertical; }

/* ── Contact page ──────────────────────────────────────────────── */
.appointment-card {
  max-width: 760px;
  margin-inline: auto;
}
.appointment-card .section__header { margin-bottom: 1.5rem; }
.appointment-card .section__header h2 { margin-bottom: .75rem; }
.appointment-card .form-banner { text-align: left; }

.form-row--split {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) {
  .form-row--split { grid-template-columns: 1fr 1fr; }
}
.form-row--split .form-row { margin-bottom: 0; }

.date-select-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: .75rem;
}

.plain-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.plain-options--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem 1.5rem;
  align-items: start;
}
@media (min-width: 560px) {
  .plain-options--grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
  .plain-options--grid { grid-template-columns: repeat(3, 1fr); }
}
.plain-option {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--text-md);
  cursor: pointer;
}
.plain-option:hover { color: var(--white); }
.plain-option input[type="radio"] {
  accent-color: var(--red);
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin: .15em 0 0;
}

.contact-info-row {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  text-align: center;
}
@media (min-width: 700px) {
  .contact-info-row { grid-template-columns: repeat(4, 1fr); }
}
.contact-info-row li { display: flex; flex-direction: column; align-items: center; }
.contact-info-row__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(204,0,0,.12);
  color: var(--red);
  margin-bottom: .85rem;
}
.contact-info-row__icon svg { width: 22px; height: 22px; }
.contact-info-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
  color: var(--white);
}
.contact-info-row span { color: var(--text-md); line-height: 1.6; }
.contact-info-row a { color: var(--text-md); }
.contact-info-row a:hover { color: var(--red); }

.contact-map {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--grey-lt);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.location-grid__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.value-item--dark strong { color: var(--white); }
.value-item--dark span   { color: var(--text-md); }
.value-item--dark .value-item__icon { background: rgba(204,0,0,.15); }
.location-grid__map .contact-map {
  max-width: none;
  aspect-ratio: 4/3;
  height: 100%;
}
.location-grid__info .btn { align-self: flex-start; margin-top: .25rem; }
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1.15fr; }
  .location-grid__map .contact-map { aspect-ratio: auto; min-height: 420px; }
}

.form-banner {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.6;
}
.form-banner svg { width: 24px; height: 24px; min-width: 24px; margin-top: .1em; }
.form-banner--success {
  background: rgba(40,160,90,.12);
  border: 1px solid rgba(40,160,90,.35);
  color: var(--white);
}
.form-banner--success svg { color: #3ec77a; }
.form-banner--error {
  background: rgba(204,0,0,.1);
  border: 1px solid rgba(204,0,0,.35);
  color: var(--white);
}
.form-banner--error svg { color: var(--red); }
.form-banner a { color: inherit; text-decoration: underline; }

/* ------------------------------------------------------------------
   Utilities
------------------------------------------------------------------ */
.text-center { text-align: center; }
.text-red    { color: var(--red); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ------------------------------------------------------------------
   Skip link
------------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  padding: .5em 1em;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------------------
   Animations (reduced-motion safe)
------------------------------------------------------------------ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@media (prefers-reduced-motion: no-preference) {
  /* Scroll fade-up */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
  }
  .fade-up.is-visible { opacity: 1; transform: none; }

  /* Stagger service cards */
  .services-grid .service-card:nth-child(1) { transition-delay: .05s; }
  .services-grid .service-card:nth-child(2) { transition-delay: .12s; }
  .services-grid .service-card:nth-child(3) { transition-delay: .19s; }
  .services-grid .service-card:nth-child(4) { transition-delay: .26s; }
  .services-grid .service-card:nth-child(5) { transition-delay: .33s; }
  .services-grid .service-card:nth-child(6) { transition-delay: .40s; }
  .services-grid .service-card:nth-child(7) { transition-delay: .47s; }
  .services-grid .service-card:nth-child(8) { transition-delay: .54s; }

  /* Hero entrance — each element slides up in sequence */
  .hero__eyebrow {
    animation: fadeSlideUp .6s cubic-bezier(.22,1,.36,1) .1s both;
  }
  .hero__title {
    animation: fadeSlideUp .75s cubic-bezier(.22,1,.36,1) .3s both;
  }
  .hero__subtitle {
    animation: fadeSlideUp .65s cubic-bezier(.22,1,.36,1) .55s both;
  }
  .hero__actions {
    animation: fadeSlideUp .65s cubic-bezier(.22,1,.36,1) .75s both;
  }
  .hero__stats {
    animation: fadeIn .8s ease .95s both;
  }

  /* Icon circle pop on card hover */
  .service-card:hover .service-card__icon {
    transform: scale(1.12);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), background var(--transition);
  }
  .service-card__icon {
    transition: transform .3s ease, background var(--transition);
  }

}

/* ------------------------------------------------------------------
   Dark charcoal theme — card & surface overrides
------------------------------------------------------------------ */

/* Cards */
.service-card,
.service-landing-card {
  background: #fff;
  border-color: var(--border);
}
.service-card__title,
.service-landing-card__name  { color: var(--black); }
.service-card__desc,
.service-landing-card__desc  { color: var(--grey-md); }
.service-card__icon,
.service-landing-card__icon  { background: rgba(204,0,0,.08); }
.service-card__icon svg,
.service-landing-card__icon svg { color: var(--red); width: 26px; height: 26px; }

.blog-card { background: var(--bg-card); border-color: var(--border-dk); }
.blog-card__title             { color: var(--text); }
.blog-card__excerpt           { color: var(--text-md); }
.blog-card__meta              { color: var(--text-lt); border-color: var(--border-dk); }
.blog-card__img               { background: var(--bg-alt); }

.testimonial-card { background: #3a3a3a; border-color: rgba(255,255,255,.12); }
.testimonial-card__quote      { color: #fff; }
.testimonial-card__author     { border-color: rgba(255,255,255,.12); }
.testimonial-card__name       { color: #fff; }
.testimonial-card__meta       { color: rgba(255,255,255,.55); }
.testimonial-card__avatar     { background: #3a3a3a; color: rgba(255,255,255,.7); }
.testimonial-card__stars svg  { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }

.team-card { background: var(--bg-card); border-color: var(--border-dk); }
.team-card__name              { color: var(--text); }
.team-card__bio               { color: var(--text-md); }
.team-card__photo             { background: var(--bg-alt); }

/* FAQ */
.faq-item        { border-color: var(--border-dk); }
.faq-toggle      { color: var(--text); }
.faq-toggle__icon { border-color: var(--border-dk); }
.faq-answer__inner { color: var(--text-md); }
.faq-answer__inner a { color: var(--red); font-weight: 600; }
.faq-answer__inner a:hover { text-decoration: underline; }

/* Programs */
.program-chip { border-color: rgba(255,255,255,.15); color: var(--text); }
.program-chip:hover { border-color: var(--red); color: var(--white); background: rgba(204,0,0,.1); }
.program-chip__icon svg { width: 18px; height: 18px; vertical-align: middle; }
.program-landing-card { background: var(--bg-card); border-color: var(--border-dk); }
.program-landing-card__name  { color: var(--text); }
.program-landing-card__icon svg { width: 36px; height: 36px; color: var(--red); }

/* About */
.about-text p  { color: var(--text); font-size: 1.05rem; }
.value-item__text strong { color: var(--text); }
.value-item__text span   { color: var(--text); font-size: .95rem; }
.value-item__icon        { background: rgba(204,0,0,.18); }
.value-item__icon svg    { color: var(--red); width: 20px; height: 20px; }
.about-img--placeholder  { color: var(--text-lt); }
.about-img--placeholder svg { width: 64px; height: 64px; }

/* Trust bar icons */
.trust-item__icon svg { width: 20px; height: 20px; vertical-align: middle; flex-shrink: 0; }

/* Detail sidebar */
.sidebar-card        { background: var(--bg-card); border-color: var(--border-dk); }
.sidebar-card__title { color: var(--text-lt); border-color: var(--border-dk); }
.sidebar-links a     { background: var(--bg-alt); border-color: var(--border-dk); color: var(--text-md); }
.sidebar-links a:hover { color: var(--white); border-color: var(--red); }

/* Detail content text */
.detail-content h2,
.detail-content h3  { color: var(--text); }
.detail-content p,
.detail-content li  { color: var(--text-md); }

/* Member / team page */
.member-photo        { background: var(--bg-alt); }
.member-info p       { color: var(--text-md); }
.specialty-tag       { background: rgba(204,0,0,.15); border-color: rgba(204,0,0,.25); }

/* Condition list */
.condition-item { background: var(--bg-alt); color: var(--text-md); }

/* Post content */
.post-content p, .post-content li { color: var(--text-md); }
.post-content h2, .post-content h3 { color: var(--text); }
.post-content blockquote { background: var(--bg-alt); color: var(--text-md); }

/* Forms */
.acs-form label { color: var(--text); }
.acs-form input,
.acs-form textarea,
.acs-form select {
  background: var(--bg-input);
  border-color: var(--border-dk);
  color: var(--text);
}
.acs-form input::placeholder,
.acs-form textarea::placeholder { color: var(--text-lt); }
.acs-form input:focus,
.acs-form textarea:focus,
.acs-form select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,.15); }

/* Page hero */
.page-hero { background: #111; }
.breadcrumb a { color: rgba(255,255,255,.5); }

/* Navigation - section eyebrow override (already red, fine) */
.section__eyebrow { color: var(--red); }

/* Footer already dark — just ensure contrast */
.site-footer { background: #111; }

/* Inner hero text */
.inner-hero h1 { color: var(--white); }
.inner-hero p  { color: rgba(255,255,255,.72); }

/* Hero stats */
.hero__stat span { color: rgba(255,255,255,.55); }

/* Section sub-text */
.section__sub { color: #fff; max-width: 60ch; margin-inline: auto; }

/* ------------------------------------------------------------------
   Inner page hero (services / programs / team / contact)
------------------------------------------------------------------ */
.inner-hero {
  position: relative;
  background: #1e0000;
  padding-block: calc(var(--nav-h) + 3.5rem) 3.5rem;
  overflow: hidden;
}
.inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: none;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 140% at 10% 60%, rgba(160,0,0,.65) 0%, transparent 65%),
    radial-gradient(ellipse 80% 100% at 90% 30%, rgba(100,0,0,.35) 0%, transparent 60%),
    linear-gradient(180deg, rgba(20,0,0,.3) 0%, rgba(8,0,0,.75) 100%);
}
.inner-hero__accent { display: none; }

/* Stronger centered red gradient — Services / Programs landing / Custom Bracing only */
.inner-hero--accent .inner-hero__overlay {
  background:
    radial-gradient(ellipse 70% 90% at 50% 55%, rgba(204,0,0,.30) 0%, rgba(120,0,0,.13) 45%, transparent 75%),
    radial-gradient(ellipse 75% 120% at 0% 50%, rgba(140,0,0,.30) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10,10,10,.25) 0%, rgba(10,10,10,.65) 100%);
}
.inner-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-inline: auto;
  max-width: 860px;
}
/* Service detail pages — photo hero, no red gradient */
.inner-hero--photo { background: #111; }
.inner-hero--photo .inner-hero__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.62) 100%);
}

.inner-hero .section__eyebrow { color: rgba(255,255,255,.85); justify-content: center; text-shadow: 0 1px 4px rgba(0,0,0,.8); font-size: 1rem; }
.inner-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-block: .5rem 1rem;
  letter-spacing: -.02em;
}
.inner-hero p {
  color: rgba(255,255,255,.88);
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.7;
}
.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: .85rem;
  font-family: var(--font-accent);
  text-align: center;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }

/* ------------------------------------------------------------------
   Service / Program detail page layout
------------------------------------------------------------------ */
.detail-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .detail-layout { grid-template-columns: 1fr 300px; align-items: start; }
}
.detail-content h2 { margin-block: 2rem .75rem; }
.detail-content h2:first-child { margin-top: 0; }
.detail-content p { color: var(--white); line-height: 1.8; margin-bottom: 1rem; }
.detail-content ul, .detail-content ol { padding-left: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.detail-content li { margin-bottom: .4rem; line-height: 1.7; }
.detail-content img { border-radius: var(--radius); margin-block: 1.5rem; }

/* Common injuries grid */
.injury-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 2rem;
}
.injury-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.injury-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.injury-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(204,0,0,.12);
  color: var(--red);
}
.injury-card__icon svg { width: 22px; height: 22px; }
.injury-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: .35rem; }
.injury-card__desc { font-size: .97rem; color: var(--text-md); line-height: 1.7; margin: 0; }

/* What the Program Includes — vertical list with arrow connectors */
.program-items-list {
  display: flex;
  flex-direction: column;
}
.program-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .85rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
}
.program-item__num {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--red);
  min-width: 1.6rem;
  line-height: 1.7;
}
.program-item__text { font-size: 1.02rem; color: var(--text-md); line-height: 1.7; margin: 0; }
.program-item__name { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.program-item__connector {
  display: flex;
  justify-content: center;
  color: var(--red);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
  padding: .1rem 0;
}

/* Motocross gallery */
.moto-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.moto-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin: 0;
}
@media (max-width: 700px) {
  .moto-gallery { grid-template-columns: 1fr; }
}

/* Sticky sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .detail-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
}
.sidebar-card {
  background: var(--grey-lt);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.sidebar-card__title {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-md);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
}
.sidebar-cta h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.sidebar-cta p { color: rgba(255,255,255,.65); font-size: .88rem; max-width: 28ch; margin: 0 auto 1.25rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-links { display: flex; flex-direction: column; gap: .35rem; }
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65em .9em;
  background: var(--bg-alt);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-md);
  transition: color var(--transition), border-color var(--transition);
}
.sidebar-links a:hover { color: var(--red); border-color: var(--red); }
.sidebar-links a::after { content: '→'; font-size: .9em; }

/* Clinic info list inside sidebar */
.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .875rem;
  color: #111111;
  line-height: 1.5;
}
.sidebar-info li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.sidebar-info svg,
.sidebar-info .acs-lucide {
  width: 15px;
  height: 15px;
  min-width: 15px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: .2em;
}
.sidebar-info a { color: #111111; text-decoration: none; }
.sidebar-info a:hover { color: var(--red); }

/* Image / text split block — service detail pages */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dk);
  margin-bottom: 3rem;
}
.split-block__media { min-height: 440px; background-size: cover; background-position: center; }
.split-block__body {
  padding: 2.5rem;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 700px) {
  .split-block { grid-template-columns: 1fr; }
  .split-block__media { min-height: 220px; }
  .split-block__body { padding: 1.75rem; }
}

/* Placeholder box for images not yet supplied */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  padding: 2rem;
  height: 100%;
  background: var(--bg-alt);
  border: 1px dashed var(--border-dk);
  color: var(--text-md);
}
.img-placeholder svg { width: 48px; height: 48px; opacity: .5; }
.img-placeholder__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.img-placeholder__hint { font-size: .8rem; max-width: 22ch; margin: 0; }

/* ------------------------------------------------------------------
   Team page
------------------------------------------------------------------ */
.team-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-card__photo {
  aspect-ratio: 3/4;
  background: var(--grey-lt);
  overflow: hidden;
  position: relative;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card__photo-placeholder {
  display: grid; place-items: center;
  font-size: 5rem; color: var(--border);
  width: 100%; height: 100%;
}
.team-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.team-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.team-card__title {
  font-family: var(--font-accent);
  font-size: .85rem;
  color: var(--red);
  font-weight: 600;
}
.team-card__bio {
  font-size: .88rem;
  color: var(--grey-md);
  line-height: 1.65;
  margin-top: .5rem;
  flex: 1;
}
.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.team-card__link::after { content: '→'; transition: transform var(--transition); }
.team-card:hover .team-card__link::after { transform: translateX(4px); }

/* Team member single page */
.member-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 800px) { .member-layout { grid-template-columns: 320px 1fr; } }
.member-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-lt);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.member-info h1 { margin-bottom: .3rem; }
.member-info__title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.member-info p { color: var(--grey-md); line-height: 1.8; margin-bottom: 1rem; }
.specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.specialty-tag {
  padding: .4em .9em;
  background: rgba(204,0,0,.08);
  border: 1px solid rgba(204,0,0,.2);
  border-radius: 99px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   Services / Programs landing grids
------------------------------------------------------------------ */
.services-landing-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 540px)  { .services-landing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .services-landing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .services-landing-grid { grid-template-columns: repeat(4, 1fr); } }

@media (min-width: 540px)  { .services-landing-grid--3col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px)  { .services-landing-grid--3col { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .services-landing-grid--3col { grid-template-columns: repeat(3, 1fr); } }
.services-landing-grid--3col .service-landing-card__name { color: var(--white); }
.services-landing-grid--3col .service-landing-card__desc { color: rgba(255,255,255,.85); }

.service-landing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-landing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--red);
}
.service-landing-card__icon {
  width: 52px; height: 52px;
  background: rgba(204,0,0,.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.service-landing-card__img {
  position: relative;
  width: calc(100% + 3rem);
  margin: -1.75rem -1.5rem 0;
  aspect-ratio: 16/10;
  background-color: rgba(204,0,0,.06);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: brightness(.85);
  flex-shrink: 0;
}
.service-landing-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #9a9184;
  opacity: .3;
  border-radius: inherit;
}
.service-landing-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.service-landing-card--media .service-landing-card__name { color: var(--white); }
.service-landing-card--media .service-landing-card__desc { color: var(--text-md); }
.service-landing-card__desc {
  font-size: .88rem;
  color: var(--grey-md);
  line-height: 1.6;
  flex: 1;
}
.service-landing-card__cta {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .3em;
}
.service-landing-card__cta::after { content: '→'; transition: transform var(--transition); }
.service-landing-card:hover .service-landing-card__cta::after { transform: translateX(4px); }

.programs-landing-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px)  { .programs-landing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .programs-landing-grid { grid-template-columns: repeat(6, 1fr); } }

.program-landing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.program-landing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--red);
}
.program-landing-card__icon { font-size: 2.5rem; line-height: 1; }
.program-landing-card__name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.program-landing-card:hover .program-landing-card__name { color: var(--red); }

/* Condition list for service pages */
.condition-grid {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-block: 1rem;
}
.condition-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--grey-dk);
  padding: .5em .75em;
  background: var(--grey-lt);
  border-radius: var(--radius);
}
.condition-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ------------------------------------------------------------------
   Rating badge (testimonials header)
------------------------------------------------------------------ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(244,185,66,.08);
  border: 1px solid rgba(244,185,66,.22);
  border-radius: 99px;
  padding: .55em 1.4em;
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.rating-badge__stars { color: #f4b942; font-size: 1rem; letter-spacing: .04em; }
.rating-badge__score { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.rating-badge__sep   { color: var(--text-lt); }
.rating-badge .fa-google {
  font-size: .88rem;
  background: linear-gradient(135deg, #4285F4 25%, #34A853 50%, #FBBC05 75%, #EA4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ------------------------------------------------------------------
   Testimonials — visual redesign
------------------------------------------------------------------ */
.testimonial-card {
  background: linear-gradient(145deg, #292929 0%, #1e1e1e 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}

/* Animated red bar slides in from left on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(204,0,0,.3) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(204,0,0,.4);
  box-shadow: 0 20px 56px rgba(0,0,0,.5), 0 0 0 1px rgba(204,0,0,.15), 0 0 28px rgba(204,0,0,.06);
  transition-delay: 0s;
}

/* Big opening quote mark above text */
.testimonial-card__quote {
  font-size: .93rem;
  color: rgba(255,255,255,.84);
  line-height: 1.75;
  flex: 1;
}
.testimonial-card__quote::before {
  content: '\201C';
  display: block;
  font-size: 3.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--red);
  opacity: .65;
  line-height: .65;
  margin-bottom: .6rem;
}
.testimonial-card__quote::after { content: none; }

.testimonial-card__stars svg { fill: #f4b942; stroke: #f4b942; }

.testimonial-card__link {
  padding: 0;
  gap: .85rem;
}

/* Colored avatars per position */
.testimonials-grid li:nth-child(1) .testimonial-card__avatar { background: var(--red);    color: #fff; }
.testimonials-grid li:nth-child(2) .testimonial-card__avatar { background: #1a73e8;       color: #fff; }
.testimonials-grid li:nth-child(3) .testimonial-card__avatar { background: #0f9d58;       color: #fff; }
.testimonials-grid li:nth-child(4) .testimonial-card__avatar { background: #e3a008;       color: #111; }
.testimonials-grid li:nth-child(5) .testimonial-card__avatar { background: #9c27b0;       color: #fff; }
.testimonials-grid li:nth-child(6) .testimonial-card__avatar { background: #e91e63;       color: #fff; }
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-card__author { border-color: rgba(255,255,255,.1); }
.testimonial-card__name   { color: var(--white); font-weight: 700; }
.testimonial-card__meta   { color: rgba(255,255,255,.45); }

/* ------------------------------------------------------------------
   Extended scroll animations
------------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {

  /* Slide from left */
  .fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
  }
  .fade-left.is-visible { opacity: 1; transform: none; }

  /* Slide from right */
  .fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
  }
  .fade-right.is-visible { opacity: 1; transform: none; }

  /* Spring pop-in — uses animation so hover transitions stay instant */
  @keyframes popIn {
    from { opacity: 0; transform: scale(.78) translateY(16px); }
    to   { opacity: 1; transform: none; }
  }
  .pop-in { opacity: 0; }
  .pop-in.is-visible {
    animation: popIn .5s cubic-bezier(.34,1.56,.64,1) calc(var(--i, 0) * 65ms) both;
  }

  /* Section header: stagger eyebrow → h2 → sub as element scrolls in */
  .reveal-header .section__eyebrow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .45s ease 0s, transform .45s ease 0s;
  }
  .reveal-header h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease .12s, transform .5s ease .12s;
  }
  .reveal-header .section__sub {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease .24s, transform .5s ease .24s;
  }
  .reveal-header .rating-badge {
    opacity: 0;
    transform: translateY(14px) scale(.95);
    transition: opacity .5s ease .38s, transform .5s ease .38s;
  }
  .reveal-header.is-visible .section__eyebrow,
  .reveal-header.is-visible h2,
  .reveal-header.is-visible .section__sub,
  .reveal-header.is-visible .rating-badge {
    opacity: 1;
    transform: none;
  }

  /* Testimonial cards entry stagger (delay resets to 0 on hover via card rule above) */
  .testimonials-grid li:nth-child(1).fade-up { transition-delay: .05s; }
  .testimonials-grid li:nth-child(2).fade-up { transition-delay: .15s; }
  .testimonials-grid li:nth-child(3).fade-up { transition-delay: .25s; }
  .testimonials-grid li:nth-child(4).fade-up { transition-delay: .35s; }
  .testimonials-grid li:nth-child(5).fade-up { transition-delay: .45s; }
  .testimonials-grid li:nth-child(6).fade-up { transition-delay: .55s; }

  /* FAQ items entry stagger */
  .faq-item.fade-left { transition-delay: calc(var(--i, 0) * 45ms); }

  /* Blog cards entry stagger */
  .blog-grid .blog-card:nth-child(1) { transition-delay: .05s; }
  .blog-grid .blog-card:nth-child(2) { transition-delay: .15s; }
  .blog-grid .blog-card:nth-child(3) { transition-delay: .25s; }

  /* CTA band stagger */
  .cta-band h2.fade-up         { transition-delay: 0s; }
  .cta-band p.fade-up          { transition-delay: .12s; }
  .cta-band__actions.fade-up   { transition-delay: .24s; }
}

/* ------------------------------------------------------------------
   About page — stats strip
------------------------------------------------------------------ */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
@media (min-width: 700px) {
  .about-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.about-stat { padding: 1.25rem 1rem; }
.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.about-stat span {
  font-family: var(--font-accent);
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.45;
}

/* ------------------------------------------------------------------
   Custom Bracing — compare cards
------------------------------------------------------------------ */
.brace-compare-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .brace-compare-grid { grid-template-columns: repeat(2, 1fr); }
}
.brace-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: 16px;
  padding: 2rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.brace-compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204,0,0,.35);
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
}
.brace-compare-card__header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.brace-compare-card__icon {
  width: 44px; height: 44px;
  background: rgba(204,0,0,.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brace-compare-card__icon svg { color: var(--red); width: 22px; height: 22px; }
.brace-compare-card h3 { font-size: 1.2rem; color: var(--text); }
.brace-compare-card > p { color: var(--text-md); line-height: 1.7; margin-bottom: 1.25rem; }
.brace-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.brace-compare-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.5;
}
.brace-compare-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ------------------------------------------------------------------
   Custom Bracing — brand cards
------------------------------------------------------------------ */
.brands-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
.brands-footnote {
  text-align: center;
  max-width: 60ch;
  margin: 2rem auto 0;
  font-size: 1.05rem;
  color: var(--text-md);
}
.brands-footnote a { color: var(--red); font-weight: 600; }
.brands-footnote a:hover { text-decoration: underline; }
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  border-radius: 16px;
  padding: 2rem;
  border-top: 4px solid var(--red);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.brand-card__tagline {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-shadow: 0 0 14px rgba(255,255,255,.55);
  margin-bottom: .4rem;
}
.brand-card__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .85rem;
  letter-spacing: -.01em;
}
.brand-card__desc {
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
/* ── Bracing page full-width photo banner ─────────────────────── */
.bracing-banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  overflow: hidden;
}
.bracing-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.7) 100%),
    linear-gradient(to right, rgba(140,0,0,.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.bracing-banner__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem clamp(1.5rem, 8vw, 6rem);
  gap: 1rem;
}
.bracing-banner__quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0;
}
.bracing-banner__sub {
  font-family: var(--font-accent);
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.8);
  max-width: 60ch;
  line-height: 1.7;
  margin: 0;
}
.bracing-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.08) saturate(1.1);
}

.brand-card__img {
  margin: -2rem -2rem 1.5rem;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 5/2;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
}
.brand-card__img img {
  max-width: 85%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ------------------------------------------------------------------
   Custom Bracing — process steps
------------------------------------------------------------------ */
.process-steps {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
.process-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.process-step__num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  opacity: .3;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.8rem;
}
.process-step__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.process-step__body p {
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.75;
}

/* ==================================================================
   VISUAL ENHANCEMENT — decorative elements, gradients, image spots
================================================================== */

/* ── Decorative orbs (soft blurred blobs) ─────────────────────── */
.deco-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.deco-orb--red    { background: radial-gradient(circle, rgba(204,0,0,.28) 0%, transparent 70%); }
.deco-orb--red-xs { background: radial-gradient(circle, rgba(204,0,0,.35) 0%, transparent 70%); }
.deco-orb--white  { background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%); }
.deco-orb--xl  { width: 700px; height: 700px; }
.deco-orb--lg  { width: 440px; height: 440px; }
.deco-orb--md  { width: 280px; height: 280px; }
.deco-orb--sm  { width: 160px; height: 160px; }

/* ── Dot-grid texture ─────────────────────────────────────────── */
.bg-dots { position: relative; overflow: hidden; }
.bg-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.bg-dots > .container { position: relative; z-index: 1; }

/* ── Diagonal section cuts ────────────────────────────────────── */
.section--angle-top {
  clip-path: polygon(0 clamp(24px,4vw,48px), 100% 0, 100% 100%, 0 100%);
  padding-top: calc(clamp(3rem, 8vw, 6rem) + clamp(24px,4vw,48px));
  margin-top: calc(-1 * clamp(24px,4vw,48px));
}
.section--angle-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(24px,4vw,48px)), 0 100%);
  padding-bottom: calc(clamp(3rem, 8vw, 6rem) + clamp(24px,4vw,48px));
  margin-bottom: calc(-1 * clamp(24px,4vw,48px));
}

/* ── Gradient-glow overlay on section ────────────────────────── */
.section--glow { position: relative; overflow: hidden; }
.section--glow > .container { position: relative; z-index: 1; }

/* ── Gradient text utility ────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(130deg, var(--white) 20%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Large background watermark text ─────────────────────────── */
.section__bg-text {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  color: rgba(255,255,255,.028);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -.04em;
}

/* ── Feature strip — full-bleed cinematic break ──────────────── */
.feature-strip {
  position: relative;
  min-height: clamp(300px, 40vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.feature-strip__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: .38;
}
.feature-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.65) 45%,
    rgba(10,10,10,.45) 100%
  );
}
.feature-strip__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 6vw, 5rem);
  max-width: 700px;
}
.feature-strip h2 { color: var(--white); margin-bottom: 1rem; }
.feature-strip p  { color: rgba(255,255,255,.7); font-family: var(--font-accent); font-size: 1.05rem; max-width: 52ch; margin-bottom: 2rem; }

/* ── Image spot — responsive container with gradient placeholder ─ */
.img-spot {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 50%, #1a1a1a 100%);
  display: block;
}
.img-spot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,.1) 0%, transparent 55%);
  pointer-events: none;
}
.img-spot--16-9  { aspect-ratio: 16/9; }
.img-spot--4-3   { aspect-ratio: 4/3; }
.img-spot--3-2   { aspect-ratio: 3/2; }
.img-spot--square { aspect-ratio: 1/1; }
.img-spot--tall  { aspect-ratio: 2/3; }
.img-spot img    { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.img-spot__label {
  position: absolute;
  bottom: 1rem; left: 1.25rem; right: 1.25rem;
  z-index: 2;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
/* Placeholder icon centred in spot */
.img-spot__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.12);
}
.img-spot__icon svg { width: 48px; height: 48px; }

/* ── Image mosaic (2-col grid) ────────────────────────────────── */
.img-mosaic {
  display: grid;
  gap: .6rem;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
}
.img-mosaic > :first-child { grid-column: 1 / -1; }

/* ── Stat cards — visual number grid ─────────────────────────── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 700px) { .stat-cards { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: #1c1c1c;
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.stat-card:hover { background: #242424; }
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.stat-card__value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .45rem;
}
.stat-card__label {
  font-family: var(--font-accent);
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ── Thin gradient rule divider ──────────────────────────────── */
.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(204,0,0,.45) 35%, rgba(255,255,255,.12) 65%, transparent 100%);
  margin: 0;
}

/* ── Enhanced inner hero (glow + dot grid on all inner pages) ─── */
.inner-hero {
  isolation: isolate;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 2;
  pointer-events: none;
}
.inner-hero__glow {
  position: absolute;
  top: -30%; right: -15%;
  width: 65vmax; height: 65vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.inner-hero__content { z-index: 3; }
.inner-hero__bg      { z-index: 0; }
.inner-hero__overlay { z-index: 1; }

/* ── Enhanced CTA band ────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 15% 50%, rgba(160,0,0,.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 85% 10%, rgba(100,0,0,.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 2; }

/* ── Services section glow ────────────────────────────────────── */
#services.section--glow::after {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.1) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Testimonials section decoration ─────────────────────────── */
.testimonials-section.section--glow::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.1) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.testimonials-bg-quote {
  position: absolute;
  top: 3rem; left: 2%;
  font-size: clamp(160px, 22vw, 280px);
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.022);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  letter-spacing: -.05em;
}

/* ── About section (homepage) orb ────────────────────────────── */
#about.section--glow::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.1) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── FAQ visual split ─────────────────────────────────────────── */
.faq-section-wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 900px) {
  .faq-section-wrap { grid-template-columns: 320px 1fr; }
}
@media (min-width: 900px) {
  .faq-side {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
}
.faq-side__eyebrow {
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.faq-side h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.faq-side p { color: var(--text-md); font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ── Programs section ─────────────────────────────────────────── */
.programs-bar {
  position: relative;
  overflow: hidden;
}
.programs-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,0,0,.5), transparent);
  z-index: 1;
}
.programs-bar > .container { position: relative; z-index: 2; }

/* ------------------------------------------------------------------
   Plain arrow value list — inner pages (no icon circles)
------------------------------------------------------------------ */
.values-list--plain .value-item {
  align-items: flex-start;
  gap: 0;
  padding-left: 1.5rem;
  position: relative;
}
.values-list--plain .value-item::before {
  content: '→';
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.4;
}
.values-list--plain .value-item__text { width: 100%; }
.values-list--plain .value-item__text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: .2rem;
}
.values-list--plain .value-item__text span {
  color: var(--text-md);
  font-size: .93rem;
  line-height: 1.65;
}

/* ------------------------------------------------------------------
   Team member row layout (About page)
------------------------------------------------------------------ */
.team-roster {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.team-member-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 700px) {
  .team-member-row { grid-template-columns: 1fr; }
}
.team-member-row__photo {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.team-member-row__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-member-row__photo-placeholder {
  width: 100%; height: 100%;
  min-height: 320px;
  background: linear-gradient(145deg, var(--bg-alt), var(--bg-card));
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  letter-spacing: -.05em;
}
.team-member-row__name {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  line-height: 1.2;
}
.team-member-row__title {
  font-family: var(--font-accent);
  font-size: .95rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.team-member-row__bio { margin-bottom: 1.5rem; }
.team-member-row__bio p {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 70ch;
}
.team-member-row__bio p + p { margin-top: .85rem; }
.team-member-row__specialties-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: .6rem;
}
.team-member-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(204,0,0,.25), var(--border-dk), transparent);
}
/* Team page specialty tags — white instead of red */
.team-roster .specialty-tag {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}

/* ------------------------------------------------------------------
   Topographic contour background (CSS-only, no image needed)
------------------------------------------------------------------ */
.bg-topo { position: relative; overflow: hidden; }
.bg-topo > .container { position: relative; z-index: 1; }
.topo-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ------------------------------------------------------------------
   Program showcase cards (programs landing page)
------------------------------------------------------------------ */
.programs-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.programs-intro h2,
.programs-intro p { text-align: center; }
.programs-intro h2 { color: var(--white); margin-bottom: 1rem; }
.programs-intro p  { color: var(--text-md); font-size: 1.05rem; line-height: 1.8; }

.program-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.75rem, 2vw, 1.25rem);
}
.program-showcase-card {
  flex: 0 0 calc(50% - .75rem);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dk);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
@media (min-width: 700px) {
  .program-showcase-card { flex: 0 0 calc(25% - 1rem); }
  .program-showcase-card .program-showcase-card__sport { font-size: clamp(1.3rem, 2.2vw, 1.75rem); white-space: nowrap; }
}
.program-showcase-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transition: transform .5s ease;
}
.program-showcase-card:hover .program-showcase-card__bg {
  transform: scale(1.06);
}
.program-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.18) 100%);
  z-index: 1;
  transition: background .3s ease;
}
.program-showcase-card:hover .program-showcase-card__overlay {
  background:
    linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(10,0,0,.68) 55%, rgba(10,0,0,.42) 100%);
}
.program-showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(204,0,0,.2);
}
/* Red left accent bar */
.program-showcase-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}
.program-showcase-card:hover::after { transform: scaleY(1); }
.program-showcase-card__content { position: relative; z-index: 2; }
.program-showcase-card__sport {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.program-showcase-card__desc {
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  font-family: var(--font-accent);
  max-width: 28ch;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.program-showcase-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: .85rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.program-showcase-card:hover .program-showcase-card__cta {
  opacity: 1;
  transform: none;
}
.program-showcase-card__cta::after { content: '→'; }

/* Inner page overlay — dark red base for all inner heroes */
.inner-hero { background: #1e0000; }

/* Section background overrides for inner pages (slightly lighter than homepage) */
body:not(.home) .section--dark { background: #161616; }
body:not(.home) .section--alt  { background: var(--bg-alt); }

/* ── Chat widget (template-parts/chat-widget.php) ─────────────── */
  #acs-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    font-family: var(--font-body, 'Lato', sans-serif);
    font-size: 14px;
  }

  #acs-chat-toggle {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% 50% 50% 12px !important;
    background: var(--red, #cc0000) !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.32);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-left: auto;
    padding: 0 !important;
    line-height: 1 !important;
  }

  #acs-chat-toggle:hover {
    background: var(--red-dark, #a30000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }

  #acs-chat-toggle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: opacity 0.2s;
  }

  #acs-chat-launcher {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
  }

  #acs-chat-label {
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px 8px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    white-space: nowrap;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #acs-chat-label-dismiss {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: color 0.15s;
  }

  #acs-chat-label-dismiss:hover {
    color: #555;
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
  }

  #acs-chat-window {
    display: none;
    flex-direction: column;
    width: 350px;
    height: 480px;
    background: var(--bg-card, #323232);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    overflow: hidden;
    margin-bottom: 12px;
    animation: acs-chat-open 0.22s cubic-bezier(0.4,0,0.2,1);
  }

  #acs-chat-window.acs-open {
    display: flex;
  }

  @keyframes acs-chat-open {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  #acs-chat-header {
    background: var(--red, #cc0000);
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }

  #acs-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  #acs-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #acs-chat-avatar svg {
    width: 18px;
    height: 18px;
    fill: #fff;
  }

  #acs-chat-header-text {
    display: flex;
    flex-direction: column;
  }

  #acs-chat-header-text strong {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.2;
  }

  #acs-chat-header-text span {
    font-size: 11px;
    opacity: 0.75;
    margin-top: 1px;
  }

  #acs-chat-close {
    background: none !important;
    border: none !important;
    color: #fff;
    cursor: pointer;
    opacity: 0.75;
    padding: 4px;
    line-height: 1;
    font-size: 20px;
    transition: opacity 0.15s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  #acs-chat-close:hover { opacity: 1; }

  #acs-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
  }

  #acs-chat-messages::-webkit-scrollbar { width: 4px; }
  #acs-chat-messages::-webkit-scrollbar-track { background: transparent; }
  #acs-chat-messages::-webkit-scrollbar-thumb { background: #555; border-radius: 4px; }

  .acs-msg {
    max-width: 82%;
    padding: 9px 13px;
    border-radius: 14px;
    line-height: 1.5;
    font-size: 13.5px;
    word-wrap: break-word;
  }

  .acs-msg-user {
    background: var(--red, #cc0000);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
  }

  .acs-msg-bot {
    background: var(--bg-input, #383838);
    color: var(--text, #f0f0f0);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
  }

  .acs-msg-bot a {
    color: #ff5252;
    font-weight: 600;
    text-decoration: underline;
  }
  .acs-msg-bot a:hover { color: #ff7b7b; }

  .acs-msg-welcome {
    background: rgba(204,0,0,0.1);
    color: var(--text, #f0f0f0);
    align-self: flex-start;
    border: 1px solid rgba(204,0,0,0.25);
    font-size: 13px;
    border-radius: 14px;
  }

  .acs-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-input, #383838);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
  }

  .acs-typing span {
    width: 7px;
    height: 7px;
    background: #999;
    border-radius: 50%;
    animation: acs-bounce 1.2s infinite;
  }

  .acs-typing span:nth-child(2) { animation-delay: 0.2s; }
  .acs-typing span:nth-child(3) { animation-delay: 0.4s; }

  @keyframes acs-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%           { transform: translateY(-5px); }
  }

  #acs-chat-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--border-dk, rgba(255,255,255,.1));
    background: var(--bg-card, #323232);
    flex-shrink: 0;
  }

  #acs-chat-footer {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-lt, rgba(240,240,240,.55));
    padding: 7px 14px;
    border-top: 1px solid var(--border-dk, rgba(255,255,255,.08));
    background: var(--bg-alt, #2b2b2b);
    flex-shrink: 0;
  }

  #acs-chat-footer a {
    color: var(--red, #cc0000);
    text-decoration: none;
    font-weight: 600;
  }

  #acs-chat-footer a:hover {
    text-decoration: underline;
  }

  .acs-escalate {
    background: rgba(204,0,0,0.08);
    border: 1px solid rgba(204,0,0,0.3);
    border-radius: 12px;
    padding: 10px 13px;
    font-size: 13px;
    color: var(--text, #f0f0f0);
    align-self: flex-start;
    max-width: 90%;
  }

  .acs-escalate a {
    display: inline-block;
    margin-top: 7px;
    background: var(--red, #cc0000);
    color: #fff;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
  }

  .acs-escalate a:hover {
    background: var(--red-dark, #a30000);
  }

  #acs-chat-input {
    flex: 1;
    border: 1.5px solid var(--border-dk, rgba(255,255,255,.15));
    border-radius: 22px;
    padding: 9px 14px;
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.2s;
    background: var(--bg-input, #383838);
    color: var(--text, #f0f0f0);
    font-family: inherit;
    resize: none;
    line-height: 1.4;
    height: auto;
    max-height: 80px;
  }

  #acs-chat-input::placeholder { color: var(--text-lt, rgba(240,240,240,.4)); }

  #acs-chat-input:focus {
    border-color: var(--red, #cc0000);
    box-shadow: 0 0 0 3px rgba(204,0,0,0.15);
  }

  #acs-chat-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red, #cc0000);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.1s;
  }

  #acs-chat-send:hover { background: var(--red-dark, #a30000); }
  #acs-chat-send:active { transform: scale(0.92); }
  #acs-chat-send:disabled { background: #555; cursor: not-allowed; }

  #acs-chat-send svg {
    width: 16px;
    height: 16px;
    fill: #fff;
  }

  @media screen and (max-width: 480px) {
    #acs-chat-window {
      width: calc(100vw - 32px);
      right: 0;
    }
    #acs-chat-widget {
      right: 16px;
    }
  }
