/* ==========================================================================
   Peak Strength & Fitness — brand theme on top of Bootstrap 5

   Direction: premium / high-end gym. The rules that hold it together:
     · Square geometry. Radius is 0 almost everywhere — the softness of
       pill buttons and 1rem cards is what made this read as a template.
     · One expressive display face (Archivo) used big and tight, with
       negative tracking, against small wide-tracked labels.
     · Flat navy scrims over photography instead of diagonal colour washes.
       Let the photo carry the colour.
     · Motion is precise, not bouncy: rules that draw, images that scale a
       hair. Nothing lifts off the page, nothing sits on a blurred shadow.
     · Ornament has to earn its place. Numerals over decorative icons.
   ========================================================================== */

:root {
  --peak-navy: #26315e;
  --peak-navy-deep: #1c2547;
  --peak-ink-deep: #141b33;
  --peak-orange: #eb6c23;
  --peak-orange-dark: #ce5c19;
  --peak-ink: #1a2238;
  --peak-muted: #6b7385;
  --peak-soft: #f4f5f8;
  --peak-border: #dfe3ec;
  --peak-line: #c9cfdd;

  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Square by default. 2px exists only for photographic corners, where a
     true 0 can look like a rendering mistake against a soft image edge. */
  --radius: 0px;
  --radius-img: 2px;

  /* Bootstrap theme overrides */
  --bs-primary: #26315e;
  --bs-primary-rgb: 38, 49, 94;
  --bs-body-color: #1a2238;
  --bs-body-font-family: var(--font-body);
  --bs-border-color: #dfe3ec;
  --bs-link-color: #ce5c19;
  --bs-link-hover-color: #b34f13;
}

body {
  font-family: var(--font-body);
  color: var(--peak-ink);
}

/* ---- Typography ----------------------------------------------------------
   Archivo at its normal width — pushing the width axis past 100% made long
   headings run wide and break awkwardly. Negative tracking still does the
   work of keeping display type tight. */
.font-heading,
h1, h2, h3, .display-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  /* Tight tracking pulls letters together, which also closes up the gaps
     between words. Opening word-spacing back up keeps the word boundaries
     obvious — this matters for our older members. */
  word-spacing: 0.14em;
}

/* Let the browser even out ragged headline lines rather than leaving one
   orphan word on the last line. */
.hero-title,
.section-title,
.page-header__title,
.program-card__title,
.faq-accordion .accordion-button {
  text-wrap: balance;
}

/* Small wide-tracked label. The leading rule is the peak chevron, cut from
   the logo mark, so the motif turns up wherever a section starts. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--peak-orange);
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 0.55rem;
  background: currentColor;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 74% 100%, 50% 46%, 26% 100%);
  flex-shrink: 0;
}
.eyebrow--bare::before { display: none; }

.text-orange { color: var(--peak-orange) !important; }
.text-navy { color: var(--peak-navy) !important; }
.bg-navy { background-color: var(--peak-navy) !important; }
.bg-navy-deep { background-color: var(--peak-navy-deep) !important; }
.bg-orange { background-color: var(--peak-orange) !important; }
.bg-soft { background-color: var(--peak-soft) !important; }

.link-navy { color: inherit; text-decoration: none; }
.link-navy:hover,
.link-navy:focus-visible { color: var(--peak-orange); text-decoration: underline; }

/* Contour texture derived from the logo's nested peaks. Used at very low
   contrast on flat sections so they aren't dead space. */
.peak-texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='200' viewBox='0 0 360 200'%3E%3Cg fill='none' stroke='%23c9cfdd' stroke-width='1.1'%3E%3Cpath d='M-60 210 L180 -30 L420 210'/%3E%3Cpath d='M-60 210 L180 14 L420 210'/%3E%3Cpath d='M-60 210 L180 58 L420 210'/%3E%3Cpath d='M-60 210 L180 102 L420 210'/%3E%3Cpath d='M-60 210 L180 146 L420 210'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 200px;
  background-position: center bottom;
  background-repeat: repeat-x;
}
.peak-texture--dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='200' viewBox='0 0 360 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1.1'%3E%3Cpath d='M-60 210 L180 -30 L420 210'/%3E%3Cpath d='M-60 210 L180 14 L420 210'/%3E%3Cpath d='M-60 210 L180 58 L420 210'/%3E%3Cpath d='M-60 210 L180 102 L420 210'/%3E%3Cpath d='M-60 210 L180 146 L420 210'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Buttons -------------------------------------------------------------
   Square, small caps, widely tracked, generously padded. No lift on hover —
   colour and the arrow carry the feedback instead. */
