/*
Theme Name: BOLT Fitness
Theme URI: https://boltfitnesstraining.com
Description: Custom theme for BOLT Fitness Home MVP (Mar 13 mockup). Code-based; design tokens only.
Version: 1.0.0
Author: BOLT Fitness
License: GNU General Public License v2 or later
Text Domain: bolt-fitness
*/

/* --------------------------------------------------------------------------
   Design tokens (use these everywhere; no hardcoded hex in sections)
   -------------------------------------------------------------------------- */
:root {
  --bolt-primary: #000000;
  --bolt-accent: #05DAF2;
  --bolt-text: #FFFFFF;
  --bolt-surface: #111111;
  --bolt-surface-dark: #0c0c0c;
  --bolt-font-heading: 'Bebas Neue', sans-serif;
  --bolt-font-body: 'Inter', sans-serif;
  --bolt-space-xs: 8px;
  --bolt-space-sm: 16px;
  --bolt-space-md: 24px;
  --bolt-space-lg: 32px;
  --bolt-space-xl: 48px;
  --bolt-space-2xl: 64px;
  --bolt-tap-min: 44px;
  --bolt-icon-gap: 12px;
  --bolt-safe-top: env(safe-area-inset-top, 0);
  --bolt-safe-bottom: env(safe-area-inset-bottom, 0);
  --bolt-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bolt-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Prevent background scroll when mobile menu is open */
body.bolt-menu-open {
  overflow: hidden;
  touch-action: none;
}

body {
  margin: 0;
  font-family: var(--bolt-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bolt-text);
  background: var(--bolt-primary);
  overflow-x: hidden;
}

a {
  color: var(--bolt-accent);
  text-decoration: none;
  transition: color 0.2s var(--bolt-ease);
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bolt-accent);
  outline-offset: 2px;
}

/* Mobile: tap highlight for touch targets (subtle accent) */
@media (hover: none) and (pointer: coarse) {
  a,
  button {
    -webkit-tap-highlight-color: rgba(5, 218, 242, 0.2);
    tap-highlight-color: rgba(5, 218, 242, 0.2);
  }
}

/* Scroll anchoring: prevent sticky header from covering target */
#content,
[id].bolt-section,
[id] {
  scroll-margin-top: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bolt-skip-link {
  position: absolute;
  top: -100px;
  left: var(--bolt-space-md);
  padding: var(--bolt-space-sm) var(--bolt-space-md);
  background: var(--bolt-accent);
  color: var(--bolt-primary);
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s;
}

.bolt-skip-link:focus {
  top: var(--bolt-space-md);
  outline: 2px solid var(--bolt-text);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Iconography (shared icons and icon-led UI)
   -------------------------------------------------------------------------- */
.bolt-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: currentColor;
}

.bolt-icon--sm {
  width: 20px;
  height: 20px;
}

.bolt-with-icon {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--bolt-icon-gap);
}

.bolt-with-icon span,
.bolt-with-icon a {
  flex: 1;
  min-width: 0;
}

.bolt-with-icon--label {
  display: inline-flex;
  align-items: center;
  gap: var(--bolt-icon-gap);
}

.bolt-contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--bolt-icon-gap);
  margin: 0;
  color: var(--bolt-text);
  text-decoration: none;
  transition: color 0.2s var(--bolt-ease);
}

.bolt-contact-link:hover {
  color: var(--bolt-accent);
  text-decoration: none;
}

.bolt-contact-link .bolt-icon {
  color: var(--bolt-accent);
}

.bolt-contact-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--bolt-space-md);
}

.bolt-contact-row {
  display: inline-flex;
  align-items: center;
  gap: var(--bolt-icon-gap);
  color: var(--bolt-text);
  text-decoration: none;
  transition: color 0.2s var(--bolt-ease);
}

.bolt-contact-row:hover {
  color: var(--bolt-accent);
  text-decoration: none;
}

.bolt-contact-row .bolt-icon {
  color: var(--bolt-accent);
}

.bolt-faq__item {
  display: flex;
  align-items: flex-start;
  gap: var(--bolt-icon-gap);
  margin-bottom: var(--bolt-space-lg);
}

.bolt-faq__item:last-child {
  margin-bottom: 0;
}

.bolt-faq__icon {
  color: var(--bolt-accent);
  margin-top: 0.15em;
}

.bolt-faq__item div {
  margin: 0;
  flex: 1;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   Header (sticky)
   -------------------------------------------------------------------------- */
.bolt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--bolt-space-sm);
  padding: var(--bolt-space-sm) var(--bolt-space-md);
  padding-top: max(var(--bolt-space-sm), var(--bolt-safe-top));
  background: var(--bolt-surface-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bolt-header__logo a {
  display: inline-block;
  color: inherit;
}

.bolt-header__logo a {
  transition: opacity 0.2s var(--bolt-ease);
}

.bolt-header__logo a:hover {
  text-decoration: none;
  opacity: 0.88;
}

.bolt-header__logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.bolt-header__nav {
  display: flex;
  align-items: center;
  gap: var(--bolt-space-md);
  flex-wrap: wrap;
}

.bolt-header__nav a {
  position: relative;
  color: var(--bolt-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s var(--bolt-ease);
}

.bolt-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--bolt-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--bolt-ease-out);
}

.bolt-header__nav a:hover {
  color: var(--bolt-accent);
  text-decoration: none;
}

.bolt-header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bolt-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.25em;
  min-height: var(--bolt-tap-min);
  min-width: 100px;
  box-sizing: border-box;
  font-family: var(--bolt-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--bolt-ease-out), box-shadow 0.25s var(--bolt-ease), filter 0.2s var(--bolt-ease);
}

.bolt-header__cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 218, 242, 0.4);
  filter: brightness(1.05);
}

.bolt-header__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(5, 218, 242, 0.3);
}

/* Mobile menu toggle (hidden on desktop) */
.bolt-header__menu-toggle {
  display: none;
  padding: var(--bolt-space-xs);
  background: transparent;
  border: none;
  color: var(--bolt-text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s var(--bolt-ease), color 0.2s var(--bolt-ease);
}

.bolt-header__menu-toggle:hover,
.bolt-header__menu-toggle:focus-visible {
  background: var(--bolt-surface);
  outline: 2px solid var(--bolt-accent);
  outline-offset: 2px;
}

.bolt-header__menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

/* Dropdown */
.bolt-header__dropdown {
  position: relative;
}

.bolt-header__dropdown-trigger {
  position: relative;
  background: none;
  border: none;
  color: var(--bolt-text);
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.25s var(--bolt-ease);
}

.bolt-header__dropdown-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--bolt-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--bolt-ease-out);
}

.bolt-header__dropdown-trigger:hover,
.bolt-header__dropdown-trigger:focus-visible {
  color: var(--bolt-accent);
  outline: none;
}

.bolt-header__dropdown-trigger:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bolt-header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--bolt-surface-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s var(--bolt-ease), transform 0.2s var(--bolt-ease), visibility 0.2s;
  z-index: 10;
}

.bolt-header__dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.bolt-header__dropdown-menu li {
  margin: 0;
  list-style: none;
}

.bolt-header__dropdown-menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.6em 0.75em;
  color: var(--bolt-text);
  border-left: 3px solid transparent;
  transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease), border-color 0.2s var(--bolt-ease);
}

.bolt-header__dropdown-menu a:hover {
  color: var(--bolt-accent);
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--bolt-accent);
}

