/* ==========================================================================
   Gym Leo's Fitness Abuja — Shared stylesheet
   Mobile-first · Vanilla CSS · No frameworks
   ========================================================================== */

/*
   TABLE OF CONTENTS
   Jump: Ctrl+F "SECTION:" + name, or Go to Line (Ctrl+G) in Cursor/VS Code.
   Line numbers drift when you edit — section markers stay reliable.

   SECTION: design-tokens .............. L37
   SECTION: reset-base ................. L101
   SECTION: typography ................. L176
   SECTION: layout ..................... L287
   SECTION: logo ....................... L342
   SECTION: navigation ................. L412
   SECTION: buttons .................... L564
   SECTION: cards ...................... L700
     (branch ~730, pricing cards ~796, diamond ~956, testimonials ~1026, events ~1070)
   SECTION: pricing-controls ........... L1088
   SECTION: cta-banner ................. L1173
   SECTION: hero ....................... L1196
   SECTION: grids ...................... L1295
   SECTION: steps ...................... L1389
   SECTION: bank-block ................. L1420
   SECTION: footer ..................... L1462
   SECTION: utilities .................. L1593
   SECTION: landing-page ............... L1642
   SECTION: branch-pages ............... L2007
   SECTION: payment-modal .............. L2309
     (mobile overrides ~2543)
   SECTION: stub-pages ................. L2620
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* SECTION: design-tokens
   --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --red: #d72638;
  --teal: #1a7abf;
  --navy: #1a1a2e;
  --white: #ffffff;
  --gold: #c8a000;
  --border: #eaecf5;
  --muted: #777777;

  /* Derived */
  --red-soft: #fff0f2;
  --teal-soft: #eef4fb;
  --navy-soft: #222240;
  --navy-footer: #111122;
  --text: var(--navy);
  --text-inverse: var(--white);
  --whatsapp: #25d366;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --text-body: 0.9375rem;
  /* 15px */
  --text-body-sm: 0.875rem;
  /* 14px */
  --text-label: 0.6875rem;
  /* 11px */
  --leading-body: 1.75;

  --heading-mobile: 3rem;
  /* 48px */
  --heading-desktop: 4rem;
  /* 64px */
  --heading-xl: 3.75rem;
  /* 60px hero sub-desktop */

  /* Layout */
  --max-width: 1200px;
  --nav-height: 3.5rem;
  /* 56px mobile */
  --section-y: 3.75rem;
  /* 60px */
  --section-x: 1.5rem;
  /* 24px */
  --radius-btn: 6px;
  --radius-card: 12px;
  --radius-tag: 4px;

  /* Transitions */
  --ease: 0.2s ease;
}

@media (min-width: 768px) {
  :root {
    --nav-height: 4rem;
    /* 64px */
    --section-y: 5rem;
    /* 80px */
    --section-x: 3rem;
    /* 48px */
    --heading-xl: 4.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --heading-desktop: 4.5rem;
  }
}

/* SECTION: reset-base
   --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--text);
  background: var(--white);
  min-width: 320px;
  overflow-x: clip;
  width: 100%;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* SECTION: typography
   --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.gl-display,
h1.gl-h1,
.gl-h1 {
  font-family: var(--font-display);
  font-size: var(--heading-mobile);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

@media (min-width: 768px) {

  .gl-display,
  h1.gl-h1,
  .gl-h1 {
    font-size: var(--heading-desktop);
  }
}

.gl-h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .gl-h2 {
    font-size: 3.125rem;
    /* 50px */
  }
}

.gl-h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

.gl-section-label {
  display: block;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.625rem;
}

.gl-section-label--light {
  color: #e8a0a8;
}

.gl-lead {
  font-size: var(--text-body);
  color: var(--muted);
  line-height: var(--leading-body);
  max-width: 32rem;
}

.gl-body {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--muted);
}

.gl-body--inverse {
  color: #8888aa;
}

/* Prices: Bebas large, ₦ smaller */
.gl-price {
  font-family: var(--font-display);
  font-size: 3.375rem;
  line-height: 1;
  color: var(--navy);
}

.gl-price__currency {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--red);
  vertical-align: super;
  margin-right: 0.125rem;
}

.gl-price__period {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
}

/* Accent colors in headings */
.gl-text-red {
  color: var(--red);
}

.gl-text-teal {
  color: var(--teal);
}

.gl-text-gold {
  color: var(--gold);
}

.gl-text-white {
  color: var(--white);
}

/* SECTION: layout
   --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.gl-container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-x);
}

.gl-section {
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid #f0f0f5;
}

.gl-section--flush-top {
  border-top: none;
}

.gl-section--alt {
  background: #fafbff;
}

.gl-section--dark {
  background: var(--navy);
  border-top-color: #2a2a45;
  color: var(--white);
}

.gl-section--dark .gl-h2,
.gl-section--dark .gl-h3 {
  color: var(--white);
}

.gl-section--dark .gl-lead,
.gl-section--dark .gl-body--inverse {
  color: #8888aa;
}

.gl-section__header {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .gl-section__header {
    margin-bottom: 3rem;
  }
}

/* Full-width inner strip (about statement, CTA) */
.gl-strip {
  padding: var(--section-y) var(--section-x);
}

/* SECTION: logo
   --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */
.gl-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.gl-logo__img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(10.5rem, 42vw);
  object-fit: contain;
}

@media (min-width: 768px) {
  .gl-logo__img {
    height: 3.25rem;
    max-width: 11.5rem;
  }
}

/* Circular logo mark — nav & footer */
.gl-logo--circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  line-height: 0;
}

.gl-logo--nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex-shrink: 1;
  color: var(--navy);
  text-decoration: none;
}