.btn {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius);
  padding: 1.05rem 2rem;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-lg { padding: 1.2rem 2.5rem; font-size: 0.8rem; }
.btn i { transition: transform 0.18s ease; }
.btn:hover i.bi-arrow-right { transform: translateX(3px); }

.btn-orange {
  background-color: var(--peak-orange);
  color: #fff;
  border: 1px solid var(--peak-orange);
}
.btn-orange:hover,
.btn-orange:focus {
  background-color: var(--peak-ink-deep);
  border-color: var(--peak-ink-deep);
  color: #fff;
}

.btn-navy {
  background-color: var(--peak-navy);
  color: #fff;
  border: 1px solid var(--peak-navy);
}
.btn-navy:hover,
.btn-navy:focus {
  background-color: var(--peak-orange);
  border-color: var(--peak-orange);
  color: #fff;
}

.btn-outline-light-navy {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light-navy:hover,
.btn-outline-light-navy:focus {
  background-color: #fff;
  border-color: #fff;
  color: var(--peak-navy);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--peak-navy);
  border: 1px solid var(--peak-line);
}
.btn-outline-navy:hover,
.btn-outline-navy:focus,
.btn-outline-navy.active {
  background-color: var(--peak-navy);
  border-color: var(--peak-navy);
  color: #fff;
}

.btn-white-navy {
  background-color: #fff;
  color: var(--peak-navy);
  border: 1px solid #fff;
}
.btn-white-navy:hover,
.btn-white-navy:focus {
  background-color: var(--peak-orange);
  border-color: var(--peak-orange);
  color: #fff;
}