@media (max-width: 768px) {
  .bolt-header {
    padding: var(--bolt-space-xs) var(--bolt-space-sm);
  }
  .bolt-header__menu-toggle {
    display: flex;
  }
  .bolt-header__cta {
    order: -1;
    margin-left: auto;
    margin-right: var(--bolt-space-sm);
  }
  .bolt-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bolt-surface-dark);
    flex-direction: column;
    align-items: stretch;
    padding: var(--bolt-space-md);
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }
  .bolt-header__nav.is-open {
    display: flex;
  }
  .bolt-header__nav a,
  .bolt-header__dropdown-trigger {
    padding: 0.75em 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease);
  }
  .bolt-header__nav a::after,
  .bolt-header__dropdown-trigger::after {
    display: none;
  }
  .bolt-header__nav a:hover,
  .bolt-header__dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .bolt-header__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0 0 0 var(--bolt-space-sm);
    border: none;
    box-shadow: none;
    display: none;
  }
  .bolt-header__dropdown-menu.is-open {
    display: block;
    transform: none;
  }
  .bolt-header__nav a,
  .bolt-header__dropdown-trigger {
    min-height: var(--bolt-tap-min);
    display: flex;
    align-items: center;
  }
  .bolt-header__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }
  .bolt-header__nav {
    max-height: min(70vh, 400px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* --------------------------------------------------------------------------
   Mobile-first: layout, spacing, and touch (max-width 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .bolt-main {
    min-height: 50vh;
  }

  .bolt-section {
    padding: var(--bolt-space-xl) var(--bolt-space-sm);
  }

  .bolt-section__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--bolt-space-sm);
  }

  .bolt-section__intro {
    margin-bottom: var(--bolt-space-lg);
    font-size: 0.9375rem;
  }

  /* Hero: above-the-fold on mobile; one viewport, headline + subline + primary CTA visible */
  .bolt-hero {
    min-height: min(100dvh, 100vh);
    min-height: 100svh;
    padding: calc(12vh + var(--bolt-safe-top)) var(--bolt-space-sm) max(var(--bolt-space-xl), var(--bolt-safe-bottom));
    justify-content: flex-start;
  }

  .bolt-hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: var(--bolt-space-xs);
    line-height: 1.05;
  }

  .bolt-hero__subline {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: var(--bolt-space-md);
    padding: 0 var(--bolt-space-xs);
  }

  .bolt-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: var(--bolt-space-sm);
    margin-top: var(--bolt-space-sm);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .bolt-hero__scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--bolt-space-xs);
    margin-top: var(--bolt-space-xl);
    padding-top: var(--bolt-space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .bolt-hero__scroll-cue:hover {
    color: var(--bolt-accent);
    text-decoration: none;
  }

  .bolt-hero__scroll-cue svg {
    animation: bolt-scroll-bounce 2s ease-in-out infinite;
  }

  @keyframes bolt-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  @media (prefers-reduced-motion: reduce) {
    .bolt-hero__scroll-cue svg {
      animation: none;
    }
  }

  .bolt-page-hero--with-bg {
    min-height: min(55vh, 55dvh);
  }

  .bolt-page-hero {
    padding: var(--bolt-space-xl) var(--bolt-space-sm);
    padding-top: max(var(--bolt-space-xl), var(--bolt-safe-top));
    padding-bottom: max(var(--bolt-space-xl), var(--bolt-safe-bottom));
  }

  .bolt-page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .bolt-page-hero__sub {
    font-size: 1rem;
  }

  .bolt-page-hero__inner {
    padding-left: var(--bolt-space-xs);
    padding-right: var(--bolt-space-xs);
  }

  .bolt-section--with-image {
    padding: var(--bolt-space-xl) var(--bolt-space-sm);
  }

  .bolt-section--with-image .bolt-section__content {
    padding: 0;
  }

  .bolt-pitch p {
    font-size: 1rem;
  }

  .bolt-first-time {
    padding: var(--bolt-space-md) var(--bolt-space-sm);
  }

  .bolt-first-time__label {
    font-size: 1.125rem;
  }

  .bolt-first-time__text {
    font-size: 0.9375rem;
  }

  .bolt-pillars {
    grid-template-columns: 1fr;
    gap: var(--bolt-space-md);
  }

  .bolt-pillar-card,
  .bolt-pillar-card__inner {
    min-height: 180px;
  }

  .bolt-pillar-card__front,
  .bolt-pillar-card__back {
    padding: var(--bolt-space-lg) var(--bolt-space-md);
  }

  .bolt-pillar-card__icon {
    width: 48px;
    height: 48px;
  }

  .bolt-pillar-card__word {
    font-size: 1.75rem;
  }

  .bolt-pillar-card__back-copy {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .bolt-section__img {
    margin-top: var(--bolt-space-lg);
  }

  .bolt-section__img img {
    aspect-ratio: 4/3;
  }

  .bolt-hyrox__image {
    aspect-ratio: 4/3;
  }

  .bolt-social-proof {
    padding: var(--bolt-space-lg) var(--bolt-space-sm);
  }

  .bolt-social-proof__title {
    font-size: 1.5rem;
  }

  .bolt-social-proof__quote,
  .bolt-review__quote {
    font-size: 1rem;
  }

  .bolt-reviews {
    grid-template-columns: 1fr;
  }

  .bolt-locations--cards {
    grid-template-columns: 1fr;
    gap: var(--bolt-space-lg);
  }

  .bolt-location-card {
    padding: var(--bolt-space-lg);
  }

  .bolt-location-card__name {
    font-size: 1.25rem;
  }

  .bolt-location-card__address {
    word-break: break-word;
  }

  .bolt-coach-card {
    flex-direction: column;
    padding: var(--bolt-space-md);
    gap: var(--bolt-space-md);
  }

  .bolt-coach-card__img-wrap {
    flex: 0 0 auto;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    min-width: 0;
  }

  .bolt-coach-card__body {
    min-width: 0;
  }

  .bolt-coach-card__name {
    font-size: 1.25rem;
  }

  .bolt-coach-card__blurb {
    font-size: 0.9rem;
  }

  .bolt-coach-card__instagram {
    min-height: var(--bolt-tap-min);
    align-items: center;
  }

  .bolt-pricing-cards {
    grid-template-columns: 1fr;
    gap: var(--bolt-space-md);
    margin-top: var(--bolt-space-lg);
  }

  .bolt-pricing-card {
    padding: var(--bolt-space-lg) var(--bolt-space-md);
  }

  .bolt-pricing-coach-note {
    max-width: 100%;
    border-radius: 8px;
    border-left-width: 3px;
  }

  .bolt-pricing-card__link {
    padding: 0.5em 0.25em;
  }

  .bolt-final-cta {
    padding: var(--bolt-space-xl) var(--bolt-space-sm);
  }

  .bolt-final-cta__line {
    font-size: 1.125rem;
  }

  .bolt-final-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .bolt-final-cta__buttons .bolt-final-cta__btn,
  .bolt-final-cta__buttons .bolt-final-cta__secondary {
    width: 100%;
    justify-content: center;
  }

  .bolt-location-card .bolt-location__cta {
    min-height: var(--bolt-tap-min);
    justify-content: center;
    width: 100%;
  }

  .bolt-footer {
    padding: var(--bolt-space-xl) var(--bolt-space-sm);
    padding-bottom: max(var(--bolt-space-xl), var(--bolt-safe-bottom));
  }

  .bolt-footer__nav {
    flex-direction: column;
    gap: 0;
  }

  .bolt-footer__nav a {
    display: flex;
    align-items: center;
    min-height: var(--bolt-tap-min);
    padding: 0 var(--bolt-space-xs);
  }

  .bolt-footer__contact a {
    display: inline-flex;
    align-items: center;
    min-height: var(--bolt-tap-min);
    padding: 0 var(--bolt-space-xs);
  }

  .bolt-footer__social-link {
    width: var(--bolt-tap-min);
    height: var(--bolt-tap-min);
  }

  .bolt-ig-grid {
    gap: var(--bolt-space-xs);
  }

  /* Hero CTAs: block-style full width (max 320px) for easy thumb tap */
  .bolt-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .bolt-page-hero__inner .bolt-hero__cta {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  /* Pricing card location links: larger tap target on mobile */
  .bolt-pricing-card__link {
    display: inline-flex;
    align-items: center;
    min-height: var(--bolt-tap-min);
    padding: 0.5em 0.75em;
  }

  /* Hyrox: stations list + CTAs on mobile */
  .bolt-stations-heading {
    margin: var(--bolt-space-sm) 0 var(--bolt-space-xs);
  }

  .bolt-stations-list li {
    padding: var(--bolt-space-sm) 0;
    font-size: 0.875rem;
  }

  .bolt-stations-list__num {
    min-width: 22px;
    height: 22px;
    font-size: 0.6875rem;
  }

  .bolt-section__outro {
    margin-top: var(--bolt-space-sm);
  }

  .bolt-hyrox__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    min-height: var(--bolt-tap-min);
  }

  .bolt-hyrox-links {
    margin-top: var(--bolt-space-sm);
  }

  .bolt-hyrox-links a {
    display: inline-flex;
    align-items: center;
    min-height: var(--bolt-tap-min);
    padding: 0.25em 0.5em;
    margin: 0 -0.25em;
  }

  /* Schedule tabs: stretch full width, thumb-friendly */
  .bolt-schedule-tabs {
    display: flex;
    width: 100%;
  }

  .bolt-schedule-tab {
    min-height: var(--bolt-tap-min);
    padding: 10px var(--bolt-space-md);
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Main content wrapper
   -------------------------------------------------------------------------- */
.bolt-main {
  min-height: 60vh;
}

/* --------------------------------------------------------------------------
   Sections (shared)
   -------------------------------------------------------------------------- */
.bolt-section {
  padding: var(--bolt-space-2xl) var(--bolt-space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.bolt-section--dark {
  background: var(--bolt-surface);
}

.bolt-section--darker {
  background: var(--bolt-surface-dark);
}

.bolt-section__title {
  font-family: var(--bolt-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  margin: 0 0 var(--bolt-space-md);
  color: var(--bolt-text);
  text-wrap: balance;
}

.bolt-section__intro {
  margin: 0 0 var(--bolt-space-xl);
  max-width: 560px;
  opacity: 0.95;
  text-wrap: balance;
}

.bolt-section__content {
  position: relative;
  z-index: 1;
}

.bolt-section--with-image {
  position: relative;
  background-color: var(--bolt-surface);
  background-image: var(--bolt-section-bg-image);
  background-size: cover;
  background-position: center;
}

.bolt-section--with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

@media (min-width: 768px) {
  .bolt-section--with-image {
    padding: var(--bolt-space-2xl) var(--bolt-space-lg);
  }
}

.bolt-section--with-image .bolt-pitch,
.bolt-section--with-image .bolt-pitch p,
.bolt-section--with-image .bolt-section__title,
.bolt-section--with-image .bolt-section__content p {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.bolt-section__img {
  margin: var(--bolt-space-xl) 0 0;
  border-radius: 8px;
  overflow: hidden;
}

.bolt-section__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* First time here? Welcoming strip (Session-style) */
.bolt-first-time {
  background: var(--bolt-accent);
  color: var(--bolt-primary);
  padding: var(--bolt-space-lg) var(--bolt-space-md);
  text-align: center;
}

.bolt-first-time__inner {
  max-width: 640px;
  margin: 0 auto;
}

.bolt-first-time__label {
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-xs);
}

.bolt-first-time__text {
  margin: 0 0 var(--bolt-space-sm);
  font-size: 1rem;
}

.bolt-first-time__link {
  color: var(--bolt-primary);
  font-weight: 700;
}

.bolt-first-time__link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.bolt-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--bolt-space-2xl) var(--bolt-space-md);
  background: var(--bolt-surface-dark) no-repeat center / cover;
  color: var(--bolt-text);
  text-align: center;
}

.bolt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.bolt-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.bolt-hero__title {
  font-family: var(--bolt-font-heading);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-sm);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}

.bolt-hero__subline {
  font-size: 1.125rem;
  margin: 0 0 var(--bolt-space-lg);
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}

.bolt-hero__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75em 1.5em;
  min-height: var(--bolt-tap-min);
  box-sizing: border-box;
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  text-decoration: none;
  line-height: 1.2;
  border-radius: 6px;
}

.bolt-hero__cta {
  transition: transform 0.2s var(--bolt-ease-out), box-shadow 0.25s var(--bolt-ease), filter 0.2s var(--bolt-ease);
}

.bolt-hero__cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(5, 218, 242, 0.35);
  filter: brightness(1.05);
}

.bolt-hero__cta:active {
  transform: translateY(0);
}

.bolt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bolt-space-sm);
  justify-content: center;
  margin-top: 1.5rem;
}