.gl-nav__brand {
  display: none;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.gl-nav .gl-logo--circle {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.2rem;
  flex-shrink: 0;
}

.gl-footer .gl-logo--circle {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0.35rem;
}

@media (min-width: 768px) {
  .gl-nav .gl-logo--circle {
    width: 3.5rem;
    height: 3.5rem;
  }

  .gl-nav__brand {
    display: block;
    font-size: 1.25rem;
  }

  .gl-footer .gl-logo--circle {
    width: 5rem;
    height: 5rem;
  }
}

.gl-logo--circle .gl-logo__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

/* SECTION: navigation
   --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.gl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.gl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: 100%;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--section-x);
  min-width: 0;
}

.gl-nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 500;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gl-nav__links>li {
  list-style: none;
}

.gl-nav__link {
  color: #555555;
  transition: color var(--ease);
}

.gl-nav__link:hover,
.gl-nav__link.is-active {
  color: var(--red);
}

.gl-nav__item--dropdown {
  position: relative;
}

.gl-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  min-width: 13.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 0.75rem 2rem rgba(26, 26, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.35rem);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  z-index: 110;
}

.gl-nav__item--dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.gl-nav__item--dropdown:hover .gl-nav__dropdown,
.gl-nav__item--dropdown:focus-within .gl-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gl-nav__dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--ease), color var(--ease);
}

.gl-nav__dropdown a:hover {
  background: var(--red-soft);
  color: var(--red);
}

.gl-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Hidden on mobile — Join Now lives in hamburger overlay */
.gl-nav__actions a.gl-nav__cta.gl-btn {
  display: none;
}

.gl-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}

.gl-nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform var(--ease), opacity var(--ease);
}

.gl-nav.is-open .gl-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gl-nav.is-open .gl-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.gl-nav.is-open .gl-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile full-screen overlay */
.gl-nav__overlay {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: var(--white);
  padding: 2rem var(--section-x);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: none;
}

.gl-nav.is-open .gl-nav__overlay {
  pointer-events: auto;
}

.gl-nav.is-open .gl-nav__overlay {
  transform: translateX(0);
  visibility: visible;
}

.gl-nav__overlay-link {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.gl-nav__overlay-link.is-active {
  color: var(--red);
}

.gl-nav__overlay-sublink {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  border-bottom: none;
}

.gl-nav__overlay-sublink:hover {
  color: var(--red);
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.nav-open {
  touch-action: none;
}

body.nav-open .gl-nav.is-open,
body.nav-open .gl-nav.is-open * {
  touch-action: auto;
}

/* Mobile menu: pin header + overlay to viewport (fixes scroll / X placement) */
@media (max-width: 767px) {
  .gl-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100dvh;
    overflow: hidden;
    background: var(--white);
    border-bottom: none;
  }

  .gl-nav.is-open .gl-nav__inner {
    flex: 0 0 auto;
    height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    min-height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    max-height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
    box-sizing: border-box;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    align-items: center;
  }

  .gl-nav.is-open .gl-nav__overlay {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
    overflow-y: auto;
  }

  .gl-nav.is-open .gl-nav__toggle {
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 768px) {
  .gl-nav__links {
    display: flex;
  }

  .gl-nav__overlay-sublink {
    display: none;
  }

  .gl-nav__actions a.gl-nav__cta.gl-btn {
    display: inline-flex;
  }

  .gl-nav__toggle,
  .gl-nav__overlay {
    display: none;
  }
}

/* SECTION: buttons
   --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

.gl-btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.gl-btn--primary:hover {
  background: #b81f2f;
  border-color: #b81f2f;
}

.gl-btn--secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.gl-btn--secondary:hover {
  background: var(--teal-soft);
}

.gl-btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.gl-btn--whatsapp::before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  background-color: var(--white);
  mask-image: url(/assets/icons/whatsapp.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(/assets/icons/whatsapp.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.gl-btn--whatsapp.gl-btn--sm::before {
  width: 1rem;
  height: 1rem;
}

.gl-btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

/* Optional manual icon (e.g. if pseudo-element is disabled) */
.gl-btn--has-icon .gl-btn__icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.gl-btn--whatsapp.gl-btn--has-icon::before {
  content: none;
}

.gl-btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.gl-btn--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.gl-btn--icon-instagram::before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  background-color: currentColor;
  mask-image: url(/assets/icons/instagram.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(/assets/icons/instagram.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.gl-btn--block {
  width: 100%;
}

.gl-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* Tier / branch tags — not pill */
.gl-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-tag);
}

.gl-tag--red {
  background: rgba(215, 38, 56, 0.12);
  color: #c44;
}

.gl-tag--teal {
  background: rgba(26, 122, 191, 0.15);
  color: var(--teal);
}

.gl-tag--gold {
  background: rgba(200, 160, 0, 0.15);
  color: var(--gold);
}

.gl-tag--flagship {
  background: var(--red);
  color: var(--white);
  font-size: 0.625rem;
  padding: 0.35rem 0.7rem;
  letter-spacing: 0.14em;
  align-self: flex-start;
}

/* SECTION: cards
   --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.gl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .gl-card {
    padding: 1.75rem;
  }
}

.gl-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.gl-card__text {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: var(--leading-body);
}

/* Branch cards (dark section) */
.gl-branch-card {
  background: var(--navy-soft);
  border: 1px solid #333358;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.gl-branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.gl-branch-card--red::before {
  background: var(--red);
}

.gl-branch-card--teal::before {
  background: var(--teal);
}

.gl-branch-card--flagship::before {
  background: linear-gradient(90deg, var(--red), var(--teal));
}

.gl-branch-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.gl-branch-card__meta {
  font-size: 0.75rem;
  color: #7777aa;
  line-height: var(--leading-body);
  margin-bottom: 1.25rem;
}

/* Service / feature cards */
.gl-service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.75rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.625rem;
  transition: border-color var(--ease);
}

.gl-service-card:hover {
  border-color: var(--red);
}

.gl-service-card__icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
}