/* ---- Announcement bar ---------------------------------------------------- */
.announcement-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.7rem;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  background-color: var(--peak-ink-deep);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.18s ease;
}
.announcement-bar:hover,
.announcement-bar:focus { background-color: #0e1425; color: #fff; }
.announcement-bar__cta { color: var(--peak-orange); }

/* ---- Member class booking (Buzops) --------------------------------------
   Kept visually separate from the enquiry CTAs: members booking a class and
   newcomers asking a question are two different jobs. */
.member-strip {
  background: var(--peak-ink-deep);
  color: #fff;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.member-strip__inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.member-strip__icon {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(235, 108, 35, 0.5);
  color: var(--peak-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.member-strip__text { flex: 1 1 14rem; line-height: 1.45; }
.member-strip__text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 100%;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 1.05rem;
}
.member-strip__text span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.member-card {
  background: var(--peak-ink-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--peak-orange);
  padding: 1.75rem;
  color: #fff;
}
.member-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--peak-orange);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.member-card__body { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; line-height: 1.6; }
.member-card__note { color: rgba(255, 255, 255, 0.42); font-size: 0.72rem; text-align: center; letter-spacing: 0.04em; }

/* ---- Get started band ---------------------------------------------------- */
.get-started-band {
  background: var(--peak-navy);
  color: #fff;
  position: relative;
}

/* ---- Contact ------------------------------------------------------------- */
.contact-intro { font-size: 1.08rem; line-height: 1.75; color: #3a4256; }
.form-hint { font-size: 0.82rem; color: var(--peak-muted); line-height: 1.5; }

/* Honeypot: taken out of the layout without display:none or visibility,
   both of which well-behaved bots check for. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Navbar --------------------------------------------------------------
   The header is white and sticky, so it needs its own edge: a heavy navy
   rule plus a short shadow gradient below it, which makes the page look
   like it is passing underneath rather than butting against it. */
header.sticky-top {
  position: sticky;
  border-bottom: 4px solid var(--peak-navy);
}
header.sticky-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(20, 27, 51, 0.16), rgba(20, 27, 51, 0));
  pointer-events: none;
}
.navbar {
  background-color: #fff;
}
.navbar .nav-link {
  font-weight: 600;
  color: var(--peak-navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}
@media (min-width: 992px) {
  /* A rule that draws in from the left, instead of a colour fade.
     This has to live on ::before — ::after is the dropdown caret, and
     sharing one pseudo-element left the underline stranded to the left of
     the toggle instead of spanning it. */
  .navbar .nav-link::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--peak-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
  }
  .navbar .nav-link:hover::before,
  .navbar .nav-link.active::before { transform: scaleX(1); }
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active { color: var(--peak-navy); }

/* The original stacked lockup, used whole. Sized by height so the artwork
   keeps its own proportions — the wordmark is part of the image, never
   re-typeset. */
.navbar-brand { padding: 0; margin: 0; }
.brand-logo {
  height: 4.5rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .brand-logo { height: 3.5rem; }
}
/* The logo outranks the calls to action, so the nav buttons are pulled in
   tighter than the page-level ones. */
.navbar .btn {
  padding: 0.72rem 1.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

/* Dropdown affordance: Bootstrap's default caret is easy to lose against
   wide-tracked caps, so it gets drawn explicitly and rotates when open. */
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.45rem;
  vertical-align: 0.1em;
  border: 0;
  content: "\F282"; /* bootstrap-icons chevron-down */
  font-family: "bootstrap-icons";
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--peak-orange);
  transition: transform 0.2s ease;
}
.navbar .dropdown-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-toggle::after { transform: rotate(180deg); }
}
.dropdown-menu {
  border: 1px solid var(--peak-border);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 0.35rem;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  white-space: normal;
  border-left: 2px solid transparent;
}
.dropdown-item small {
  display: block;
  color: var(--peak-muted);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--peak-soft);
  border-left-color: var(--peak-orange);
}
.dropdown-item strong {
  color: var(--peak-navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* ---- Hero ----------------------------------------------------------------
   Flat navy scrim, no diagonal wash. A single hard orange rule above the
   headline does the work the gradient used to. */
.media-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.media-hero .media-hero__bg,
.media-band .media-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}
/* The clip sits above the still, which stays behind it as poster and
   fallback. Both are below the scrim. */
.media-hero__video { z-index: -2; object-fit: cover; }
/* Anyone who asks for less motion gets the still instead. */
@media (prefers-reduced-motion: reduce) {
  .media-hero__video { display: none; }
}
/* Flat scrim for legibility, plus a slight foot-darkening so type never
   lands on a hot spot. Not decorative — it's doing contrast work. */
.overlay-home,
.overlay-kids {
  background:
    linear-gradient(to top, rgba(15, 20, 38, 0.72) 0%, rgba(15, 20, 38, 0) 55%),
    rgba(24, 31, 58, 0.66);
}
.hero-min { min-height: 70vh; }
@media (min-width: 576px) {
  .hero-min { min-height: 80vh; }
}
.hero-rule {
  display: block;
  width: 3.5rem;
  height: 4px;
  background: var(--peak-orange);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.75);
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  word-spacing: 0.16em;
  /* Optical alignment: big tight caps read as indented against a flush
     paragraph below unless you pull them back a touch. */
  margin-left: -0.035em;
}
.hero-lead {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Section rhythm ------------------------------------------------------
   Asymmetric by default: an outlined index numeral hangs at the left, the
   heading block sits against it. Breaks the centred eyebrow/title/lead
   stack that repeated down the whole page. */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .section { padding-top: 8rem; padding-bottom: 8rem; }
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--peak-navy);
  line-height: 1.02;
  letter-spacing: -0.02em;
  word-spacing: 0.16em;
}
.section-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--peak-muted);
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-head__body { flex: 1 1 auto; min-width: 0; }
.section-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--peak-line);
  flex-shrink: 0;
  user-select: none;
  margin-top: -0.08em;
}
.section-index--light { -webkit-text-stroke-color: rgba(255, 255, 255, 0.28); }
@media (max-width: 575.98px) {
  .section-head { gap: 1rem; }
  .section-index { -webkit-text-stroke-width: 1.2px; }
}

/* ---- Cards --------------------------------------------------------------- */
.card {
  border: 1px solid var(--peak-border);
  border-radius: var(--radius);
}
.stat-block {
  border-top: 3px solid var(--peak-orange);
  padding-top: 1rem;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  font-size: 2.75rem;
  letter-spacing: -0.035em;
  color: var(--peak-navy);
  line-height: 1;
}