/* Scroll cue: visible only on mobile (see @media max-width 767px) */
.bolt-hero__scroll-cue {
  display: none;
}

.bolt-hero__cta--secondary {
  color: var(--bolt-accent);
  background: transparent;
  border: 2px solid var(--bolt-accent);
}

.bolt-hero__cta--secondary:hover {
  color: var(--bolt-primary);
  background: var(--bolt-accent);
}

/* Page hero with background image (inner pages) */
.bolt-page-hero--with-bg {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--bolt-surface-dark);
}

.bolt-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.bolt-page-hero--recovery .bolt-page-hero__overlay {
  background: rgba(0, 0, 0, 0.55);
}

.bolt-page-hero--recovery {
  min-height: 52vh;
}

.bolt-page-hero--with-bg .bolt-page-hero__inner {
  position: relative;
  z-index: 1;
}

.bolt-page-hero__title {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.bolt-page-hero__sub {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   Elevator pitch
   -------------------------------------------------------------------------- */
.bolt-pitch {
  max-width: 720px;
  margin: 0 auto;
}

.bolt-pitch p {
  margin: 0 0 var(--bolt-space-sm);
  font-size: 1.0625rem;
}

.bolt-pitch p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   4 Pillars: flip cards (front = icon + word, back = copy)
   -------------------------------------------------------------------------- */
.bolt-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bolt-space-xl);
  list-style: none;
  padding: 0;
  margin: 0;
}

.bolt-pillar-card {
  min-height: 240px;
  perspective: 1000px;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
}

/* Focus ring: visible for keyboard, not on mouse click */
.bolt-pillar-card:focus-visible {
  outline: 2px solid var(--bolt-accent);
  outline-offset: 3px;
  border-radius: 14px;
}

.bolt-pillar-card:focus-visible .bolt-pillar-card__front {
  border-color: rgba(5, 218, 242, 0.4);
}

.bolt-pillar-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  transition: transform 0.5s var(--bolt-ease);
  transform-style: preserve-3d;
}

/* Respect reduced motion: instant flip, no 3D animation */
@media (prefers-reduced-motion: reduce) {
  .bolt-pillar-card__inner {
    transition: none;
  }
}

.bolt-pillar-card:hover .bolt-pillar-card__inner,
.bolt-pillar-card:focus-within .bolt-pillar-card__inner {
  transform: rotateY(180deg);
}