.gl-service-card__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.gl-service-card .gl-card__text {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.gl-service-card__icon--red {
  background: var(--red-soft);
}

.gl-service-card__icon--teal {
  background: var(--teal-soft);
}

/* Pricing cards (branch pages) */
.gl-section--pricing {
  background: linear-gradient(180deg, #f4f6fc 0%, var(--white) 12rem);
}

.gl-grid-4--pricing {
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .gl-grid-4--pricing {
    gap: 1.5rem;
  }
}

.gl-pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}

.gl-pricing-card__head {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.gl-pricing-card__tier-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.375rem;
}

.gl-pricing-card__plan {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1.35;
}

.gl-pricing-card__tier {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 0.875rem;
}

.gl-pricing-card__subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.gl-pricing-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gl-pricing-card__price-block {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eef0f6;
}

.gl-pricing-card__price-block .gl-price {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
}

.gl-pricing-card--bronze {
  border-top: 4px solid #b87333;
}

.gl-pricing-card--bronze .gl-pricing-card__head {
  background: linear-gradient(160deg, #faf3eb 0%, var(--white) 100%);
}

.gl-pricing-card--bronze .gl-pricing-card__tier-name {
  color: #9a5c28;
}

.gl-pricing-card--silver {
  border-top: 4px solid #8b93a8;
}

.gl-pricing-card--silver .gl-pricing-card__head {
  background: linear-gradient(160deg, #f2f4f8 0%, var(--white) 100%);
}

.gl-pricing-card--silver .gl-pricing-card__tier-name {
  color: #5c6578;
}

.gl-pricing-card--gold {
  border-top: 4px solid #c49a1a;
}

.gl-pricing-card--gold .gl-pricing-card__head {
  background: linear-gradient(160deg, #faf6e8 0%, var(--white) 100%);
}

.gl-pricing-card--gold .gl-pricing-card__tier-name {
  color: #8a6d12;
}

.gl-pricing-card__features {
  flex: 1;
  margin: 0 0 1rem;
}

.gl-pricing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.gl-pricing-card__actions .gl-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Homepage pricing overview — matches branch cards, links to branch pages */
.gl-pricing-card--overview {
  min-height: 100%;
}

.gl-pricing-card__features--compact {
  margin-bottom: 1rem;
}

.gl-pricing-card__branch-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.gl-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.gl-pricing-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.gl-pricing-card__dot--teal {
  background: var(--teal);
}

/* Diamond tier — gold accent ONLY here */
.gl-pricing-card--diamond {
  border-color: var(--gold);
  border-width: 2px;
  border-top-width: 4px;
}

.gl-pricing-card--diamond .gl-pricing-card__head {
  background: linear-gradient(160deg, #1a1a2e 0%, #252545 100%);
  border-bottom-color: #333358;
  padding-top: 1.5rem;
  padding-right: 4.75rem;
}

.gl-pricing-card--diamond .gl-pricing-card__tier-name {
  color: var(--gold);
}

.gl-pricing-card--diamond .gl-pricing-card__plan {
  color: #e8e8f0;
}

.gl-pricing-card--diamond .gl-pricing-card__subtitle {
  color: #9999bb;
}

.gl-pricing-card--diamond .gl-pricing-card__price-block {
  border-bottom-color: #333358;
}

.gl-pricing-card--diamond .gl-pricing-card__price-block .gl-price {
  color: var(--navy);
}

.gl-pricing-card--diamond .gl-price__currency {
  color: var(--gold);
}

.gl-pricing-card--diamond .gl-price__period {
  color: var(--muted);
}

.gl-pricing-card--diamond .gl-pricing-card__features li {
  color: var(--muted);
  border-bottom-color: #f5f5f5;
}

.gl-pricing-card.is-unavailable .gl-pricing-card__price-block .gl-price,
.gl-pricing-card.is-unavailable .gl-price__currency {
  color: var(--muted);
}

.gl-pricing-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  left: auto;
  transform: none;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-tag);
  white-space: nowrap;
  z-index: 1;
}

/* Google rating + review cards */
.gl-google-summary--inline {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.75rem;
  max-width: 36rem;
}

.gl-google-summary__content {
  min-width: 0;
}

.gl-google-summary__icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.gl-google-summary__rating {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.45;
}

.gl-google-summary__rating strong {
  font-weight: 700;
}

.gl-google-summary__stars {
  color: #f4b400;
  letter-spacing: 0.02em;
}

.gl-google-summary__stars .gl-google-stars__star {
  font-size: 0.8125rem;
}

.gl-google-summary__count {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
}

.gl-google-summary__links {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.gl-google-summary__links a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.gl-google-summary__links a:hover {
  text-decoration: underline;
}

.gl-google-summary__sep {
  color: var(--muted);
  margin-inline: 0.25rem;
}

.gl-testimonials-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: var(--section-x);
}

.gl-testimonials-wrap::-webkit-scrollbar {
  display: none;
}

.gl-testimonials-grid {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.25rem;
  min-width: 0;
}

.gl-testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 86%;
  max-width: 86%;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.125rem 1.125rem 1rem;
}

.gl-testimonial-card--google {
  box-shadow: 0 1px 2px rgba(26, 26, 46, 0.04);
}

.gl-testimonial-card__profile {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.gl-testimonial-card__identity {
  flex: 1;
  min-width: 0;
  padding-top: 0.125rem;
}

.gl-testimonial-card__google-mark {
  flex-shrink: 0;
  margin-top: 0.125rem;
  opacity: 0.9;
}

.gl-testimonial-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  line-height: 1.3;
  margin: 0 0 0.125rem;
}

.gl-testimonial-card__subtitle {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted);
}

.gl-testimonial-card__rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gl-testimonial-card__rating {
  flex-shrink: 0;
}

.gl-google-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.0625rem;
  line-height: 1;
}

.gl-google-stars__star {
  font-size: 0.875rem;
  line-height: 1;
  color: #dadce0;
}

.gl-google-stars__star.is-filled {
  color: #f4b400;
}

.gl-testimonial-card__date {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.gl-testimonial-card__quote {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--navy);
  line-height: 1.65;
  font-style: normal;
  margin: 0;
}

.gl-testimonial-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.gl-testimonial-card__google {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
}