/* About figure — the caption sits on a hard orange block flush to the
   image edge rather than a floating rounded pill. */
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius-img); display: block; }
.about-figure__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--peak-orange);
  color: #fff;
  padding: 1rem 1.5rem;
  max-width: 85%;
}
.about-figure__role {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.15rem;
}

/* Program cards — editorial, not a card grid. The rule under the title
   draws across on hover; nothing lifts. */
.program-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  /* Translucent rather than solid white so the contour texture behind the
     section still reads through the card. */
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid var(--peak-border);
}
.program-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-img);
}
.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.program-card:hover .program-card__media img { transform: scale(1.04); }
.program-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 27, 51, 0.88) 0%, rgba(20, 27, 51, 0.1) 52%, transparent 100%);
}
.program-card__title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: 1.5rem;
  line-height: 0.95;
  margin: 0;
  padding-bottom: 0.6rem;
}
.program-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--peak-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.program-card:hover .program-card__title::after { transform: scaleX(1); }
.program-card__body {
  padding: 1.1rem 0 1.4rem;
  color: var(--peak-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-card { display: flex; flex-direction: column; }
.program-card__body p { flex-grow: 1; }
/* The card is the link, so its "button" is a span that has to pick up the
   hover state from the card rather than from itself. */
.program-card:hover .btn-outline-navy {
  background-color: var(--peak-navy);
  border-color: var(--peak-navy);
  color: #fff;
}
/* Cards all start on the same baseline — the staggered version read as
   arbitrary against the rest of the page's alignment. */

/* ---- Pricing ------------------------------------------------------------- */
.price-card {
  height: 100%;
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  background: #fff;
  border: 1px solid var(--peak-border);
  border-top: 3px solid var(--peak-line);
}
.price-card.featured {
  background: var(--peak-navy);
  color: #fff;
  border-color: var(--peak-navy);
  border-top-color: var(--peak-orange);
  position: relative;
}
/* Tiers are defined by what they include, not by a headline number, so the
   scope line replaces the old price figure. */
.price-scope__main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}
/* When a real price figure is present the scope line steps down to a
   supporting label. Martial arts is the only publicly priced program. */
.price-scope__main--sub {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--peak-muted);
  margin-top: 0.35rem !important;
}
.price-card.featured .price-scope__main--sub { color: rgba(255, 255, 255, 0.65); }
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Martial arts schedule cards */
.ma-slot { border-top: 3px solid var(--peak-navy); padding-top: 1.25rem; }
.ma-slot__day {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-size: 1.25rem;
  color: var(--peak-navy);
  margin: 0;
}
.ma-slot__time { font-family: var(--font-display); font-weight: 700; color: var(--peak-orange); margin-top: 0.35rem; }

/* Who teaches what */
.teaching-team { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; border-top: 1px solid var(--peak-border); padding-top: 1.25rem; }
.teaching-team__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--peak-navy);
}
.teaching-team__discipline {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--peak-orange);
  font-weight: 700;
  margin-top: 0.1rem;
}
.freq-row { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.freq-chip {
  border: 1px solid var(--peak-line);
  padding: 0.25rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peak-navy);
  white-space: nowrap;
}
.freq-chip--light { border-color: rgba(255, 255, 255, 0.35); color: #fff; }

/* Packs / PT / add-ons — supporting detail under the tiers. */
.option-block { border-top: 3px solid var(--peak-navy); padding-top: 1.25rem; }
.option-block p { font-size: 0.95rem; line-height: 1.6; }
.option-block__link {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--peak-orange);
  text-decoration: none;
}
.option-block__link:hover { color: var(--peak-navy); text-decoration: underline; }
.price-card__note {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--peak-muted);
}
.price-card.featured .price-card__note { color: rgba(255, 255, 255, 0.5); }

/* The fourth column of the tier grid: not a tier, so it reads as a slightly
   different surface while keeping the same footprint. */
.price-card--more {
  background: var(--peak-soft);
  border-top-color: var(--peak-orange);
}

/* A quiet shelf pointing somewhere else — used under the martial arts
   pricing to cross-link the gym memberships. */
.all-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  border-top: 3px solid var(--peak-navy);
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .all-options { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* External-link marker on a program card that goes straight to Buzops. */
.program-card__external {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}
.price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--peak-orange);
  color: #fff;
  padding: 0.35rem 0.9rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-body);
}
.check-icon { color: var(--peak-orange); flex-shrink: 0; }