.bolt-pillar-card__front,
.bolt-pillar-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--bolt-space-md);
  padding: var(--bolt-space-xl) var(--bolt-space-lg);
  background: var(--bolt-surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bolt-pillar-card__back {
  transform: rotateY(180deg);
  border-color: rgba(5, 218, 242, 0.2);
  background: rgba(5, 218, 242, 0.05);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
  align-items: center;
  padding: var(--bolt-space-xl);
}

.bolt-pillar-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--bolt-accent);
  flex-shrink: 0;
}

.bolt-pillar-card__icon svg {
  width: 100%;
  height: 100%;
}

.bolt-pillar-card__word {
  font-family: var(--bolt-font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bolt-pillar-card__back-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.95;
  text-align: center;
  max-width: 38ch;
}

/* --------------------------------------------------------------------------
   Hyrox teaser
   -------------------------------------------------------------------------- */
.bolt-hyrox {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bolt-space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .bolt-hyrox {
    grid-template-columns: 1fr 1fr;
  }
}

.bolt-hyrox__image {
  aspect-ratio: 16/10;
  background: var(--bolt-surface);
  object-fit: cover;
  border-radius: 8px;
}

.bolt-hyrox__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1em;
  margin-top: var(--bolt-space-xs);
  color: var(--bolt-accent);
  font-weight: 600;
  border: 2px solid var(--bolt-accent);
  border-radius: 6px;
  transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease), box-shadow 0.2s var(--bolt-ease);
}

.bolt-hyrox__cta:hover {
  text-decoration: none;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  box-shadow: 0 4px 16px rgba(5, 218, 242, 0.25);
}

/* --------------------------------------------------------------------------
   Social proof
   -------------------------------------------------------------------------- */
.bolt-social-proof {
  text-align: center;
  padding: var(--bolt-space-xl);
  background: var(--bolt-surface);
}

.bolt-social-proof__stars {
  font-size: 1.5rem;
  margin-bottom: var(--bolt-space-xs);
}

.bolt-social-proof__quote {
  font-size: 1.125rem;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

.bolt-social-proof__cite {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: var(--bolt-space-xs) 0 0;
}

/* Reviews grid (real Google reviews by location) */
.bolt-social-proof__title {
  font-family: var(--bolt-font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-xs);
  text-wrap: balance;
}

.bolt-social-proof__subline {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0 0 var(--bolt-space-lg);
}

.bolt-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--bolt-space-lg);
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.bolt-review {
  padding: var(--bolt-space-lg);
  background: var(--bolt-surface-dark);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bolt-review__stars {
  color: var(--bolt-accent);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--bolt-space-sm);
}

.bolt-review__quote {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-review__cite {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-review__link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.bolt-review__link:hover {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Location cards
   -------------------------------------------------------------------------- */
.bolt-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--bolt-space-lg);
}

.bolt-location {
  padding: var(--bolt-space-lg);
  background: var(--bolt-surface);
}

.bolt-location__name {
  font-family: var(--bolt-font-heading);
  font-size: 1.5rem;
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-location__address,
.bolt-location__hours {
  margin: 0 0 var(--bolt-space-xs);
  font-size: 0.9375rem;
  opacity: 0.9;
}

.bolt-location__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--bolt-space-md);
  padding: 0.6em 1.25em;
  min-height: var(--bolt-tap-min);
  box-sizing: border-box;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s var(--bolt-ease-out), box-shadow 0.25s var(--bolt-ease), filter 0.2s var(--bolt-ease);
}

.bolt-location__cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 218, 242, 0.35);
  filter: brightness(1.05);
}

.bolt-location__cta:active {
  transform: translateY(0);
}

.bolt-free-class__commit-buttons {
  justify-content: flex-start;
  margin-top: 0;
}

.bolt-free-class__commit-buttons .bolt-location__cta {
  margin-top: 0;
  margin-right: var(--bolt-space-sm);
}

/* Location cards (Locations page: name, address, phone, dual CTA) */
.bolt-locations--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--bolt-space-xl);
}

.bolt-location-card {
  display: flex;
  flex-direction: column;
  padding: var(--bolt-space-xl);
  background: var(--bolt-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.bolt-location-card__name {
  font-family: var(--bolt-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-xs);
  color: var(--bolt-text);
}

.bolt-location-card__name a {
  color: inherit;
  text-decoration: none;
}

.bolt-location-card__name a {
  transition: color 0.2s var(--bolt-ease);
}

.bolt-location-card__name a:hover {
  color: var(--bolt-accent);
}

.bolt-location-card__area {
  font-size: 0.9375rem;
  color: var(--bolt-accent);
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-location-card__address {
  font-style: normal;
  margin: 0 0 var(--bolt-space-sm);
  line-height: 1.5;
  opacity: 0.95;
}

.bolt-location-card__phone {
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-location-card__phone a {
  color: var(--bolt-text);
}

/* CTA always on its own row below address and phone */
.bolt-location-card .bolt-location__cta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: var(--bolt-space-md);
}

.bolt-location-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bolt-space-sm);
  align-items: center;
}

.bolt-location-card__link {
  display: block;
  margin-top: var(--bolt-space-sm);
  font-size: 0.9rem;
  color: var(--bolt-accent);
}

.bolt-location-card__link:hover {
  text-decoration: underline;
}

/* Location page: two-column detail (card + community photo), Google-style */
.bolt-location-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bolt-space-lg);
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.bolt-location-detail__card {
  display: flex;
  flex-direction: column;
  padding: var(--bolt-space-xl);
  background: var(--bolt-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.bolt-location-detail__name {
  margin: 0 0 var(--bolt-space-xs);
  font-family: var(--bolt-font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--bolt-text);
}

.bolt-location-detail__tagline {
  margin: 0 0 var(--bolt-space-md);
  font-size: 0.9375rem;
  color: var(--bolt-accent);
  opacity: 0.95;
  line-height: 1.5;
}

.bolt-location-detail__address,
.bolt-location-detail__phone {
  margin: 0 0 var(--bolt-space-sm);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--bolt-text);
  opacity: 0.95;
}

.bolt-location-detail__address a,
.bolt-location-detail__phone a {
  color: inherit;
  text-decoration: none;
}

.bolt-location-detail__phone a:hover {
  color: var(--bolt-accent);
  text-decoration: underline;
}

.bolt-location-detail__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  /* Match hero CTA so “Book a class” looks the same everywhere */
  padding: 0.75em 1.5em;
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.bolt-location-detail__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bolt-surface);
}

.bolt-location-detail__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .bolt-location-detail {
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.15fr);
    gap: var(--bolt-space-xl);
    align-items: stretch;
  }

  .bolt-location-detail__card {
    padding: var(--bolt-space-xl) var(--bolt-space-2xl);
  }

  .bolt-location-detail__name {
    font-size: 2rem;
  }

  .bolt-location-detail__photo {
    height: 100%;
    min-height: 280px;
    display: block;
  }

  .bolt-location-detail__photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .bolt-location-detail__cta {
    width: auto;
    min-width: 180px;
    align-self: flex-start;
  }
}

/* Map card (location inner pages: Queens / Brooklyn) */
.bolt-map-card {
  margin-top: var(--bolt-space-lg);
  padding: 0;
  background: var(--bolt-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.bolt-map-card__title {
  margin: 0;
  padding: var(--bolt-space-md) var(--bolt-space-lg) 0;
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--bolt-text);
}

.bolt-map-card__embed-wrap {
  margin-top: var(--bolt-space-sm);
  width: 100%;
  line-height: 0;
}

.bolt-map-card__embed {
  display: block;
  width: 100%;
  height: 280px;
  max-height: 50vh;
}

.bolt-map-card__link {
  display: inline-block;
  margin: var(--bolt-space-md) var(--bolt-space-lg) var(--bolt-space-lg);
  font-size: 0.9375rem;
  color: var(--bolt-accent);
  text-decoration: none;
  transition: color 0.2s var(--bolt-ease);
}

.bolt-map-card__link:hover {
  color: var(--bolt-text);
  text-decoration: underline;
}

/* Social follow cards (Contact page: Facebook + Instagram embeds, equal card size) */
.bolt-social-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bolt-space-lg);
  margin-top: var(--bolt-space-lg);
  align-items: stretch;
}