.gl-testimonial-card__google:hover {
  text-decoration: underline;
}

.gl-testimonial-card__google:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

.gl-avatar--google {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
}

.gl-avatar__badge {
  position: absolute;
  right: -0.125rem;
  bottom: -0.125rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  line-height: 1;
  color: #f4b400;
  box-shadow: 0 1px 2px rgba(26, 26, 46, 0.08);
}

@media (min-width: 768px) {
  .gl-testimonials-wrap {
    overflow: visible;
    scroll-snap-type: none;
  }

  .gl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: var(--section-x);
  }

  .gl-testimonial-card {
    flex: none;
    max-width: none;
    height: 100%;
  }
}

.gl-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.gl-avatar--red {
  background: var(--red-soft);
  color: var(--red);
}

.gl-avatar--teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.gl-events-page__header {
  margin-bottom: 0.25rem;
}

.gl-events-videos .gl-workout-card__body {
  padding: 1rem 1.25rem 1.25rem;
}

.gl-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* SECTION: pricing-controls
   --------------------------------------------------------------------------
   Pricing controls (tabs + duration toggle)
   -------------------------------------------------------------------------- */
.gl-pricing-controls {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .gl-pricing-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.gl-pricing-note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
  margin: -0.5rem 0 1.5rem;
  max-width: 42rem;
}

.gl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
}

.gl-tabs__btn {
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--ease), border-color var(--ease);
}

.gl-tabs__btn:hover {
  color: var(--navy);
}

.gl-tabs__btn.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.gl-duration-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.gl-duration-toggle__btn {
  padding: 0.5rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.gl-duration-toggle__btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.gl-duration-toggle__btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* SECTION: cta-banner
   --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.gl-cta-banner {
  background: var(--navy);
  padding: var(--section-y) var(--section-x);
  text-align: center;
}

.gl-cta-banner .gl-h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.gl-cta-banner__text {
  font-size: var(--text-body);
  color: #8888aa;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* SECTION: hero
   --------------------------------------------------------------------------
   Hero (base — pages extend layout)
   -------------------------------------------------------------------------- */
.gl-hero {
  position: relative;
  min-height: auto;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .gl-hero:not(.gl-hero--split) {
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
  }
}

.gl-hero--gradient {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f6 100%);
}

.gl-hero__content {
  padding: 3rem var(--section-x) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .gl-hero--split .gl-hero__content {
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .gl-hero--split .gl-hero__content {
    padding: 4.5rem var(--section-x) 3.75rem;
  }
}

.gl-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid #ffcccc;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.gl-hero__title {
  font-size: clamp(2.75rem, 10vw, 3.5rem);
  line-height: 0.92;
  margin-bottom: 0.625rem;
}

@media (min-width: 768px) {
  .gl-hero__title {
    font-size: clamp(3.5rem, 5vw, 5rem);
  }
}

.gl-hero__slogan {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
  margin: 0 0 1.125rem;
  max-width: 18rem;
}

@media (min-width: 768px) {
  .gl-hero__slogan {
    font-size: 1.5rem;
    max-width: 20rem;
  }
}

.gl-hero__sub {
  font-size: var(--text-body);
  color: var(--muted);
  max-width: 24rem;
  line-height: var(--leading-body);
  margin: 0 0 1.5rem;
}

.gl-hero--split .gl-hero__sub {
  color: var(--teal);
  font-weight: 600;
}

.gl-hero--split .gl-hero__actions .gl-btn--secondary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.gl-hero--split .gl-hero__actions .gl-btn--secondary:hover {
  color: var(--white);
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}

.gl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  align-items: center;
}

/* Stats bar */
.gl-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.375rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e8e0e2;
}

.gl-stats>div {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.gl-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 4.25vw, 2.25rem);
  color: var(--red);
  letter-spacing: 0.03em;
  line-height: 1;
}

.gl-stat__label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999999;
  margin-top: 0.2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .gl-stats {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem 2rem;
  }

  .gl-stats>div {
    flex: 0 0 auto;
    text-align: left;
  }

  .gl-stat__num {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
  }

  .gl-stat__label {
    font-size: var(--text-label);
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
  }
}

/* SECTION: grids
   --------------------------------------------------------------------------
   Grids (reusable)
   -------------------------------------------------------------------------- */
.gl-grid-2 {
  display: grid;
  gap: 1rem;
}

.gl-grid-3 {
  display: grid;
  gap: 1rem;
}

.gl-grid-4 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .gl-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gl-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gl-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* 10 service cards: center lone last item in 3-column grid */
  .gl-grid-3--services> :last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

/* SECTION: steps
   --------------------------------------------------------------------------
   Steps (How to join)
   -------------------------------------------------------------------------- */
.gl-steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gl-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.gl-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gl-step__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

/* SECTION: bank-block
   --------------------------------------------------------------------------
   Bank details block
   -------------------------------------------------------------------------- */