/* ---- Martial arts band --------------------------------------------------- */
.discipline-card {
  height: 100%;
  border: 0;
  border-top: 1px solid var(--peak-border);
  background: transparent;
  border-radius: 0;
  padding: 1.5rem 0 0;
  transition: border-color 0.22s ease;
}
.discipline-card--light { border-top-color: rgba(255, 255, 255, 0.22); }
.discipline-card:hover { border-top-color: var(--peak-orange); }

.instructor-portrait {
  width: 11rem;
  height: 11rem;
  object-fit: cover;
  border-radius: var(--radius-img);
}
/* Schedule list on a light ground (the martial arts page). */
.schedule-list--dark li { border-top-color: var(--peak-border); }
.discipline-card__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--peak-orange);
}
/* Kids page benefits — same numeral treatment, light ground. */
.benefit-item {
  border-top: 1px solid var(--peak-border);
  padding-top: 1.5rem;
  transition: border-top-color 0.22s ease;
}
.benefit-item:hover { border-top-color: var(--peak-orange); }
.benefit-item__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--peak-orange);
}
.benefit-item p { font-size: 0.92rem; line-height: 1.6; }

.panel-glass {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
}
.schedule-list { list-style: none; margin: 0; padding: 0; }
.schedule-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.schedule-list li:first-child { border-top: 0; }
.tag-pill {
  display: inline-block;
  color: var(--peak-orange);
  border-radius: 0;
  padding: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Testimonials -------------------------------------------------------- */
.stars { color: var(--peak-orange); letter-spacing: 2px; font-size: 0.8rem; }

/* ---- Forms --------------------------------------------------------------- */
.form-card {
  background: #fff;
  color: var(--peak-ink);
  border: 1px solid var(--peak-border);
  border-top: 3px solid var(--peak-navy);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: none;
}
.form-label {
  font-weight: 600;
  color: var(--peak-navy);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.form-control, .form-select {
  border-radius: var(--radius);
  border: 1px solid var(--peak-border);
  padding: 0.75rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--peak-navy);
  box-shadow: 0 0 0 2px rgba(38, 49, 94, 0.12);
}
.success-check {
  width: 3.25rem; height: 3.25rem;
  border-radius: 0;
  background: var(--peak-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- Location ------------------------------------------------------------ */
.info-icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: 0;
  border: 1px solid var(--peak-border);
  background: transparent;
  color: var(--peak-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-frame {
  border-radius: var(--radius-img);
  overflow: hidden;
  min-height: 22rem;
  border: 1px solid var(--peak-border);
  /* Photography and maps carry colour; the map gets pulled toward the
     brand navy so it doesn't fight the palette. */
  filter: grayscale(0.35) contrast(1.03);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 22rem; border: 0; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--peak-ink-deep); color: rgba(255, 255, 255, 0.68); }
.footer-logo { width: 8.5rem; height: auto; }
.site-footer h5 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--peak-orange);
  font-size: 0.68rem;
  font-weight: 700;
}
.site-footer a { color: rgba(255, 255, 255, 0.68); text-decoration: none; transition: color 0.15s ease; }
.site-footer a:hover { color: #fff; }
.social-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.social-btn:hover { background: var(--peak-orange); border-color: var(--peak-orange); color: #fff; }

/* ---- Lists --------------------------------------------------------------- */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.4rem 0; color: var(--peak-navy); }
.tick-list li::before {
  content: "";
  margin-top: 0.55rem;
  width: 0.5rem; height: 2px;
  background: var(--peak-orange);
  flex-shrink: 0;
}


/* ---- Interior page header ------------------------------------------------ */
.page-header {
  background: var(--peak-soft);
  border-bottom: 1px solid var(--peak-border);
  padding: 3rem 0 3.5rem;
}
@media (min-width: 992px) {
  .page-header { padding: 5rem 0 5.5rem; }
}
.page-header__title {
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  color: var(--peak-navy);
  line-height: 1.02;
  letter-spacing: -0.022em;
  word-spacing: 0.16em;
  margin-left: -0.03em;
}
.page-header__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--peak-muted);
  max-width: 42rem;
}
.crumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--peak-muted);
}
.crumb-list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--peak-line);
}
.crumb-list a { color: var(--peak-muted); text-decoration: none; }
.crumb-list a:hover { color: var(--peak-orange); }