@media (max-width: 700px) {
  .bolt-social-cards {
    grid-template-columns: 1fr;
  }
}

.bolt-social-card {
  display: flex;
  flex-direction: column;
  background: var(--bolt-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  min-height: 0;
}

.bolt-social-card__title {
  flex: 0 0 auto;
  margin: 0;
  padding: var(--bolt-space-md) var(--bolt-space-lg) 0;
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--bolt-text);
}

.bolt-social-card__embed {
  flex: 0 0 auto;
  padding: var(--bolt-space-sm) var(--bolt-space-lg);
}

/* Fixed 400px embed area so both cards are identical height; content cannot grow past this */
.bolt-social-card__embed--h400 {
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  padding: var(--bolt-space-sm) var(--bolt-space-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bolt-social-card__embed--h400 > * {
  min-height: 0;
}

.bolt-social-card__embed .fb-page {
  margin: 0 auto;
}

/* Instagram: scale the entire post to fit in the 400px card so the full post is visible */
.bolt-social-card__embed--instagram {
  position: relative;
  padding: 0;
  display: block;
}

.bolt-social-card__embed--instagram .bolt-social-card__instagram-scaled {
  position: absolute;
  left: 50%;
  top: 0;
  width: 540px;
  max-width: min(540px, 100%);
  transform: translateX(-50%) scale(0.55);
  transform-origin: top center;
  pointer-events: auto;
}

@media (max-width: 380px) {
  .bolt-social-card__embed--instagram .bolt-social-card__instagram-scaled {
    transform: translateX(-50%) scale(0.48);
  }
}

.bolt-social-card__embed--instagram .instagram-media,
.bolt-social-card__embed--instagram iframe {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

/* When embed.js replaces blockquote with iframe, iframe inherits the scale from parent */
.bolt-social-card__embed--instagram iframe {
  width: 540px !important;
  max-width: 100%;
}

.bolt-social-card__link {
  flex: 0 0 auto;
  display: block;
  padding: var(--bolt-space-md) var(--bolt-space-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bolt-accent);
  text-align: center;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease);
}

.bolt-social-card__link:hover {
  color: var(--bolt-text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

/* Location choice (Free Class): two cards, one CTA each */
.bolt-locations--choice .bolt-location-card {
  text-align: center;
}

.bolt-locations--choice .bolt-location-card__address,
.bolt-locations--choice .bolt-location-card__phone {
  display: none;
}

.bolt-free-class__help {
  margin-top: var(--bolt-space-lg);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Coach cards (About page) */
.bolt-coaches {
  display: flex;
  flex-direction: column;
  gap: var(--bolt-space-xl);
  margin-top: var(--bolt-space-xl);
}

.bolt-coach-card {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bolt-space-lg);
  align-items: flex-start;
  padding: var(--bolt-space-lg);
  background: var(--bolt-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bolt-coach-card__img-wrap {
  flex: 0 0 200px;
  min-width: 160px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}

.bolt-coach-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bolt-coach-card__body {
  flex: 1;
  min-width: 260px;
}

.bolt-coach-card__name {
  font-family: var(--bolt-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-xs);
  color: var(--bolt-text);
}

.bolt-coach-card__title {
  font-size: 0.9rem;
  color: var(--bolt-accent);
  margin: 0 0 var(--bolt-space-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bolt-coach-card__blurb {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 0 var(--bolt-space-md);
}

.bolt-coach-card__instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--bolt-space-sm);
  font-size: 0.9rem;
  color: var(--bolt-accent);
}

.bolt-coach-card__instagram {
  transition: opacity 0.2s var(--bolt-ease), color 0.2s var(--bolt-ease);
}

.bolt-coach-card__instagram:hover {
  text-decoration: none;
  opacity: 0.9;
}

.bolt-coach-card__icon {
  flex-shrink: 0;
}

/* Full-bleed pricing section background */
.bolt-pricing-wrap {
  background: var(--bolt-surface);
}

/* Pricing cards (Session-style) */
.bolt-pricing-footnote {
  margin: var(--bolt-space-md) 0 0;
  font-size: 0.8125rem;
  opacity: 0.55;
  line-height: 1.5;
}

.bolt-pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bolt-space-lg);
  margin-top: var(--bolt-space-xl);
  align-items: stretch;
}

.bolt-pricing-card {
  display: flex;
  flex-direction: column;
  padding: var(--bolt-space-xl) var(--bolt-space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
}

.bolt-pricing-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--bolt-space-xs);
  margin-top: auto;
  padding-top: var(--bolt-space-md);
  width: 100%;
}

.bolt-pricing-card__actions .bolt-pricing-card__btn {
  width: 100%;
  text-align: center;
}

/* Legacy: cards that still use text links sit inline */
.bolt-pricing-card__actions:has(.bolt-pricing-card__link) {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
}

.bolt-pricing-card__sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  line-height: 1;
}

/* Tablet: 2×2 grid */
@media (max-width: 1023px) and (min-width: 768px) {
  .bolt-pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bolt-space-lg);
  }
}

.bolt-pricing-card--highlight {
  border-color: var(--bolt-accent);
  background: rgba(5, 218, 242, 0.08);
}

.bolt-pricing-card--popular {
  position: relative;
  padding-top: calc(var(--bolt-space-lg) + 1.65rem);
  border: 2px solid var(--bolt-accent);
  background: rgba(5, 218, 242, 0.1);
  box-shadow: 0 0 0 1px rgba(5, 218, 242, 0.2), 0 8px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* Recommended pill: compact, one word, award-standard nudge */
.bolt-pricing-card__recommended {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px var(--bolt-space-sm);
  background: var(--bolt-accent);
  color: var(--bolt-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bolt-pricing-card__recommended-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}


.bolt-pricing-card__badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bolt-accent);
  margin: 0 0 var(--bolt-space-xs);
}

.bolt-pricing-card--popular .bolt-pricing-card__btn {
  margin-top: 0;
}

.bolt-pricing-card__btn--outline {
  color: var(--bolt-accent);
  background: transparent;
  border: 2px solid var(--bolt-accent);
}

.bolt-pricing-card__btn--outline:hover {
  color: var(--bolt-primary);
  background: var(--bolt-accent);
}

.bolt-pricing-card__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bolt-accent);
  margin: 0 0 var(--bolt-space-xs);
}

.bolt-pricing-card__price {
  font-family: var(--bolt-font-heading);
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-xs);
}

.bolt-pricing-card__detail {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-pricing-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1.25em;
  min-height: var(--bolt-tap-min);
  box-sizing: border-box;
  font-family: var(--bolt-font-heading);
  font-size: 1rem;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  text-decoration: none;
  border-radius: 6px;
}

.bolt-pricing-card__btn {
  transition: transform 0.2s var(--bolt-ease-out), box-shadow 0.25s var(--bolt-ease), filter 0.2s var(--bolt-ease);
}

.bolt-pricing-card__btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 218, 242, 0.35);
  filter: brightness(1.05);
}

.bolt-pricing-card__btn:active {
  transform: translateY(0);
}

.bolt-pricing-card__link {
  font-size: 0.85rem;
  color: var(--bolt-accent);
}