.gl-bank-block {
  background: #fafbff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}

.gl-bank-block__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.gl-bank-block__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gl-bank-block__row:first-child {
  padding-top: 0;
}

.gl-bank-block__label {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.gl-bank-block__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* SECTION: footer
   --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.gl-footer {
  background: var(--navy-footer);
  border-top: 1px solid #1e1e3a;
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem var(--section-x) 1.25rem;
}

.gl-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

/* Mobile / tablet: brand + follow full width; explore + contact share a row */
.gl-footer__brand,
.gl-footer__follow {
  grid-column: 1 / -1;
}

@media (min-width: 600px) {
  .gl-footer__top {
    gap: 1.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .gl-footer__top {
    grid-template-columns: 1.35fr 0.75fr 0.95fr auto;
    gap: 1.5rem 2rem;
    align-items: start;
  }

  .gl-footer__brand,
  .gl-footer__follow {
    grid-column: auto;
  }
}

.gl-footer__top > * {
  min-width: 0;
}

.gl-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gl-footer__brand .gl-logo--circle {
  margin-bottom: 0;
}

.gl-footer__brand-text {
  font-size: 0.8125rem;
  line-height: var(--leading-body);
  margin: 0;
  flex: 1;
  min-width: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 380px) {
  .gl-footer__brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

.gl-footer__follow .gl-footer__heading {
  margin-bottom: 0.75rem;
}

.gl-footer__heading {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.gl-footer__links a {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.25rem 0;
  transition: color var(--ease);
}

.gl-footer__links a:hover {
  color: var(--white);
}

.gl-footer__contact > a {
  display: block;
  font-size: 0.8125rem;
  padding: 0.25rem 0;
  transition: color var(--ease);
}

.gl-footer__contact > a[href^="tel:"] {
  color: var(--white);
}

.gl-footer__contact > a[href^="tel:"]:hover {
  color: var(--white);
  opacity: 0.85;
}

.gl-footer__contact > a[href^="mailto:"] {
  color: rgba(255, 255, 255, 0.55);
}

.gl-footer__contact > a[href^="mailto:"]:hover {
  color: var(--white);
}

.gl-footer__contact {
  min-width: 0;
  overflow: visible;
}

.gl-footer__social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gl-footer__social li {
  margin: 0;
  padding: 0;
}

.gl-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: var(--radius-btn);
  flex-shrink: 0;
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
}

.gl-footer__social-link:hover {
  color: var(--teal);
  background: rgba(26, 122, 191, 0.12);
}

.gl-footer__social-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
  /* External SVGs as <img> — render white; link hover uses background + color on anchor */
  filter: brightness(0) invert(1);
}

.gl-footer__bottom {
  padding-top: 1.25rem;
  border-top: 1px solid #1e1e3a;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}

.gl-footer__bottom p {
  color: inherit;
  margin: 0;
}

/* SECTION: utilities
   --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.gl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gl-link-arrow {
  font-weight: 600;
  color: var(--teal);
  transition: color var(--ease);
}

.gl-link-arrow:hover {
  color: var(--red);
}

.gl-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Price hidden until JS sets active duration — optional hook */
.gl-pricing-card [data-price] {
  display: none;
}

.gl-pricing-card [data-price].is-visible {
  display: block;
}

.gl-pricing-card.is-unavailable {
  opacity: 0.55;
}

.gl-pricing-card.is-unavailable .js-price-value {
  color: var(--muted);
}

/* SECTION: landing-page
   --------------------------------------------------------------------------
   Landing page (index.html)
   -------------------------------------------------------------------------- */
.gl-hero--split {
  display: grid;
  grid-template-columns: 1fr;
}

.gl-hero--split .gl-hero__content {
  order: 1;
}

.gl-hero--split .gl-hero__media {
  order: 2;
  min-height: 0;
}

/* Mobile + tablet — hero image as background (<900px) */
@media (max-width: 899px) {
  .gl-hero.gl-hero--split.gl-hero--gradient {
    background: transparent;
  }

  .gl-hero.gl-hero--split {
    position: relative;
    display: block;
    overflow: hidden;
    /* Height follows content — avoids empty space below stats */
    min-height: 0;
  }

  .gl-hero--split .gl-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    order: unset;
    width: 100%;
    max-width: none;
    aspect-ratio: unset;
    max-height: none;
    margin-top: 0;
  }

  .gl-hero--split .gl-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .gl-hero--split .gl-hero__media::after {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(248, 249, 255, 0.96) 0%,
        rgba(248, 249, 255, 0.9) 38%,
        rgba(248, 249, 255, 0.72) 58%,
        rgba(26, 26, 46, 0.35) 100%);
    pointer-events: none;
  }

  .gl-hero--split .gl-hero__content {
    position: relative;
    z-index: 2;
    order: unset;
    flex: none;
    justify-content: flex-start;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    padding: 2.75rem var(--section-x) 2rem;
    box-sizing: border-box;
    gap: 0;
  }

  .gl-hero--split .gl-hero__tag {
    margin-bottom: 1.125rem;
  }

  .gl-hero--split .gl-hero__title {
    margin-bottom: 0.5rem;
    line-height: 0.95;
  }

  .gl-hero--split .gl-hero__slogan {
    margin-bottom: 1.25rem;
  }

  .gl-hero--split .gl-hero__sub {
    margin-bottom: 1.625rem;
    line-height: 1.65;
    max-width: none;
    font-size: 0.875rem;
  }

  .gl-hero--split .gl-hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    margin: 0 0 1.5rem;
  }

  .gl-hero--split .gl-hero__actions .gl-btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    margin: 0;
    padding: 0.875rem 0.75rem;
    font-size: 0.8125rem;
  }

  .gl-hero--split .gl-hero__actions .gl-btn+.gl-btn {
    margin-left: 0;
  }

  .gl-hero--split .gl-h1 {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .gl-hero--split .gl-stats {
    margin-top: 0;
    padding: 1.125rem 0.625rem 0.25rem;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-card);
    box-shadow: 0 0.35rem 1.25rem rgba(26, 26, 46, 0.14);
  }

  .gl-hero--split .gl-stat__num {
    color: var(--red);
    text-shadow: none;
  }

  .gl-hero--split .gl-stat__label {
    margin-top: 0.35rem;
    color: var(--navy);
    opacity: 0.72;
    font-weight: 600;
  }
}

@media (min-width: 900px) {
  .gl-hero.gl-hero--split {
    display: grid;
    /* Full screen minus sticky nav so stats aren't clipped */
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .gl-hero--split .gl-hero__content {
    order: 0;
    min-height: 100%;
    padding: 2rem 3rem 2.5rem;
    justify-content: center;
  }

  .gl-hero--split .gl-stats {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .gl-hero--split .gl-hero__media {
    order: 0;
    position: relative;
    min-height: 100%;
    height: 100%;
  }

  .gl-hero--split .gl-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(248, 249, 255, 0.85) 0%, transparent 28%);
    pointer-events: none;
  }

  .gl-hero--split .gl-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }
}

.gl-hero__media {
  position: relative;
  overflow: hidden;
}