/* ---- Weekly schedule ----------------------------------------------------- */
.week-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--peak-border);
  border: 1px solid var(--peak-border);
}
@media (min-width: 576px) { .week-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .week-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .week-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1400px) { .week-grid { grid-template-columns: repeat(7, 1fr); } }

.day-card {
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
}
.day-card--today { background: #fbfcfe; box-shadow: inset 0 3px 0 var(--peak-orange); }
.day-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--peak-navy);
  margin: 0 0 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--peak-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.day-card__today {
  background: var(--peak-orange);
  color: #fff;
  border-radius: 0;
  padding: 0.15rem 0.45rem;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.day-card__note,
.day-card__closed {
  font-size: 0.78rem;
  color: var(--peak-muted);
  margin: 0.85rem 0 0;
}
.day-card__closed { margin-top: 0; }

.slot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.slot {
  border-left: 2px solid var(--peak-line);
  border-radius: 0;
  background: transparent;
  padding: 0.35rem 0 0.35rem 0.6rem;
}
.slot__time {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  color: var(--peak-navy);
  line-height: 1.25;
}
.slot__name {
  display: block;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--peak-muted);
  margin-top: 0.1rem;
}
.slot--strength { border-left-color: var(--peak-navy); }
.slot--balance  { border-left-color: #4c9a8f; }
.slot--hiit     { border-left-color: var(--peak-orange); }
.slot--apt      { border-left-color: #8b5cd6; }
.slot--open     { border-left-color: var(--peak-line); }
.slot--martial  { border-left-color: #c0455c; }
.slot-list--light .slot { background: transparent; }

.type-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0;
  flex-shrink: 0;
  display: inline-block;
}
.type-dot--strength { background: var(--peak-navy); }
.type-dot--balance  { background: #4c9a8f; }
.type-dot--hiit     { background: var(--peak-orange); }
.type-dot--apt      { background: #8b5cd6; }
.type-dot--open     { background: var(--peak-line); }
.type-dot--martial  { background: #c0455c; }

/* ---- CTA strip ----------------------------------------------------------- */
.cta-strip {
  background: var(--peak-navy);
  border-radius: var(--radius);
  border-left: 4px solid var(--peak-orange);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cta-strip { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.5rem 2.75rem; }
}

/* ---- Coaches ------------------------------------------------------------- */
.coach-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0;
  border-top: 1px solid var(--peak-border);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  text-decoration: none;
  transition: border-top-color 0.22s ease;
}
.coach-card:hover { border-top-color: var(--peak-orange); }
.coach-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--peak-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  border-radius: var(--radius-img);
  /* Mixed-quality phone snapshots pulled toward one look; full colour
     returns on hover. */
  filter: grayscale(0.85) contrast(1.05);
  transition: filter 0.4s ease;
}
.coach-card:hover .coach-card__media { filter: grayscale(0) contrast(1); }
.coach-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.coach-card:hover .coach-card__media img { transform: scale(1.04); }
.coach-card__initials,
.coach-portrait__initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.02em;
}
.coach-card__initials { font-size: 3.5rem; }
.coach-card__body { padding: 1.25rem 0 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.coach-card__teaser {
  color: var(--peak-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}
.coach-card__more {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--peak-orange);
}
.coach-card__more i { transition: transform 0.2s ease; display: inline-block; }
.coach-card:hover .coach-card__more i { transform: translateX(4px); }

.coach-hero {
  background: var(--peak-soft);
  border-bottom: 1px solid var(--peak-border);
  padding: 2.5rem 0 3rem;
}
@media (min-width: 992px) {
  .coach-hero { padding: 4rem 0 4.5rem; }
}
.coach-portrait {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-img);
  overflow: hidden;
  background: var(--peak-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 20rem;
  box-shadow: none;
}
.coach-portrait img { width: 100%; height: 100%; object-fit: cover; }
.coach-portrait__initials { font-size: 5rem; }

.chip {
  background: transparent;
  border: 1px solid var(--peak-line);
  border-radius: 0;
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--peak-navy);
}
.coach-prose { font-size: 1.08rem; line-height: 1.75; color: #3a4256; }

.coach-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--peak-border);
  padding-top: 1.75rem;
}
.coach-pager__link { text-decoration: none; max-width: 45%; }
.coach-pager__link--next { text-align: right; margin-left: auto; }
.coach-pager__dir {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--peak-orange);
  font-weight: 700;
}
.coach-pager__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 100%;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--peak-navy);
  margin-top: 0.25rem;
}
.coach-pager__all {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--peak-muted);
  text-decoration: none;
  order: 3;
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .coach-pager__all { order: 0; width: auto; }
}
.coach-pager__all:hover { color: var(--peak-orange); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq-group-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--peak-orange);
  letter-spacing: 0.24em;
  margin-bottom: 1.25rem;
}
.faq-accordion .accordion-item {
  border: 0;
  border-top: 1px solid var(--peak-border);
  border-radius: 0 !important;
  margin-bottom: 0;
  overflow: hidden;
  background: transparent;
}
.faq-accordion .accordion-item:last-child { border-bottom: 1px solid var(--peak-border); }
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 100%;
  text-transform: none;
  letter-spacing: -0.012em;
  color: var(--peak-navy);
  font-size: 1.05rem;
  padding: 1.35rem 0.25rem;
  background: transparent;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--peak-orange);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  outline: 2px solid var(--peak-orange);
  outline-offset: -2px;
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\F4FE"; /* bootstrap-icons plus-lg */
  font-family: "bootstrap-icons";
  font-size: 0.85rem;
  color: var(--peak-orange);
  transform: none;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\F2EA"; /* bootstrap-icons dash-lg */
  transform: none;
}
.faq-accordion .accordion-body {
  padding: 0 0.25rem 1.5rem;
  color: var(--peak-muted);
  line-height: 1.75;
}
.sticky-aside { position: sticky; top: 6.5rem; }