.bolt-pricing-card__link:hover {
  text-decoration: underline;
}

/* FAQ / Know before you go */
.bolt-faq p {
  margin: 0 0 var(--bolt-space-sm);
}

.bolt-faq p:last-child {
  margin-bottom: 0;
}

.bolt-faq .bolt-faq__item {
  margin-bottom: var(--bolt-space-lg);
}

.bolt-faq .bolt-faq__item:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Hyrox: 8 stations list (numbered treatment, no accordion)
   -------------------------------------------------------------------------- */
.bolt-stations-heading {
  font-weight: 600;
  margin: var(--bolt-space-md) 0 var(--bolt-space-xs);
  font-size: 0.9375rem;
}

.bolt-stations-list {
  list-style: none;
  margin: 0 0 var(--bolt-space-md);
  padding: 0;
}

.bolt-stations-list li {
  display: flex;
  align-items: center;
  gap: var(--bolt-space-sm);
  padding: var(--bolt-space-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
}

.bolt-stations-list li:last-child {
  border-bottom: none;
}

.bolt-stations-list__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bolt-accent);
  color: var(--bolt-primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bolt-section__outro {
  margin-top: var(--bolt-space-md);
  margin-bottom: var(--bolt-space-sm);
}

.bolt-link-external::after {
  content: ' ↗';
  font-size: 0.85em;
  opacity: 0.8;
}

/* Equipment grid (Hyrox): labels only, no icons */
.bolt-equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--bolt-space-sm);
  margin: var(--bolt-space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.bolt-equipment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--bolt-space-md) var(--bolt-space-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-align: center;
}

.bolt-equipment-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .bolt-equipment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bolt-space-md);
    margin-top: var(--bolt-space-xl);
  }

  .bolt-equipment-item {
    padding: var(--bolt-space-lg) var(--bolt-space-md);
  }

  .bolt-equipment-item__label {
    font-size: 0.9375rem;
  }
}

@media (max-width: 767px) {
  .bolt-equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bolt-space-sm);
    margin-top: var(--bolt-space-md);
  }

  .bolt-equipment-item {
    padding: var(--bolt-space-md) var(--bolt-space-sm);
    min-height: var(--bolt-tap-min);
  }

  .bolt-equipment-item__label {
    font-size: 0.8125rem;
  }
}

/* Hyrox CTAs block */
.bolt-hyrox-ctas {
  margin-top: var(--bolt-space-md);
}

.bolt-hyrox-links {
  margin: var(--bolt-space-md) 0 0;
  font-size: 0.9rem;
}

/* Athletes teaser (compact) */
.bolt-athletes-teaser__inner {
  display: flex;
  align-items: center;
  gap: var(--bolt-space-md);
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.bolt-athletes-teaser__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--bolt-accent);
}

.bolt-athletes-teaser__icon svg {
  width: 100%;
  height: 100%;
}

.bolt-athletes-teaser__text {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .bolt-athletes-teaser__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Recovery page: intro block + offering cards (image + body)
   -------------------------------------------------------------------------- */
.bolt-recovery-intro {
  display: flex;
  align-items: flex-start;
  gap: var(--bolt-space-lg);
  max-width: 640px;
}

.bolt-recovery-intro__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--bolt-accent);
}

.bolt-recovery-intro__icon svg {
  width: 100%;
  height: 100%;
}

.bolt-recovery-intro .bolt-section__title {
  margin-bottom: var(--bolt-space-sm);
}

.bolt-recovery-intro p {
  margin: 0;
  line-height: 1.65;
  max-width: 52ch;
}

.bolt-recovery-why {
  padding-top: var(--bolt-space-2xl);
  padding-bottom: var(--bolt-space-2xl);
}

/* Offering card: image + body, alternating layout on desktop */
.bolt-recovery-offering {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bolt-space-lg);
  align-items: center;
  margin-top: var(--bolt-space-2xl);
  padding-top: var(--bolt-space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bolt-recovery-offering:first-of-type {
  margin-top: var(--bolt-space-xl);
  padding-top: var(--bolt-space-xl);
  border-top: none;
}

.bolt-recovery-offering__media {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bolt-surface);
}

.bolt-recovery-offering__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.bolt-recovery-offering__body {
  min-width: 0;
}

.bolt-recovery-offering__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--bolt-accent);
  margin-bottom: var(--bolt-space-sm);
}

.bolt-recovery-offering__icon svg {
  width: 100%;
  height: 100%;
}

.bolt-recovery-offering__title {
  font-family: var(--bolt-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-sm);
  color: var(--bolt-text);
}

.bolt-recovery-offering__body p {
  margin: 0 0 var(--bolt-space-sm);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.bolt-recovery-offering__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--bolt-space-xs) var(--bolt-space-md);
}

.bolt-recovery-offering__list li {
  font-size: 0.875rem;
  opacity: 0.9;
}

.bolt-recovery-offering__list li::before {
  content: '· ';
  color: var(--bolt-accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .bolt-recovery-offering {
    grid-template-columns: 1fr 1fr;
    gap: var(--bolt-space-xl);
  }

  .bolt-recovery-offering--reverse .bolt-recovery-offering__media {
    order: 2;
  }

  .bolt-recovery-offering--reverse .bolt-recovery-offering__body {
    order: 1;
  }
}

@media (max-width: 767px) {
  .bolt-recovery-intro {
    flex-direction: column;
    gap: var(--bolt-space-md);
  }

  .bolt-recovery-intro__icon {
    width: 40px;
    height: 40px;
  }

  .bolt-recovery-offering {
    margin-top: var(--bolt-space-xl);
    padding-top: var(--bolt-space-xl);
  }

  .bolt-recovery-offering:first-of-type {
    margin-top: var(--bolt-space-lg);
    padding-top: var(--bolt-space-lg);
  }

  .bolt-recovery-offering__title {
    font-size: 1.25rem;
  }

  .bolt-recovery-offering__media img {
    aspect-ratio: 4/3;
  }
}

/* Recovery page: schedule strip (text only; CTA is in final section below) */
.bolt-recovery-schedule {
  text-align: center;
}

.bolt-recovery-schedule__text {
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
  text-wrap: balance;
}

.bolt-recovery-offering__media {
  border-radius: 12px;
}

.bolt-recovery-lab .bolt-section__intro {
  margin-bottom: var(--bolt-space-2xl);
}

/* --------------------------------------------------------------------------
   Instagram placeholder grid
   -------------------------------------------------------------------------- */
.bolt-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bolt-space-xs);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 640px) {
  .bolt-ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bolt-ig-grid li {
  aspect-ratio: 1;
  background: var(--bolt-surface);
}

.bolt-ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* On the Turf: Instagram follow link with icon (alignment + mobile tap) */
.bolt-section__intro--with-icon {
  text-wrap: normal;
  line-height: 1.6;
}

.bolt-ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  color: var(--bolt-accent);
  text-decoration: none;
  font-weight: 600;
  padding: 0.2em 0.35em;
  margin: 0 -0.35em;
  border-radius: 4px;
  transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease);
}