.gl-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  object-position: center;
}

.gl-about-strip {
  background: var(--navy);
  padding: 4.5rem var(--section-x);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.gl-about-strip__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  text-align: center;
}

.gl-about-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}

.gl-about-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #b8b8cc;
  max-width: 48rem;
  margin-inline: auto;
}

.gl-about-strip__text em {
  color: var(--red);
  font-style: normal;
}

.gl-card--branch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  padding: 1.125rem 1.25rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}

.gl-card--branch__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.5rem;
  min-height: 1.375rem;
}

.gl-card--branch__pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.gl-card--branch__pill--teal {
  color: var(--teal);
  background: var(--teal-soft);
}

.gl-card--branch__badges .gl-tag {
  margin: 0;
}

.gl-card--branch__details {
  margin: 0;
  display: grid;
  gap: 0.625rem;
}

.gl-card--branch__detail {
  margin: 0;
}

.gl-card--branch__detail dd {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.gl-card--branch__detail-icon {
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  color: var(--muted);
}

.gl-card--branch-red .gl-card--branch__detail-icon {
  color: var(--red);
}

.gl-card--branch-teal .gl-card--branch__detail-icon,
.gl-card--branch-flagship .gl-card--branch__detail-icon {
  color: var(--teal);
}

.gl-card--branch__detail a {
  color: inherit;
  text-decoration: none;
}

.gl-card--branch-red .gl-card--branch__detail a:hover {
  color: var(--red);
  text-decoration: underline;
}

.gl-card--branch-red:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.gl-card--branch-teal:hover,
.gl-card--branch-flagship:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.gl-card--branch .gl-card__title {
  margin-bottom: 0;
  padding-top: 0;
}

.gl-card--branch__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.gl-card--branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.gl-card--branch-red::before {
  background: var(--red);
}

.gl-card--branch-teal::before {
  background: var(--teal);
}

.gl-card--branch-flagship::before {
  background: var(--teal);
}

.gl-card--branch-flagship {
  border-color: #f0c4c8;
  background: #fffafa;
}

.gl-card--branch-teal .gl-card--branch__detail a:hover,
.gl-card--branch-flagship .gl-card--branch__detail a:hover {
  color: var(--teal);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .gl-card--branch__actions {
    flex-direction: row;
    align-items: stretch;
  }

  .gl-card--branch__actions .gl-btn {
    flex: 1 1 0;
    min-width: 0;
  }
}

.gl-grid-3--branches {
  gap: 0.875rem;
}

@media (max-width: 767px) {
  #branches .gl-section__header {
    margin-bottom: 1.75rem;
  }

  .gl-grid-3--branches {
    gap: 1rem;
  }
}

.gl-tier-card .gl-btn--primary {
  margin-top: auto;
}

.gl-events-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-inline: var(--section-x);
}

.gl-events-strip {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.gl-events-strip__link {
  flex: 0 0 11.25rem;
  max-width: 11.25rem;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform var(--ease);
}

.gl-events-strip__link:hover {
  transform: translateY(-2px);
}

.gl-events-strip__link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-card);
}

.gl-events-strip__item {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.gl-events-strip__item img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.gl-events-strip__caption {
  display: block;
  padding: 0.5rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .gl-events-strip__link {
    flex: 0 0 12.5rem;
    max-width: 12.5rem;
  }
}

.gl-tier-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gl-tier-card__name {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.gl-tier-card__tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
}

.gl-tier-card--diamond {
  border-color: var(--gold);
  border-width: 2px;
}

.gl-tier-card--diamond .gl-tier-card__name {
  color: var(--gold);
}

.gl-section__header-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .gl-section__header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .gl-section__header-row .gl-section__header {
    margin-bottom: 0;
  }
}

.gl-page-wrap {
  padding-inline: var(--section-x);
  max-width: var(--max-width);
  margin-inline: auto;
}

.gl-page-wrap--full {
  padding-inline: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: clip;
}

.gl-mt-75 {
  margin-top: 0.75rem;
}

.gl-mt-15 {
  margin-top: 1.5rem;
}

.gl-mb-1 {
  margin-bottom: 1rem;
}

.gl-bank-block--dark {
  background: #1a1a30;
  border-color: #2a2a45;
}

.gl-bank-block--dark .gl-bank-block__label {
  color: #8888aa;
}

.gl-bank-block--dark .gl-bank-block__value {
  color: #cccccc;
}

/* SECTION: branch-pages
   --------------------------------------------------------------------------
   Branch pages (pyakassa, aco)
   -------------------------------------------------------------------------- */
.gl-branch-hero {
  background: var(--navy);
  padding: 2.75rem var(--section-x) 3rem;
  border-bottom: 3px solid var(--red);
}

.gl-branch-hero--split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.gl-branch-hero--split .gl-branch-hero__inner {
  padding: 2.75rem var(--section-x) 2.5rem;
  max-width: none;
  margin-inline: 0;
}

.gl-branch-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
}

.gl-branch-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 14rem;
}

.gl-branch-carousel__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 14rem;
}

.gl-branch-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.gl-branch-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.gl-branch-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  object-position: center;
}

.gl-branch-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--white);
  background: rgba(26, 26, 46, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-btn);
  transition: background var(--ease), border-color var(--ease);
}

.gl-branch-carousel__btn:hover {
  background: rgba(215, 38, 56, 0.9);
  border-color: var(--red);
}

.gl-branch-carousel__btn--prev {
  left: 0.75rem;
}

.gl-branch-carousel__btn--next {
  right: 0.75rem;
}

.gl-branch-carousel__dots {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.gl-branch-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: background var(--ease), transform var(--ease);
}

.gl-branch-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.gl-branch-carousel__dot.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.15);
}