/* ==========================================================================
   MOBILE
   Most first-time visitors arrive on a phone, so everything below is about
   that first screen: reachable tap targets, no sideways scroll, and the
   actions a phone visitor actually takes always within thumb reach.
   ========================================================================== */

/* ---- Day picker (schedule) ----------------------------------------------
   Seven stacked day cards is ~2,100px of scrolling to answer "what's on
   today". Under 768px we collapse to one day at a time, defaulting to
   today. The tabs stay hidden until JS turns them on, so a no-JS visitor
   still sees the complete week. */
.day-tabs {
  display: flex;
  gap: 1px;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: var(--peak-border);
  border: 1px solid var(--peak-border);
}
.day-tabs::-webkit-scrollbar { display: none; }
.day-tab {
  /* Share the row evenly so the whole week is reachable without a
     sideways swipe; overflow-x on the parent is the 320px safety net. */
  flex: 1 1 0;
  min-width: 0;
  min-height: 2.75rem;
  border: 0;
  background: #fff;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--peak-navy);
  padding: 0.5rem 0.3rem;
}
.day-tab[aria-selected="true"] {
  background: var(--peak-navy);
  color: #fff;
}
.day-tab--today::after {
  content: "";
  display: block;
  width: 0.9rem;
  height: 2px;
  background: var(--peak-orange);
  margin: 0.25rem auto 0;
}
@media (min-width: 768px) {
  .day-tabs { display: none !important; }
}
/* Only filter when JS has taken over. */
.js-daypicker .day-card { display: none; }
.js-daypicker .day-card.is-active { display: flex; }
@media (min-width: 768px) {
  .js-daypicker .day-card { display: flex; }
}

/* ---- Mobile action bar --------------------------------------------------- */
.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: flex;
  gap: 1px;
  padding: 0;
  background: var(--peak-border);
  border-top: 1px solid var(--peak-border);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-actions .btn {
  padding: 0.9rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0;
  border: 0;
}
.mobile-actions .btn-outline-navy { background: #fff; }
.mobile-actions__icon {
  flex: 0 0 auto;
  width: 3.25rem;
  padding-left: 0;
  padding-right: 0;
  font-size: 1rem;
}
/* Slide out of the way when the contact form itself is on screen. */
.mobile-actions.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  /* Keep the footer clear of the fixed bar. */
  body { padding-bottom: 4.5rem; }
}