.bolt-ig-follow:hover {
  color: var(--bolt-text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.bolt-ig-follow__icon {
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
  color: currentColor;
}

.bolt-ig-follow span {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .bolt-ig-follow {
    padding: 0.4em 0.5em;
    margin: 0 -0.5em;
    box-sizing: border-box;
  }
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.bolt-final-cta {
  text-align: center;
  padding: var(--bolt-space-2xl) var(--bolt-space-md);
  background: var(--bolt-surface-dark);
}

.bolt-final-cta__line {
  font-size: 1.25rem;
  margin: 0 0 var(--bolt-space-lg);
  text-wrap: balance;
}

.bolt-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.75em 1.5em;
  min-height: var(--bolt-tap-min);
  box-sizing: border-box;
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  text-decoration: none;
  border-radius: 6px;
}

.bolt-final-cta__btn {
  transition: transform 0.2s var(--bolt-ease-out), box-shadow 0.25s var(--bolt-ease), filter 0.2s var(--bolt-ease);
}

.bolt-final-cta__btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(5, 218, 242, 0.35);
  filter: brightness(1.05);
}

.bolt-final-cta__btn:active {
  transform: translateY(0);
}

.bolt-final-cta--soft .bolt-final-cta__line {
  margin-bottom: var(--bolt-space-sm);
}

.bolt-final-cta--soft .bolt-final-cta__line:last-child {
  margin-bottom: 0;
}

.bolt-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bolt-space-sm);
  justify-content: center;
  align-items: center;
  margin-top: var(--bolt-space-md);
}

.bolt-final-cta__note {
  margin: var(--bolt-space-md) auto 0;
  font-size: 0.8125rem;
  opacity: 0.45;
  max-width: 400px;
  line-height: 1.5;
}

.bolt-final-cta__buttons .bolt-final-cta__btn,
.bolt-final-cta__buttons .bolt-final-cta__secondary {
  margin-top: 0;
}

.bolt-final-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--bolt-space-md);
  padding: 0.75em 1.5em;
  min-height: var(--bolt-tap-min);
  box-sizing: border-box;
  font-family: var(--bolt-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--bolt-accent);
  background: transparent;
  border: 2px solid var(--bolt-accent);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease), box-shadow 0.2s var(--bolt-ease), transform 0.2s var(--bolt-ease-out);
}

.bolt-final-cta__secondary:hover {
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(5, 218, 242, 0.35);
}

.bolt-final-cta__secondary:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Sticky CTA bar (mobile only): keeps "Book" visible while scrolling
   -------------------------------------------------------------------------- */
.bolt-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .bolt-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: var(--bolt-space-sm) var(--bolt-space-md);
    padding-bottom: max(var(--bolt-space-sm), var(--bolt-safe-bottom));
    background: var(--bolt-surface-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s var(--bolt-ease), visibility 0.3s, transform 0.3s var(--bolt-ease);
  }

  .bolt-sticky-cta.bolt-sticky-cta--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .bolt-sticky-cta__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--bolt-tap-min);
    padding: 0.75em 1.25em;
    font-family: var(--bolt-font-heading);
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    color: var(--bolt-primary);
    background: var(--bolt-accent);
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s var(--bolt-ease), transform 0.2s var(--bolt-ease);
  }

  .bolt-sticky-cta__link:hover {
    text-decoration: none;
    filter: brightness(1.08);
  }

  .bolt-sticky-cta__link:active {
    transform: scale(0.98);
  }

  /* Reserve space so content isn’t hidden behind sticky bar when it’s visible */
  body.bolt-sticky-cta-visible .bolt-main {
    padding-bottom: 72px;
  }
}

/* Hide sticky CTA on free-class page (already conversion-focused) */
.page-free-class .bolt-sticky-cta {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.bolt-footer {
  padding: var(--bolt-space-2xl) var(--bolt-space-md);
  background: var(--bolt-surface-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bolt-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.bolt-footer__logo {
  margin-bottom: var(--bolt-space-lg);
}

.bolt-footer__logo img {
  margin: 0 auto;
  height: 32px;
  width: auto;
  opacity: 0.95;
}

.bolt-footer__logo a {
  transition: opacity 0.2s var(--bolt-ease);
}

.bolt-footer__logo a:hover {
  text-decoration: none;
  opacity: 1;
}

.bolt-footer__nav {
  margin-bottom: var(--bolt-space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--bolt-space-xs) var(--bolt-space-sm);
}

.bolt-footer__nav a {
  position: relative;
  color: var(--bolt-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s var(--bolt-ease);
}

.bolt-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--bolt-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--bolt-ease-out);
}

.bolt-footer__nav a:hover {
  color: var(--bolt-accent);
  text-decoration: none;
}

.bolt-footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bolt-footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--bolt-space-sm);
  margin-bottom: var(--bolt-space-md);
  font-size: 0.9rem;
}

.bolt-footer__contact a {
  display: inline-block;
  margin: 0 var(--bolt-space-xs);
  color: var(--bolt-text);
  transition: color 0.2s var(--bolt-ease);
}

.bolt-footer__contact a:hover {
  color: var(--bolt-accent);
}

.bolt-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bolt-space-md);
  margin-bottom: var(--bolt-space-md);
}

.bolt-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--bolt-accent);
  border-radius: 50%;
  transition: color 0.2s var(--bolt-ease), background 0.2s var(--bolt-ease), transform 0.2s var(--bolt-ease-out);
}