@media (max-width: 899px) {
  .gl-branch-hero--split {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: clip;
  }

  .gl-branch-hero--split .gl-branch-hero__media {
    order: -1;
    margin: 0;
    min-height: 0;
  }

  .gl-branch-hero--split .gl-branch-hero__inner {
    padding: 2rem var(--section-x) 2.25rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
  }

  .gl-branch-hero__badges {
    margin-bottom: 1rem;
  }

  .gl-branch-hero__title {
    margin-bottom: 0.75rem;
  }

  .gl-branch-hero__landmark {
    gap: 0.5rem;
    margin-bottom: 1.125rem;
  }

  .gl-branch-hero__hours {
    margin-bottom: 1.375rem;
  }

  .gl-branch-hero__hours-row {
    grid-template-columns: 1fr;
    gap: 0.125rem;
  }

  .gl-branch-hero__hours-row dd {
    padding-left: 1.375rem;
  }

  .gl-branch-hero__hours-row dt {
    gap: 0.5rem;
  }

  .gl-branch-hero--split .gl-branch-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .gl-branch-hero--split .gl-branch-hero__actions .gl-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.25;
    white-space: normal;
  }

  .gl-branch-hero__pill,
  .gl-branch-hero__landmark {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .gl-branch-hero__hours {
    max-width: 100%;
  }

  .gl-branch-hero--split .gl-branch-hero__media,
  .gl-branch-hero--split .gl-branch-carousel,
  .gl-branch-hero--split .gl-branch-carousel__viewport {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .gl-branch-hero--split .gl-branch-carousel__slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .gl-branch-hero--split .gl-branch-carousel__btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gl-branch-carousel__slide {
    transition: none;
  }
}

@media (min-width: 900px) {
  .gl-branch-hero--split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    min-height: 22rem;
  }

  .gl-branch-hero--split .gl-branch-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem var(--section-x);
    max-width: 40rem;
  }

  .gl-branch-hero--split .gl-branch-hero__media {
    min-height: 100%;
  }

  .gl-branch-hero--split .gl-branch-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, var(--navy) 0%, transparent 42%);
    pointer-events: none;
  }

  .gl-branch-hero--split .gl-branch-carousel,
  .gl-branch-hero--split .gl-branch-carousel__viewport {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .gl-branch-hero--split .gl-branch-carousel__slide img {
    min-height: 0;
  }
}

.gl-branch-hero--teal {
  border-bottom-color: var(--teal);
}

.gl-branch-hero--flagship {
  border-bottom-color: transparent;
  border-image: linear-gradient(90deg, var(--red), var(--teal)) 1;
}

.gl-branch-hero__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.gl-branch-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.gl-branch-hero__badges .gl-tag,
.gl-branch-hero__badges .gl-branch-hero__pill {
  margin-bottom: 0;
}

.gl-branch-hero__pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.875rem;
}

.gl-branch-hero__label {
  display: block;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.gl-branch-hero--teal .gl-branch-hero__label {
  color: var(--teal);
}

.gl-branch-hero--flagship .gl-branch-hero__label {
  color: #cccccc;
}

.gl-branch-hero__title {
  color: var(--white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 0.98;
  margin-bottom: 0.5rem;
}

.gl-branch-hero__landmark {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #cccccc;
  margin-bottom: 1rem;
  transition: color var(--ease);
}

.gl-branch-hero__landmark-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  filter: brightness(0) saturate(100%) invert(82%) sepia(5%) saturate(462%) hue-rotate(182deg) brightness(92%)
    contrast(88%);
  transition: filter var(--ease);
}

.gl-branch-hero__landmark-text {
  line-height: 1.45;
}

a.gl-branch-hero__landmark:hover {
  color: var(--white);
}

a.gl-branch-hero__landmark:hover .gl-branch-hero__landmark-icon {
  filter: brightness(0) invert(1);
}

.gl-branch-hero__meta {
  font-size: var(--text-body);
  color: #8888aa;
  line-height: var(--leading-body);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.gl-branch-hero__hours {
  margin: 0 0 1rem;
  padding: 0;
}

.gl-branch-hero__hours-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  align-items: baseline;
  font-size: 0.8125rem;
  color: #aaaaaa;
}

.gl-branch-hero__hours-row + .gl-branch-hero__hours-row {
  margin-top: 0.375rem;
}

.gl-branch-hero__hours-row dt {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.gl-branch-hero__hours-row dd {
  margin: 0;
}

.gl-branch-hero__hours-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(6%) saturate(326%) hue-rotate(182deg) brightness(91%)
    contrast(88%);
}

.gl-branch-hero__hours-icon-spacer {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.gl-branch-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Branch workouts — YouTube embeds */
.gl-workouts-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .gl-workouts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gl-workouts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gl-workout-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.gl-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f0f1a;
}

.gl-video-embed--short {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 17.5rem;
  margin-inline: auto;
  max-height: 26rem;
}

.gl-events-videos .gl-video-embed__fallback img {
  object-fit: cover;
  object-position: center top;
}

.gl-video-embed iframe,
.gl-video-embed__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gl-video-embed__fallback {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gl-video-embed__fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity var(--ease);
}

.gl-video-embed--short .gl-video-embed__fallback img {
  object-position: center top;
}

.gl-video-embed__fallback:hover img {
  opacity: 1;
}

.gl-video-embed__fallback-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(215, 38, 56, 0.92);
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.gl-video-embed__fallback-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 15, 26, 0.85));
  pointer-events: none;
}

.gl-video-embed__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin: 0;
  padding: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  color: #b8bcc8;
}

.gl-video-embed__placeholder code {
  font-size: 0.6875rem;
  color: #d4d8e4;
}