@media (max-width: 991.98px) {
  /* ---- Reachable tap targets ------------------------------------------- */
  .navbar-toggler { padding: 0.5rem 0.75rem; min-height: 2.75rem; border-radius: 0; }
  .navbar .nav-link { padding-top: 0.7rem; padding-bottom: 0.7rem; }
  .dropdown-item { padding-top: 0.7rem; padding-bottom: 0.7rem; }
  /* Block, not inline-block, so the whole column width is tappable rather
     than just the width of the words. */
  .site-footer li a {
    display: block;
    padding: 0.4rem 0;
    min-height: 2.5rem;
  }
  .site-footer .d-flex > a {
    display: inline-block;
    padding: 0.4rem 0;
    min-height: 2.5rem;
  }
  .crumb-list { font-size: 0.7rem; }
  .crumb-list a { display: inline-block; padding: 0.3rem 0; }
  /* Phone and email are the two things a visitor taps from the address
     block — give them a real target, not a 20px line of text. */
  .link-navy { display: inline-block; padding: 0.45rem 0; }
  .coach-pager__all { padding: 0.6rem 0; }

  /* Open nav menu must not swallow the screen — let it scroll instead. */
  .navbar-collapse.show {
    max-height: calc(100svh - 8rem);
    overflow-y: auto;
  }

  /* ---- Legibility --------------------------------------------------------
     Small wide-tracked labels are part of the look, but on a phone they
     need a floor. Anything a visitor has to read or tap gets bumped;
     purely decorative marks can stay small. */
  .brand-mark small { font-size: 0.63rem; letter-spacing: 0.2em; }
  .tag-pill { font-size: 0.72rem; }
  .day-card__today { font-size: 0.64rem; }
  .coach-pager__dir { font-size: 0.72rem; }
  .page-header__lead, .hero-lead { font-size: 1rem; }
  .announcement-bar { font-size: 0.74rem; letter-spacing: 0.12em; }
  .mobile-actions .btn { font-size: 0.75rem; letter-spacing: 0.1em; }
  .eyebrow { font-size: 0.74rem; letter-spacing: 0.22em; }
  .hero-badge { font-size: 0.72rem; letter-spacing: 0.22em; }
  .price-badge { font-size: 0.7rem; letter-spacing: 0.14em; }
  .about-figure__role { font-size: 0.72rem; }
  .member-card__badge, .site-footer h5 { font-size: 0.72rem; letter-spacing: 0.18em; }
  .faq-group-heading { font-size: 0.74rem; letter-spacing: 0.2em; }
  .chip, .coach-card__more, .crumb-list { font-size: 0.72rem; }

  /* ---- Breathing room ---------------------------------------------------- */
  .section { padding-top: 4rem; padding-bottom: 4rem; }
  .section-head { margin-bottom: 2rem; }
  .price-card { padding: 1.75rem 1.5rem; }
  .form-card { padding: 1.5rem; }
  .cta-strip { padding: 1.75rem; }
  .map-frame, .map-frame iframe { min-height: 16rem; }

  /* A 1:1 portrait at full width eats the whole first screen. */
  .coach-portrait { max-width: 11rem; }
  .coach-hero { padding-top: 1.75rem; padding-bottom: 2.25rem; }
}

@media (max-width: 767.98px) {
  /* Six stacked testimonials is ~2,200px of scrolling past quotes nobody
     asked to read in full. Swipe through them instead. */
  .testimonial-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .testimonial-rail::-webkit-scrollbar { display: none; }
  .testimonial-rail > * {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  /* A 4:5 crop on a full-width card is a 440px-tall photo before you reach
     any words. Shorter crop, same image. */
  .program-card__media { aspect-ratio: 16 / 10; }
}

@media (max-width: 575.98px) {
  /* Hero CTAs go full width so they're unmissable and easy to hit. */
  .media-hero .btn { width: 100%; }
  .price-amount { font-size: 2.75rem; }
  .day-card { padding: 0.9rem; }
}

/* Dynamic viewport units: iOS/Android address bars resize the visual
   viewport, and plain vh makes the hero jump as the bar hides. */
@supports (height: 100svh) {
  .hero-min { min-height: 70svh; }
  @media (min-width: 576px) {
    .hero-min { min-height: 80svh; }
  }
}

/* Respect users who ask for less motion. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .program-card:hover .program-card__media img,
  .coach-card:hover .coach-card__media img { transform: none; }
  .program-card__title::after { transform: scaleX(1); }
}