.bolt-footer__social-link:hover {
  color: var(--bolt-text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.bolt-footer__social-icon {
  flex-shrink: 0;
  display: block;
}

.bolt-footer__copy {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.bolt-page-hero {
  padding: var(--bolt-space-2xl) var(--bolt-space-md);
  background: var(--bolt-surface-dark);
  text-align: center;
}

.bolt-page-hero__title {
  font-family: var(--bolt-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  margin: 0 0 var(--bolt-space-sm);
  color: var(--bolt-text);
  text-wrap: balance;
}

.bolt-page-hero__sub {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0 0 var(--bolt-space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.bolt-page-hero__inner .bolt-hero__cta {
  margin-top: 1rem;
  text-shadow: none;
}

/* --------------------------------------------------------------------------
   Pricing table (Schedule page)
   -------------------------------------------------------------------------- */
.bolt-pricing {
  width: 100%;
  max-width: 640px;
  margin: 0 auto var(--bolt-space-xl);
  border-collapse: collapse;
  text-align: left;
}

.bolt-pricing th,
.bolt-pricing td {
  padding: var(--bolt-space-sm) var(--bolt-space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bolt-pricing th {
  font-family: var(--bolt-font-heading);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--bolt-accent);
}

.bolt-pricing td:last-child {
  text-align: right;
}

.bolt-pricing .bolt-pricing__price {
  font-weight: 700;
  color: var(--bolt-text);
}

.bolt-pricing a {
  font-size: 0.9rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Forms (Contact, Free Class)
   -------------------------------------------------------------------------- */
.bolt-form {
  max-width: 480px;
  margin: 0 auto;
}

.bolt-form__group {
  margin-bottom: var(--bolt-space-md);
}

.bolt-form label {
  display: block;
  margin-bottom: var(--bolt-space-xs);
  font-size: 0.9rem;
  font-weight: 600;
}

.bolt-form input[type="text"],
.bolt-form input[type="email"],
.bolt-form select,
.bolt-form textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-family: inherit;
  font-size: 1rem;
  color: var(--bolt-text);
  background: var(--bolt-surface);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}

.bolt-form input:focus,
.bolt-form select:focus,
.bolt-form textarea:focus {
  outline: none;
  border-color: var(--bolt-accent);
  box-shadow: 0 0 0 2px rgba(5, 218, 242, 0.3);
}

.bolt-form textarea {
  min-height: 120px;
  resize: vertical;
}

.bolt-form__submit {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-family: var(--bolt-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.bolt-form__submit:hover,
.bolt-form__submit:focus-visible {
  filter: brightness(1.1);
  outline: 2px solid var(--bolt-accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Free Class page: minimal header (body class from WordPress: .page-free-class)
   -------------------------------------------------------------------------- */
.page-free-class .bolt-header__nav,
.page-free-class .bolt-header__dropdown {
  display: none !important;
}

.page-free-class .bolt-header__cta {
  display: none;
}

/* --------------------------------------------------------------------------
   Schedule page: location tabs (segmented control)
   -------------------------------------------------------------------------- */
.bolt-schedule-tabs {
  display: inline-flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: var(--bolt-space-lg);
}

.bolt-schedule-tab {
  position: relative;
  flex: 1;
  padding: 10px var(--bolt-space-xl);
  font-family: var(--bolt-font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

.bolt-schedule-tab:hover {
  color: rgba(255, 255, 255, 0.75);
}

.bolt-schedule-tab--active {
  background: var(--bolt-accent);
  color: #0a0a0a;
}

.bolt-schedule-tab--active:hover {
  color: #0a0a0a;
}

.bolt-schedule-tab:focus-visible {
  outline: 2px solid var(--bolt-accent);
  outline-offset: 3px;
  border-radius: 7px;
}

.bolt-schedule-panel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bolt-schedule-panel--switching {
  animation: bolt-tab-fade 0.2s ease;
}

@keyframes bolt-tab-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   Hyrox: stations 2-column grid
   -------------------------------------------------------------------------- */
.bolt-stations-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--bolt-space-lg);
}

.bolt-stations-list--grid li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bolt-stations-list--grid li:nth-last-child(-n+2) {
  border-bottom: none;
}

@media (max-width: 479px) {
  .bolt-stations-list--grid {
    grid-template-columns: 1fr;
  }

  .bolt-stations-list--grid li:last-child {
    border-bottom: none;
  }

  .bolt-stations-list--grid li:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* --------------------------------------------------------------------------
   Hyrox: hero dual CTAs (page-level hero wrapper)
   -------------------------------------------------------------------------- */
.bolt-page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bolt-space-sm);
  justify-content: center;
  margin-top: var(--bolt-space-md);
}

/* Reset the standalone margin-top so it doesn't double-stack inside wrapper */
.bolt-page-hero__ctas .bolt-hero__cta {
  margin-top: 0;
}

@media (max-width: 479px) {
  .bolt-page-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .bolt-page-hero__ctas .bolt-hero__cta {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Hyrox: program grid — light background variant
   -------------------------------------------------------------------------- */
.bolt-equipment-item--dark {
  background: var(--bolt-surface);
  border-color: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Hyrox: athlete results cards
   -------------------------------------------------------------------------- */
.bolt-hyrox-results-section {
  /* ensure max-width constraint centers the grid nicely */
  max-width: 1200px;
}

.bolt-hyrox-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--bolt-space-lg);
  margin-top: var(--bolt-space-xl);
}

.bolt-hyrox-result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--bolt-ease-out), box-shadow 0.25s var(--bolt-ease);
}

.bolt-hyrox-result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.bolt-hyrox-result-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bolt-hyrox-result-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bolt-hyrox-result-card__photo-icon {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.2);
}

.bolt-hyrox-result-card__photo-icon svg {
  width: 100%;
  height: 100%;
}

/* Group card: side-by-side avatar icons */
.bolt-hyrox-result-card__group-icons {
  display: flex;
  gap: var(--bolt-space-xs);
  align-items: center;
}

.bolt-hyrox-result-card--group .bolt-hyrox-result-card__photo-icon {
  width: 48px;
  height: 48px;
}

.bolt-hyrox-result-card__body {
  padding: var(--bolt-space-md);
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.bolt-hyrox-result-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bolt-primary);
  background: var(--bolt-accent);
  border-radius: 4px;
  padding: 2px 8px;
  margin: 0 0 var(--bolt-space-xs);
}

.bolt-hyrox-result-card__name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}

.bolt-hyrox-result-card__role {
  font-size: 0.8125rem;
  opacity: 0.55;
  margin: 0;
}

.bolt-hyrox-result-card__event {
  font-size: 0.8125rem;
  margin: var(--bolt-space-xs) 0 0;
  opacity: 0.7;
}

.bolt-hyrox-result-card__time {
  font-family: var(--bolt-font-heading);
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--bolt-accent);
  margin: var(--bolt-space-xs) 0 0;
  line-height: 1;
}

.bolt-hyrox-result-card__note {
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.35;
  margin: var(--bolt-space-xs) 0 0;
}

/* Responsive: 2-up on mid-mobile, single column on narrow */
@media (max-width: 767px) {
  .bolt-hyrox-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bolt-space-md);
  }

  .bolt-hyrox-result-card__time {
    font-size: 1.5rem;
  }

  .bolt-hyrox-result-card__body {
    padding: var(--bolt-space-sm);
  }
}

@media (max-width: 439px) {
  .bolt-hyrox-results-grid {
    grid-template-columns: 1fr;
  }

  .bolt-hyrox-result-card__time {
    font-size: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   Responsive: global polish & spacing improvements
   -------------------------------------------------------------------------- */

/* Page hero: wider sub-text max for longer hero copy (e.g. HYROX) */
.bolt-page-hero__sub {
  max-width: 640px;
}

/* Ensure page hero inner is always centred and text-aligned */
.bolt-page-hero__inner {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--bolt-space-sm);
}

/* Section intro: slightly wider on large screens for readability */
@media (min-width: 1024px) {
  .bolt-section__intro {
    max-width: 640px;
  }
}

/* Recovery schedule strip: add a bit more breathing room */
.bolt-recovery-schedule {
  padding-top: var(--bolt-space-2xl);
  padding-bottom: var(--bolt-space-2xl);
}

/* Final CTA: ensure max-width on line text for readability */
.bolt-final-cta__line {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Equipment grid: use 2 cols on mid screens, 4 for the 4-item program grid */
@media (min-width: 768px) {
  .bolt-program-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Hyrox hero CTA area: ensure single button gets proper tap target */
.bolt-hyrox-ctas .bolt-hyrox__cta {
  min-height: var(--bolt-tap-min);
}

/* Footer: improve wrapping on mid-range mobile */
@media (max-width: 767px) {
  .bolt-footer__inner {
    gap: var(--bolt-space-lg);
  }

  .bolt-footer__contact {
    gap: var(--bolt-space-sm);
  }
}

/* Stations grid: ensure consistent bottom border removal */
@media (min-width: 480px) {
  .bolt-stations-list--grid li:nth-child(odd):last-child {
    border-bottom: none;
  }
}

/* Recovery offerings: consistent image border-radius */
.bolt-recovery-offering__media {
  border-radius: 12px;
}

/* Section heading: slightly tighter margin above on mobile */
@media (max-width: 767px) {
  .bolt-section__title {
    margin-bottom: var(--bolt-space-sm);
  }

  /* Tighten vertical padding on dark sections for better mobile rhythm */
  .bolt-section--dark,
  .bolt-section--darker {
    padding-top: var(--bolt-space-xl);
    padding-bottom: var(--bolt-space-xl);
  }

  /* Recovery Lab offerings: reduce extreme spacing on mobile */
  .bolt-recovery-lab .bolt-section__intro {
    margin-bottom: var(--bolt-space-xl);
  }

  /* Hero page CTA dual buttons: full-width stack below 480px */
  .bolt-page-hero__ctas {
    gap: var(--bolt-space-xs);
  }

  /* HYROX results section: tighter heading area */
  .bolt-hyrox-results-section {
    padding-top: var(--bolt-space-xl);
    padding-bottom: var(--bolt-space-xl);
  }
}

/* Accessibility: prefers-reduced-motion for card hover */
@media (prefers-reduced-motion: reduce) {
  .bolt-hyrox-result-card {
    transition: none;
  }

  .bolt-hyrox-result-card:hover {
    transform: none;
    box-shadow: none;
  }
}