.gl-workout-card.is-placeholder .gl-video-embed {
  background: linear-gradient(145deg, #1a1a2e 0%, #2a2a42 100%);
}

.gl-workout-card__body {
  padding: 1rem 1.125rem 1.125rem;
}

.gl-workout-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.gl-workout-card__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.gl-rate-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .gl-rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gl-rate-card__heading {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.gl-rate-card__list {
  display: grid;
  gap: 0.75rem;
}

.gl-rate-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.8125rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.gl-rate-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gl-rate-card__label {
  color: var(--muted);
}

.gl-rate-card__value {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.gl-branch-footer-note {
  font-size: 0.8125rem;
  color: #666688;
  margin-top: 1rem;
  line-height: var(--leading-body);
}

.gl-branch-footer-note a {
  color: #aaaacc;
  text-decoration: underline;
}

.gl-branch-footer-note a:hover {
  color: var(--white);
}

/* SECTION: payment-modal
   --------------------------------------------------------------------------
   Payment modal (branch join flow)
   -------------------------------------------------------------------------- */
.gl-payment-modal {
  width: min(100% - 2rem, 26rem);
  margin: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 1.25rem 3rem rgba(26, 26, 46, 0.2);
  overflow: visible;
}

.gl-payment-modal::backdrop {
  background: rgba(26, 26, 46, 0.55);
}

.gl-payment-modal__inner {
  display: flex;
  flex-direction: column;
}

.gl-payment-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem 0;
}

.gl-payment-modal__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  padding-right: 0.25rem;
}

.gl-payment-modal__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  transition: color var(--ease), border-color var(--ease);
}

.gl-payment-modal__close:hover {
  color: var(--red);
  border-color: var(--red);
}

.gl-payment-modal__body {
  padding: 0.625rem 1rem 0.75rem;
}

.gl-payment-modal__summary {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--navy);
  background: #f4f6fc;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.625rem;
}

.gl-payment-modal__branch {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.gl-payment-modal__plan-line,
.gl-payment-modal__meta-line {
  display: block;
}

.gl-payment-modal__meta-line {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

.gl-payment-modal__amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.375rem;
  margin: 0.5rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.gl-payment-modal__amount-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.gl-payment-modal__amount-period {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

/* Compact bank block — modal only */
.gl-bank-block--modal {
  padding: 0.5rem 0.625rem;
  margin: 0;
}

.gl-bank-block--modal .gl-bank-block__row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.375rem 0;
}

.gl-bank-block--modal .gl-bank-block__row:first-child {
  padding-top: 0;
}

.gl-bank-block--modal .gl-bank-block__label {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  flex: 0 1 42%;
}

.gl-bank-block--modal .gl-bank-block__value {
  font-size: 0.8125rem;
  text-align: right;
}

.gl-bank-block--modal .gl-bank-block__row--copy .gl-bank-block__value-group {
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.gl-bank-block__row--copy .gl-bank-block__value-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gl-copy-btn {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.35rem 0.6rem;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.gl-copy-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.gl-copy-btn.is-copied {
  color: var(--teal);
  border-color: var(--teal);
  background: #f0faf9;
}

.gl-payment-modal__steps {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  counter-reset: pay-step;
}

.gl-payment-modal__steps li {
  counter-increment: pay-step;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.gl-payment-modal__steps li:last-child {
  margin-bottom: 0;
}

.gl-payment-modal__steps li::before {
  content: counter(pay-step);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.gl-payment-modal__steps strong {
  color: var(--navy);
  font-weight: 600;
}

.gl-payment-modal__footer {
  padding: 0.625rem 1rem 0.875rem;
  border-top: 1px solid var(--border);
}

.gl-payment-modal__footer .gl-btn {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.8125rem;
}

body.modal-open {
  overflow: hidden;
}

/* Payment modal + pricing — phones (primary audience) */
@media (max-width: 767px) {
  .gl-grid-4--pricing {
    grid-template-columns: 1fr;
  }

  .gl-pricing-controls .gl-duration-toggle {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .gl-pricing-controls .gl-duration-toggle::-webkit-scrollbar {
    display: none;
  }

  .gl-duration-toggle__btn,
  .gl-tabs__btn {
    min-height: 2.75rem;
  }

  .gl-duration-toggle__btn {
    flex: 0 0 auto;
    padding: 0.625rem 1rem;
  }

  .gl-pricing-card__actions .gl-btn {
    min-height: 2.75rem;
  }

  .gl-payment-modal {
    width: calc(100% - 1rem);
  }

  .gl-payment-modal__header {
    padding: 0.75rem 0.875rem 0;
    padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
  }

  .gl-payment-modal__title {
    font-size: 1.5rem;
  }

  .gl-payment-modal__body {
    padding: 0.5rem 0.875rem 0.625rem;
  }

  .gl-payment-modal__footer {
    padding: 0.5rem 0.875rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .gl-payment-modal__close {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .gl-payment-modal__footer .gl-btn {
    min-height: 2.75rem;
  }

  .gl-payment-modal .gl-copy-btn {
    min-height: 2rem;
    padding: 0.35rem 0.625rem;
  }
}

/* Extra-tight modal on short viewports (no inner scroll) */
@media (max-height: 640px) {
  .gl-payment-modal__title {
    font-size: 1.375rem;
  }

  .gl-payment-modal__summary {
    padding: 0.5rem 0.625rem;
    margin-bottom: 0.5rem;
  }

  .gl-payment-modal__amount-value {
    font-size: 1.35rem;
  }

  .gl-payment-modal__steps li {
    font-size: 0.6875rem;
    margin-bottom: 0.3rem;
  }

  .gl-bank-block--modal {
    padding: 0.4rem 0.5rem;
  }

  .gl-bank-block--modal .gl-bank-block__row {
    padding: 0.3rem 0;
  }
}

/* SECTION: stub-pages
   --------------------------------------------------------------------------
   Placeholder / under-development pages
   -------------------------------------------------------------------------- */
.gl-stub-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.gl-stub-header {
  padding: 1rem var(--section-x);
  border-bottom: 1px solid var(--border);
}

.gl-stub-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--section-y) var(--section-x);
  max-width: 32rem;
}

.gl-stub-main .gl-h2 {
  margin-bottom: 0.75rem;
}

.gl-stub-badge {
  display: inline-block;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-tag);
  margin-bottom: 1.25rem;
}

.gl-stub-text {
  font-size: var(--text-body);
  color: var(--muted);
  line-height: var(--leading-body);
  margin-bottom: 1.75rem;
}

.gl-cite {
  font-style: normal;
}