@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,700;1,400&family=Teko:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
  --lime: #add500;
  --lime-2: #c6f000;
  --lime-fixed: #add500;
  --lime-dim: #8bb200;
  --lime-dark: #6f8d00;
  --lime-deep: #4b6000;
  --ink: #080908;
  --charcoal: #111311;
  --panel: #181a17;
  --paper: #ffffff;
  --surface: #eef3e5;
  --soft: #e8eddf;
  --premium-gray: #f2f5ed;
  --slate-text: #4A4A4A;
  --line: rgba(17, 19, 17, 0.14);
  --muted: #555555;
  --white: #ffffff;
  --radius: 6px;
  --radius-lg: 8px;
  --font-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Teko", Impact, sans-serif;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

[id] {
  scroll-margin-top: 90px;
}

.branch-page {
  scroll-padding-top: calc(76px + var(--branch-subnav-height, 52px) + 16px);
}

.branch-page [id] {
  scroll-margin-top: calc(76px + var(--branch-subnav-height, 52px) + 16px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* V-Watermark / Motif Background Element */
.v-watermark, .v-motif {
  position: absolute;
  color: transparent;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  background-image: url('/assets/elements/valas-v-black.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Bigger so the distinctive bottom point of the Vala V is visible */
  width: clamp(380px, 48vw, 700px);
  height: clamp(380px, 48vw, 700px);
}

.v-watermark-white {
  color: #ffffff;
  opacity: 0.04;
}

/* Dumbbell Watermark Background Element (Crisp, anchored, handle extends to edge) */
.dumbbell-watermark {
  position: absolute;
  width: clamp(120px, 14vw, 150px);
  height: clamp(96px, 11vw, 120px);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transform-origin: 40px center;
}

.dumbbell-watermark svg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2200px;
  overflow: visible;
  display: block;
}

/* Watermark Color & Motif Variants */
.watermark-v-lime {
  background-image: url('/assets/elements/valas-v-lime.png') !important;
  opacity: 0.14 !important;
}

.watermark-v-black {
  background-image: url('/assets/elements/valas-v-black.png') !important;
  opacity: 0.08 !important;
}

.watermark-v-white {
  background-image: url('/assets/elements/valas-v-white.png') !important;
  opacity: 0.08 !important;
}

.watermark-dumbbell-lime {
  color: var(--lime) !important;
  opacity: 0.35 !important;
}

.watermark-dumbbell-black {
  color: #080908 !important;
  opacity: 0.14 !important;
}

.watermark-dumbbell-white {
  color: #ffffff !important;
  opacity: 0.22 !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 86px;
  min-height: 86px;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 clamp(18px, 4vw, 64px) !important;
  background: var(--lime) !important;
  border-bottom: 2px solid var(--charcoal) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  box-sizing: border-box !important;
  will-change: height, transform;
}

/* Green Overscroll Curtain (Stretches endlessly above viewport on top-pull) */
.site-header::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 120vh !important;
  background: var(--lime) !important;
  pointer-events: none !important;
}

.brand-link {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 184px !important;
  max-width: 184px !important;
  height: 52px !important;
  flex-shrink: 0 !important;
}

.brand-link img {
  width: 184px !important;
  height: auto !important;
  max-height: 52px !important;
  object-fit: contain !important;
  filter: brightness(0) !important;
  display: block !important;
}

.header-contact-mobile {
  display: none !important;
}

.nav-links {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 28px) !important;
}

.nav-links a,
.nav-links .branch-main-link,
.mobile-nav a {
  position: relative;
  padding: 6px 2px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .branch-main-link:hover,
.mobile-nav a:hover {
  color: #ffffff;
}

.nav-links a:not(.btn).is-active,
.nav-links .branch-dropdown.is-active .branch-main-link {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Header Animated Active Indicator Underline (strictly inside header) */
.nav-header-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--charcoal);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  transition: none;
  opacity: 0;
  z-index: 10;
}

/* Active item inside branch dropdown */
.branch-menu a.is-active {
  background: rgba(173, 213, 0, 0.25) !important;
  color: #ffffff !important;
  border-left: 3px solid var(--lime-dark);
}

/* Active item in mobile nav */
.mobile-nav a.is-active {
  color: #ffffff !important;
  border-left: 4px solid #ffffff;
  padding-left: 10px;
}

.branch-dropdown {
  position: relative;
}

.branch-main-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.branch-main-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.branch-dropdown:hover .branch-main-link::after,
.branch-dropdown:focus-within .branch-main-link::after,
.branch-dropdown.is-open .branch-main-link::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.branch-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 200px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.branch-dropdown:hover .branch-menu,
.branch-dropdown:focus-within .branch-menu,
.branch-dropdown.is-open .branch-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.branch-menu::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.branch-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: 1.18rem;
  white-space: nowrap;
}

.branch-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--lime-deep);
}

.mobile-nav-label {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 8px;
  margin-bottom: -4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  background: var(--charcoal) url('/assets/elements/valas-v-lime.png') no-repeat center;
  background-size: 22px;
  color: transparent;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle span {
  display: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 86px 0 auto;
  z-index: 49;
  padding: 18px 24px 26px;
  background: var(--lime);
  border-bottom: 2px solid var(--charcoal);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  color: var(--charcoal);
}

.mobile-nav a:hover {
  color: var(--lime-deep);
}

.branch-subnav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px clamp(18px, 4vw, 64px);
  overflow-x: auto;
  background: #111111;
  border-top: 1px solid rgba(173, 213, 0, 0.25);
  border-bottom: 1px solid rgba(173, 213, 0, 0.18);
  scrollbar-width: none;
}

.branch-page {
  --branch-subnav-height: 52px;
}

.branch-page .branch-subnav {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 48;
  min-height: var(--branch-subnav-height);
  backdrop-filter: blur(16px);
}

.branch-page .mobile-nav {
  inset: calc(76px + var(--branch-subnav-height)) 0 auto;
}

.branch-page .page-hero {
  padding-top: calc(104px + var(--branch-subnav-height));
}

.branch-subnav::-webkit-scrollbar {
  display: none;
}

.branch-subnav span,
.branch-subnav a {
  white-space: nowrap;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.branch-subnav .jump-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 12px;
  color: var(--lime);
  font-size: 1.24rem;
}

.branch-subnav .jump-label::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.branch-subnav a {
  position: relative;
  padding: 6px 16px;
  border: none;
  border-radius: 0;
  background: none;
  color: #a8b09e;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 180ms ease;
  z-index: 3;
}

/* vertical pipe divider between links */
.branch-subnav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0.9em;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.branch-subnav a:hover {
  color: #ffffff;
  background: none;
  border-color: transparent;
}

.branch-subnav a.is-active {
  color: var(--lime) !important;
  font-weight: 800 !important;
  text-shadow: 0 0 14px rgba(173, 213, 0, 0.5);
}

/* Dynamic Animated Subnav Active Pill/Line Indicator */
.branch-subnav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--lime);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 14px #add500, 0 -2px 8px rgba(173, 213, 0, 0.7);
  pointer-events: none;
  transition: transform 260ms cubic-bezier(0.25, 1, 0.5, 1), width 260ms cubic-bezier(0.25, 1, 0.5, 1), opacity 180ms ease;
  opacity: 0;
  z-index: 10;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 26px;
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  background: var(--lime);
  color: #10120e;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(173, 213, 0, 0.25);
  opacity: 0.92;
}

.btn-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--lime);
}

.btn-dark:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.btn-white {
  background: #ffffff !important;
  color: var(--charcoal, #111311) !important;
  border: none !important;
  border-radius: var(--radius, 6px) !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-white:hover {
  background: #f4f4f4 !important;
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24) !important;
}

.nav-links a.btn {
  background: #ffffff !important;
  color: var(--charcoal, #111311) !important;
  border: none !important;
  border-radius: var(--radius, 6px) !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18) !important;
  padding: 8px 22px !important;
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-links a.btn:hover {
  background: #f4f4f4 !important;
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24) !important;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--lime);
}

.btn-light-outline {
  border-color: var(--lime);
  background: transparent;
  color: #ffffff;
}

.btn-light-outline:hover {
  background: var(--lime);
  color: #10120e;
}

.btn-outline-dark {
  border-color: rgba(17, 19, 17, 0.25);
  background: transparent;
  color: var(--ink);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.nav-links a.btn {
  min-height: 44px;
  padding: 9px 24px;
  border: 2px solid #ffffff;
  border-radius: var(--radius);
  background: #ffffff;
  color: #10120e !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a.btn:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #10120e !important;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.25);
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 680px);
  display: grid;
  place-items: center;
  padding: 104px 20px 56px;
  overflow: hidden;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68)),
    var(--hero-image, url("../images/branches/vastrapur-strength.webp")) center / cover;
  transform: scale(1.02);
}

.hero-slideshow::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58));
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  text-align: center;
  color: var(--white);
}

.hero-logo {
  width: min(540px, 88vw);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 26px rgba(173, 213, 0, 0.44));
}

.event-logo {
  width: min(280px, 70vw);
  margin: 0 0 24px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42));
}

.section-event-logo {
  width: min(240px, 64vw);
  margin: 0 auto 22px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.event-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  width: min(1040px, 100%);
  margin: 0 auto 34px;
}

.event-section-heading img {
  width: clamp(86px, 12vw, 150px);
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.16));
}

.event-section-heading .section-title {
  margin: 0;
  text-align: left;
}

.legacy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 6px 26px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(173, 213, 0, 0.08);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
.display {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 16px;
  color: var(--lime);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.15;
}

.hero-subtitle {
  margin: 10px auto 0;
  color: #f4f4f4;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px auto 0;
  color: #d8ddd0;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.92));
  border-top: 1px solid rgba(173, 213, 0, 0.15);
  color: #d0d8c8;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.hero-footer span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-footer span::before,
.hero-footer span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--lime);
  opacity: 0.5;
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-actions,
.section-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions {
  margin-top: 24px;
}

.section {
  padding: clamp(56px, 6vw, 96px) clamp(18px, 4vw, 64px);
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.section-dark {
  background: var(--charcoal);
  color: #ffffff;
  max-width: 100%;
}

.section-soft {
  background: var(--premium-gray);
  max-width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-soft > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-lime {
  background: var(--lime);
  color: var(--charcoal);
  max-width: 100%;
}

.section-title {
  margin: 0 auto 16px;
  max-width: 980px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title span {
  /* Sporty skewed lime highlight block — like the live site's energetic style */
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 0 12px 3px;
  margin: 0 2px;
  transform: skewX(-8deg);
  line-height: 1.15;
  font-weight: 800;
  /* Counter-skew the text so letters stay upright */
  font-style: normal;
}

/* On dark section backgrounds — lime block still works perfectly */
.section-dark .section-title {
  color: #ffffff;
}

.section-dark .section-title span {
  background: var(--lime);
  color: var(--ink);
}

/* On lime section backgrounds — flip to dark block so it reads */
.section-lime .section-title {
  color: var(--charcoal);
}

.section-lime .section-title span {
  background: var(--charcoal);
  color: var(--lime);
  padding: 0 12px 3px;
  transform: skewX(-8deg);
}

.legal-section {
  background: var(--soft);
}

.legal-copy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid rgba(16, 19, 16, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 19, 16, 0.08);
}

.legal-copy h2 {
  margin: 34px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.legal-copy h2:first-of-type {
  margin-top: 22px;
}

.legal-copy p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.75;
}

.legal-copy ul {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--ink);
}

.legal-copy li {
  margin-bottom: 10px;
  line-height: 1.68;
}

.section-kicker {
  max-width: 780px;
  margin: 0 auto 48px;
  color: var(--slate-text);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

.section-dark .section-kicker {
  color: #d1d6c8;
}

.branch-overview-grid,
.cards-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.branch-card,
.class-card,
.plan-card,
.contact-card,
.content-card,
.review-card,
.seo-panel,
.founder-card,
.branch-update-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.branch-card:hover,
.class-card:hover,
.plan-card:hover,
.contact-card:hover,
.content-card:hover,
.review-card:hover,
.seo-panel:hover,
.branch-update-card:hover {
  border-bottom: 4px solid var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.branch-card img,
.class-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.branch-card:hover img,
.class-card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 22px;
}

.card-body h3,
.plan-card h3,
.contact-card h3 {
  color: var(--ink);
  font-size: 1.65rem;
}

.plan-card h3 {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  max-width: 100%;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 0.95;
  white-space: nowrap;
}

.card-body p,
.plan-card p,
.contact-card p {
  color: var(--muted);
}

.section-lime .cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.section-lime .class-card {
  min-width: 0;
}

.contact-card .btn + .btn {
  margin-top: 10px;
}

.content-grid,
.event-grid,
.branch-update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.leaderboard-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.repathlon-event-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(940px, 100%);
}

.repathlon-leaderboard-block {
  width: min(1240px, 100%);
  margin: 42px auto 0;
}

.repathlon-leaderboard-block > h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.leaderboard-image-card {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.leaderboard-image-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  background: transparent;
}

.leaderboard-image-card div {
  padding: 18px 2px 0;
}

.leaderboard-image-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaderboard-image-card h3 {
  color: var(--ink);
  font-size: 2rem;
}

.leaderboard-image-card p {
  margin-top: 6px;
  color: var(--muted);
}

.event-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.event-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(8, 9, 8, 0.14);
}

.event-feature-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
}

.school-tour-media {
  display: grid;
  gap: 16px;
}

.school-tour-media img,
.school-tour-media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(8, 9, 8, 0.14);
}

.school-tour-media video {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  object-fit: cover;
}

.school-tour-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.school-tour-video-card {
  min-width: 0;
  margin: 0;
}

.school-tour-video-card video {
  box-shadow: 0 14px 30px rgba(8, 9, 8, 0.12);
}

.school-tour-video-card figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.35;
}

.event-feature-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-feature-card h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.event-feature-card p {
  color: var(--muted);
}

.content-card,
.branch-update-card,
.event-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.content-card,
.event-board {
  padding: 28px;
}

.content-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card h3,
.branch-update-card h3,
.event-board h3 {
  color: var(--ink);
  font-size: 2.25rem;
}

.content-card p,
.branch-update-card p,
.event-board p,
.content-card small {
  color: var(--muted);
}

.content-card small {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
}

.branch-update-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.branch-update-card div {
  padding: 24px;
}

.editor-note {
  width: min(980px, 100%);
  margin: 34px auto 0;
  padding: 24px;
  border-left: 8px solid var(--lime);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.editor-note h3 {
  color: var(--lime);
  font-size: 2rem;
}

.editor-note p {
  color: #dce3d2;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(8, 9, 8, 0.12);
  text-align: left;
}

.leaderboard-table th {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.leaderboard-table td:first-child {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.aerobics-schedule-card {
  width: min(960px, 100%);
  margin: 34px auto 0;
  padding: clamp(22px, 3vw, 30px);
  border-left: 8px solid var(--lime);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.aerobics-schedule-card h3 {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.aerobics-schedule-card p {
  color: var(--muted);
}

.schedule-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.schedule-table th,
.schedule-table td {
  padding: 14px 12px;
  border: 1px solid rgba(8, 9, 8, 0.12);
  text-align: left;
}

.schedule-table th {
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-table td {
  background: #f9faf5;
  color: var(--ink);
  font-weight: 800;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 20px;
  height: 20px;
  background: url('/assets/elements/valas-dumbbell-black.png') no-repeat center;
  background-size: contain;
  filter: drop-shadow(0px 2px 4px var(--lime));
}

#premium-training-list li::before {
  background-image: url('/assets/elements/valas-dumbbell-black.png');
  filter: none;
}

.local-seo-grid,
.faq-grid,
.local-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.seo-panel,
.faq-item,
.local-link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.seo-panel h3,
.faq-item h3,
.local-link-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 2rem;
}

.seo-panel p,
.faq-item p,
.local-link-card p {
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reviews-grid-branch {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(900px, 100%);
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(8, 9, 8, 0.08);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.review-card-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card-top strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.86rem;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  font-style: italic;
}

.review-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.branch-finder {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 86px);
  border-bottom: 4px solid var(--lime);
  background:
    linear-gradient(180deg, var(--soft), rgba(248, 249, 242, 0.96));
}

.branch-finder .section-title {
  margin-bottom: 34px;
}

.branch-finder .section-kicker {
  margin-bottom: 34px;
}

.branch-choice-grid {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.branch-choice {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 17, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8, 9, 8, 0.08);
}

.branch-choice::before {
  content: "Selected";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.branch-choice::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 132px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(8, 9, 8, 0.18));
}

.branch-choice img {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 132px;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 220ms ease, opacity 220ms ease;
}

.branch-choice span,
.branch-choice small {
  position: relative;
  z-index: 1;
  display: block;
  padding-inline: 18px;
}

.branch-choice span {
  margin-top: 152px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.branch-choice small {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.branch-choice small {
  font-size: 0.84rem;
  color: #ddd;
}

.branch-choice:hover img,
.branch-choice.is-active img {
  opacity: 1;
  transform: scale(1.05);
}

.branch-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(173, 213, 0, 0.6);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.branch-choice.is-active {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(173, 213, 0, 0.4), 0 14px 28px rgba(0, 0, 0, 0.16);
}

.branch-choice.is-active span {
  color: var(--lime);
}

.branch-detail-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: 605px;
  min-height: 605px;
  max-height: 605px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(173, 213, 0, 0.64);
  background:
    linear-gradient(115deg, rgba(173, 213, 0, 0.2), rgba(255, 255, 255, 0.36) 46%, rgba(173, 213, 0, 0.12)),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(8, 9, 8, 0.12);
  align-items: stretch;
  box-sizing: border-box;
  min-width: 0;
}

.branch-detail-copy {
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.branch-detail-copy .branch-header-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.branch-step {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-detail-card .branch-step {
  display: inline-flex;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.95rem;
}

.branch-detail-copy h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

/* Premium Highlight Card */
.branch-highlights-card {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(173, 213, 0, 0.45);
  border-left: 5px solid var(--lime);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(8, 9, 8, 0.04);
}

.branch-highlights-card .highlights-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b6000;
  margin-bottom: 6px;
  font-weight: 700;
}

.branch-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.branch-highlights-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--ink);
}

.branch-highlights-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #617c00;
  font-size: 0.82rem;
  font-weight: bold;
}

.branch-highlights-list li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Big Location Card Button */
.branch-location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 19, 17, 0.14);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(8, 9, 8, 0.04);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
  cursor: pointer;
}

.branch-location-card:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(8, 9, 8, 0.08);
}

.branch-loc-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(173, 213, 0, 0.25);
  color: #4b6000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-loc-content {
  flex: 1;
  min-width: 0;
}

.branch-loc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.branch-loc-header strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b6000;
  line-height: 1;
}

.branch-loc-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.branch-location-card:hover .branch-loc-badge {
  color: #4b6000;
}

.branch-loc-address {
  display: block;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--ink);
  white-space: normal;
}

/* Contact & WhatsApp 2-Column Buttons */
.branch-contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.branch-contact-buttons .btn {
  padding: 10px 12px;
  font-size: 1.1rem;
  min-height: 42px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.branch-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 0;
}

.branch-detail-actions .btn {
  padding: 10px 12px;
  font-size: 1.1rem;
  min-height: 42px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.branch-detail-actions .btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.branch-detail-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, 0.24);
  height: 100%;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.branch-main-photo {
  width: 100%;
  height: 380px;
  max-height: 380px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(8, 9, 8, 0.12);
}

.branch-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.branch-photo-strip img {
  width: 100%;
  height: 72px;
  max-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  object-fit: cover;
}

.branch-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 92vh;
  border-top: 4px solid var(--lime);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76)),
    var(--branch-bg) center / cover fixed;
  color: var(--white);
}

.branch-panel {
  align-self: center;
  margin: 78px clamp(18px, 5vw, 70px);
  padding: clamp(30px, 5vw, 54px);
  border-left: 8px solid var(--lime);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.branch-panel h2 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.branch-address {
  margin: 24px 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8ecdf;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.branch-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.branch-meta strong {
  display: block;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.branch-media {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 80px clamp(18px, 5vw, 70px) 80px 0;
}

.media-feature {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.media-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.caption {
  position: absolute;
  inset: auto 0 0;
  padding: 16px 20px;
  border-top: 2px solid var(--lime);
  background: rgba(0, 0, 0, 0.86);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.thumb-row img {
  width: 100%;
  height: 154px;
  border-radius: var(--radius);
  object-fit: cover;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card .price {
  min-height: 5.4rem;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  column-gap: 8px;
}

.plan-card p {
  min-height: 3.3rem;
}

.plan-card .mini-list {
  margin-top: 8px;
}

.plan-card.featured {
  border: 2px solid var(--lime);
  background: linear-gradient(180deg, rgba(173, 213, 0, 0.16), var(--paper) 44%);
  box-shadow: 0 18px 42px rgba(8, 9, 8, 0.12), 0 0 0 4px rgba(173, 213, 0, 0.12);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
}

.pricing-durations {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  border: 1px solid rgba(173, 213, 0, 0.5);
  background: linear-gradient(135deg, rgba(173, 213, 0, 0.22), var(--paper));
  color: var(--ink);
  box-shadow: var(--shadow);
}

.pricing-durations h3 {
  color: var(--ink);
  font-size: 3rem;
}

.pricing-durations p {
  color: var(--ink);
}

.duration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.duration-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.52);
}

.duration-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.duration-grid span {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.service-assurance {
  width: min(1120px, 100%);
  margin: 38px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.assurance-intro {
  width: min(780px, 100%);
  margin-bottom: 26px;
}

.assurance-intro h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.assurance-intro h2 span {
  color: var(--lime);
}

.assurance-intro p {
  color: var(--muted);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.assurance-card {
  grid-column: span 2;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f9f5;
}

.assurance-card-top {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(173, 213, 0, 0.18), #f8f9f5);
}

.assurance-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.8rem;
}

.assurance-card p {
  color: var(--muted);
}

.assurance-explainers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  padding: clamp(22px, 3vw, 30px);
  border-left: 8px solid var(--lime);
  border-radius: var(--radius);
  background: rgba(173, 213, 0, 0.18);
  color: var(--ink);
}

.assurance-explainers h3 {
  color: var(--ink);
  font-size: 1.8rem;
}

.assurance-explainers p {
  color: var(--ink);
}

.consultation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
  margin-top: 20px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius);
  background: #f4f6ee;
}

.consultation-panel h3 {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.9;
}

.consultation-panel p {
  color: var(--muted);
}

.consultation-panel .mini-list {
  margin: 0;
}

.hiit-section {
  background:
    linear-gradient(135deg, rgba(232, 237, 223, 0.96), rgba(248, 249, 242, 0.9)),
    url("../images/branches/science-city-cardio.webp") center / cover;
  color: var(--ink);
}

.hiit-section .copy-block h2,
.hiit-section .copy-block p {
  color: var(--ink);
}

.hiit-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hiit-proof-grid article {
  min-width: 0;
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(173, 213, 0, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.hiit-proof-grid strong {
  display: block;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.hiit-proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.hiit-system {
  width: min(1120px, 100%);
  margin: 44px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border-left: 8px solid var(--lime);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.hiit-system h3 {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hiit-system p,
.hiit-system .mini-list li {
  color: var(--muted);
}







.assurance-actions {
  justify-content: flex-start;
  margin-top: 22px;
}

.guided-advisor {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.advisor-form {
  display: grid;
  gap: 16px;
}

.advisor-form fieldset,
.advisor-result {
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.advisor-form fieldset::after {
  content: "";
  display: block;
  clear: both;
}

.advisor-progress {
  display: grid;
  gap: 10px;
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.advisor-progress div {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(8, 9, 8, 0.12);
}

.advisor-progress i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transition: width 220ms ease;
}

.advisor-step {
  display: none;
}

.advisor-step.is-active {
  display: block;
}

.advisor-form .advisor-step,
.advisor-result {
  width: min(820px, 100%);
  margin-inline: auto;
}

.advisor-form legend {
  float: left;
  width: 100%;
  margin: 0 0 16px;
  max-width: 100%;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.advisor-form legend + label {
  clear: both;
}

.advisor-form label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.advisor-form input {
  margin-top: 4px;
  flex: 0 0 auto;
  accent-color: var(--lime);
}

.advisor-form p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.advisor-nav {
  width: min(820px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.advisor-nav [hidden] {
  display: none;
}

.advisor-result {
  background: linear-gradient(135deg, rgba(173, 213, 0, 0.22), var(--paper));
  color: var(--ink);
}

.advisor-result h3 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.advisor-result p {
  color: var(--ink);
}

.advisor-result .price {
  color: var(--ink);
}

.advisor-result .price small {
  color: var(--ink);
}

.advisor-periods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.advisor-periods strong {
  grid-column: 1 / -1;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.advisor-periods span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(17, 19, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.advisor-periods small {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.35;
}

.advisor-periods em {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.advisor-periods b {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.advisor-result .mini-list li {
  color: var(--ink);
}

.advisor-hiit {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 5px solid var(--lime-dark);
  background: rgba(173, 213, 0, 0.15);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.advisor-addon-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.advisor-addon-card p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 500;
}

.advisor-addon-note {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.price {
  margin: 12px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5rem);
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: none;
}

.calculator {
  width: min(1060px, 100%);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  border: 1px solid rgba(173, 213, 0, 0.5);
  background: var(--soft);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.calculator h3 {
  color: var(--ink);
  font-size: 3rem;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

select,
input[type="checkbox"] {
  font: inherit;
}

select {
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.check-row {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.calc-result {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
}

.calc-result .price {
  margin: 16px 0 8px;
}

.calc-note {
  margin-top: 0;
  font-weight: 700;
}

.calc-result .btn {
  width: 100%;
  margin-top: auto;
}

.branch-detail-actions .btn,
.advisor-nav .btn,
.section-actions .btn {
  min-width: 168px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: center;
}

.copy-block h2,
.copy-block h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  overflow-wrap: anywhere;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .copy-block p {
  color: var(--ink);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
  margin-bottom: 42px;
}

.founder-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.founder-card img {
  border: 4px solid var(--lime);
  border-radius: var(--radius);
}

.founder-card .copy-block h2 {
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.founder-actions {
  justify-content: flex-start;
}

.legacy-links {
  margin-top: 34px;
}

.legacy-archive-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 15% 8%, rgba(173, 213, 0, 0.22), transparent 22rem),
    #fff;
}

.legacy-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.legacy-photo-card {
  overflow: hidden;
  border: 1px solid rgba(8, 9, 8, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.legacy-photo-card.is-featured {
  grid-column: span 2;
}

.legacy-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.legacy-photo-card.is-featured img {
  height: 430px;
}

.legacy-photo-card div {
  padding: 22px;
  border-top: 4px solid var(--lime);
}

.legacy-photo-card h3 {
  color: var(--ink);
  font-size: 2rem;
}

.legacy-photo-card p {
  color: var(--muted);
}

.branch-memory-grid {
  display: grid;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.branch-memory-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.branch-memory-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  border-left: 8px solid var(--lime);
  padding: 18px 0 18px 22px;
}

.branch-memory-copy h3 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.branch-memory-copy p {
  color: var(--muted);
}

.branch-memory-copy .btn {
  width: fit-content;
}

.branch-memory-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 12px;
}

.branch-memory-photos img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.branch-memory-photos img:first-child {
  grid-row: span 2;
}

blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--lime);
  background: var(--soft);
  color: var(--ink);
  font-size: 1.18rem;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lime);
  opacity: 0.9;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--lime);
}

.contact-card-header {
  margin-bottom: 16px;
}

.contact-card-header h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-card-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime-dark);
  margin-bottom: 8px;
}

.contact-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 999px;
}

.contact-card-address {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--slate-text);
  margin: 0 0 16px;
  min-height: 44px;
}

.contact-map-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: #f0f0f0;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.contact-map-btn:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.contact-phone-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 12px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.contact-phone-badge svg {
  flex-shrink: 0;
  color: var(--lime-dark);
}

.contact-phone-badge:hover {
  border-color: var(--lime-dark);
  background: #f4f8e6;
  color: var(--ink);
}

.contact-primary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-primary-actions .btn {
  font-size: 0.88rem;
  padding: 10px 12px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  width: 100%;
  white-space: nowrap;
}

.contact-secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.contact-secondary-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 8px 14px;
  min-height: 38px;
  white-space: nowrap;
}

/* Contact Support Grid */
.contact-support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.support-strip-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-strip-item .btn {
  white-space: nowrap;
  margin-top: auto;
}

.support-strip-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 8px 0 4px;
  color: var(--ink);
  text-transform: uppercase;
}

.support-strip-item p {
  font-size: 0.88rem;
  color: var(--slate-text);
  margin: 0 0 12px;
}

/* Branch Specific Page — Clean Modern Location & Directions Section */
.branch-location-section {
  position: relative;
  background: var(--surface);
  padding-block: clamp(48px, 7vw, 84px);
}

.branch-location-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.branch-location-info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.branch-location-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: var(--lime);
}

.branch-location-info-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.branch-location-neighborhood {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-dark);
  margin-bottom: 20px;
}

.branch-info-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--slate-text);
}

.branch-info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime-dark);
}

.branch-info-row strong {
  color: var(--ink);
}

.branch-location-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.branch-location-btns .btn {
  font-size: 0.88rem;
  padding: 10px 18px;
  min-height: 42px;
  border-radius: var(--radius);
}

.branch-location-map-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  position: relative;
}

.branch-location-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.branch-map-preview span {
  position: absolute;
  inset: 18px auto auto 18px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.78);
  color: #5ea7ff;
  font-weight: 800;
  letter-spacing: 0;
}

.branch-map-preview span::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 9px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(2px) rotate(45deg);
}

.page-hero {
  position: relative;
  min-height: clamp(360px, 44vh, 460px);
  display: grid;
  align-items: end;
  padding: 110px clamp(18px, 5vw, 72px) 48px;
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5)),
    var(--hero-image, url("../images/branches/satellite-hero.webp")) center / cover;
  color: var(--white);
}

.page-hero > div {
  position: relative;
  z-index: 1;
}

.events-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 42%, rgba(173, 213, 0, 0.3), rgba(173, 213, 0, 0.08) 32%, transparent 58%),
    linear-gradient(115deg, rgba(173, 213, 0, 0.18), rgba(0, 0, 0, 0.9) 38%, rgba(18, 20, 18, 0.76)),
    #0b0c0b;
}

.events-hero::after {
  content: "";
  position: absolute;
  inset: 76px clamp(18px, 5vw, 72px) 22px auto;
  width: min(520px, 48vw);
  background: url("../images/logos/main-logo-green.png") center / contain no-repeat;
  opacity: 0.34;
  filter: drop-shadow(0 0 34px rgba(173, 213, 0, 0.34));
  pointer-events: none;
}

.page-hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-hero p {
  max-width: 680px;
  color: #e6ebdd;
  font-size: 1.08rem;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-hero .btn {
  width: fit-content;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 46px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lime);
}

.facts-strip div {
  padding: 28px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.facts-strip strong {
  display: block;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(5, minmax(120px, 0.75fr));
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  padding: 64px clamp(22px, 5vw, 70px) 36px;
  border-top: 2px solid rgba(173, 213, 0, 0.15);
  background: #e8ece3;
  color: #3a3a2e;
  text-align: left;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.site-footer img {
  width: min(260px, 70vw);
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand-block h3,
.footer-column h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-brand-block p,
.footer-column a,
.footer-bottom {
  margin: 0;
  color: #4a4a3a;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-instagram-links {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.footer-instagram-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #4a4a3a;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

.footer-instagram-links a::before {
  flex: 0 0 auto;
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.95 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.95 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-instagram-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .hiit-section .two-col {
    grid-template-columns: 1fr;
  }

  .hiit-proof-grid {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 1040px) {
  .site-header {
    height: 76px;
    min-height: 76px;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 1 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    border-radius: 8px !important;
    background: var(--charcoal) url('/assets/elements/valas-v-lime.png') no-repeat center !important;
    background-size: 22px !important;
    border: 2px solid var(--charcoal) !important;
    color: transparent !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.2s ease !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    z-index: 2 !important;
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .brand-link {
    order: 2 !important;
    position: static !important;
    transform: none !important;
    margin: 0 0 0 4px !important;
    min-width: 0 !important;
    max-width: 160px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-shrink: 0 !important;
    z-index: 1 !important;
    pointer-events: auto !important;
  }

  .brand-link img {
    width: 156px !important;
    height: auto !important;
    max-height: 44px !important;
    display: block !important;
  }

  .header-contact-mobile {
    order: 3 !important;
    margin-left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: var(--charcoal, #111311) !important;
    border: none !important;
    font-family: var(--font-display) !important;
    font-size: 1.32rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 8px 18px !important;
    border-radius: var(--radius, 6px) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    min-height: 40px !important;
    z-index: 2 !important;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
  }

  .header-contact-mobile:hover {
    background: #f4f4f4 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24) !important;
  }

  .mobile-nav {
    inset: 76px 0 auto !important;
  }

  .branch-page .branch-subnav {
    inset: 76px 0 auto !important;
  }

  .branch-page .mobile-nav {
    inset: calc(76px + var(--branch-subnav-height, 50px)) 0 auto !important;
  }

  .branch-overview-grid,
  .assurance-grid,
  .cards-grid,
  .content-grid,
  .event-grid,
  .leaderboard-gallery,
  .repathlon-event-gallery,
  .repathlon-leaderboard-gallery,
  .legacy-archive-grid,
  .branch-update-grid,
  .reviews-grid,
  .plans-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .assurance-card,
  .assurance-card-top {
    grid-column: span 2;
  }

  .section-lime .cards-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .assurance-explainers,
  .consultation-panel,
  .hiit-proof-grid,
  .branch-memory-card,
  .branch-split,
  .branch-location-card,
  .event-feature-card,
  .calculator,
  .guided-advisor,
  .two-col,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .branch-detail-card {
    grid-template-columns: minmax(0, 1fr) !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .branch-choice-grid,
  .duration-grid {
    grid-template-columns: 1fr;
  }

  .branch-memory-photos {
    grid-template-columns: 1fr 1fr;
  }

  .branch-memory-photos img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .branch-media {
    padding: 0 clamp(18px, 5vw, 70px) 70px;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

/* Fit For Less section — mobile single column */
@media (max-width: 860px) {
  #fit-for-less > div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 72px;
    min-height: 72px;
    padding: 0 12px !important;
    gap: 8px !important;
  }

  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    background-size: 20px !important;
  }

  .brand-link {
    order: 2 !important;
    position: static !important;
    transform: none !important;
    margin: 0 0 0 2px !important;
    max-width: 144px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .brand-link img {
    width: 144px !important;
    height: auto !important;
    max-height: 40px !important;
  }

  .header-contact-mobile {
    font-size: 1.22rem !important;
    padding: 7px 15px !important;
    border-radius: 6px !important;
    min-height: 38px !important;
  }

  .mobile-nav {
    inset: 72px 0 auto !important;
  }

  .branch-page {
    --branch-subnav-height: 50px;
  }

  .branch-subnav {
    padding: 9px 16px;
  }

  .branch-page .branch-subnav {
    inset: 72px 0 auto !important;
  }

  .branch-page .mobile-nav {
    inset: calc(72px + var(--branch-subnav-height)) 0 auto !important;
  }

  .branch-page .page-hero {
    padding-top: calc(92px + var(--branch-subnav-height));
  }

  .branch-subnav .jump-label {
    font-size: 1.18rem;
  }

  .branch-subnav a {
    padding: 8px 12px;
    font-size: 1rem;
  }

  .hero {
    min-height: 72vh;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .legacy-badge {
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    padding-inline: 16px;
  }

  .hero-proof {
    gap: 14px;
  }

  .proof-item {
    flex: 1 1 130px;
  }

  .branch-overview-grid,
  .assurance-grid,
  .cards-grid,
  .content-grid,
  .event-grid,
  .leaderboard-gallery,
  .legacy-archive-grid,
  .branch-update-grid,
  .reviews-grid,
  .plans-grid,
  .local-seo-grid,
  .faq-grid,
  .local-link-grid,
  .contact-grid,
  .facts-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }

  .footer-brand-block {
    justify-items: start;
  }

  .assurance-card,
  .assurance-card-top {
    grid-column: auto;
  }

  .legacy-photo-card.is-featured {
    grid-column: auto;
  }

  .legacy-photo-card img,
  .legacy-photo-card.is-featured img {
    height: 280px;
  }

  .branch-panel {
    margin: 58px 18px 28px;
  }

  .branch-detail-copy {
    padding: clamp(16px, 4vw, 24px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .branch-detail-copy h3 {
    font-size: clamp(2.2rem, 7vw, 3.8rem) !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .branch-info-grid {
    grid-template-columns: 1fr;
  }

  .branch-detail-media {
    min-height: auto !important;
    padding: clamp(16px, 4vw, 20px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .branch-main-photo {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .branch-photo-strip {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
  }

  .branch-photo-strip img {
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    max-height: 80px !important;
    width: 100% !important;
  }

  .branch-location-card {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .branch-loc-header {
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  .branch-loc-address {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .branch-meta {
    grid-template-columns: 1fr;
  }

  .branch-location-section {
    padding-block: 42px;
  }

  .branch-location-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .branch-location-map-frame {
    min-height: 280px;
  }

  .branch-location-map-frame iframe {
    min-height: 280px;
  }

  .branch-location-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-support-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .event-section-heading {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .event-section-heading img {
    width: 96px;
  }

  .event-section-heading .section-title {
    text-align: center;
  }

  .school-tour-video-grid {
    grid-template-columns: 1fr;
  }

  .events-hero::after {
    inset: auto 0 24px;
    width: 100%;
    opacity: 0.16;
  }

  .advisor-periods {
    grid-template-columns: 1fr;
  }

  .guided-advisor,
  .advisor-progress,
  .advisor-form,
  .advisor-form .advisor-step,
  .advisor-result,
  .advisor-nav {
    width: 100%;
    max-width: 100%;
  }

  .advisor-form fieldset,
  .advisor-result {
    padding: 18px 14px;
  }

  .advisor-form legend {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1;
  }

  .advisor-form label {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.98rem;
  }

  .advisor-result h3 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .advisor-result .price {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .advisor-periods strong {
    font-size: 1.35rem;
  }

  .advisor-periods span {
    padding: 12px;
  }

  .advisor-periods b {
    font-size: 1.18rem;
  }

  .advisor-nav {
    flex-direction: column-reverse;
  }

  .advisor-nav .btn,
  .advisor-result .branch-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .branch-map-preview {
    min-height: 230px;
  }

  .media-feature,
  .media-feature img {
    min-height: 300px;
  }

  .thumb-row {
    grid-template-columns: 1fr;
  }

  .thumb-row img {
    height: 190px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .calculator {
    padding: 22px;
  }

  .calc-result {
    padding: 22px;
  }

  /* ─── Mobile Responsiveness Enhancements ─── */
  html {
    scroll-padding-top: 82px;
  }
  [id] {
    scroll-margin-top: 82px;
  }
  .branch-page {
    scroll-padding-top: calc(70px + var(--branch-subnav-height, 50px) + 16px);
  }
  .branch-page [id] {
    scroll-margin-top: calc(70px + var(--branch-subnav-height, 50px) + 16px);
  }

  .image-stack {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 16px;
  }
  .image-stack img {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }

  .valas-table th,
  .valas-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .valas-table td:nth-child(2) {
    white-space: normal;
  }

  .schedule-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .split-card .pricing-term-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px 0;
  }
  .split-card .term-box {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: var(--radius);
    padding: 10px 6px;
  }
  .split-card.guided-side .term-box {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
  }
  .split-card .term-box .term-price {
    font-size: 2.2rem;
  }
  .split-card .plan-features-grid {
    grid-template-columns: 1fr;
  }
  .plan-notes-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .branch-item-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .branch-item-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .repathlon-intro-box {
    padding: 2.5rem 1.25rem !important;
    margin-bottom: 3rem !important;
  }
  .repathlon-intro-box .section-title {
    font-size: clamp(2rem, 6vw, 3rem) !important;
  }

  .branch-memory-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .branch-memory-photos img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: auto;
  }

  #valas-ai-chat {
    bottom: 18px;
    right: 18px;
  }
  .vac-fab {
    width: 52px;
    height: 52px;
  }
  .vac-panel {
    bottom: 78px;
    right: 16px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 120px);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   VALA'S GYM AI CHAT WIDGET
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Floating Action Button ──────────────────────────────────── */
#valas-ai-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-body);
}

.vac-fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime) 0%, #8ab300 100%);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(173, 213, 0, 0.35), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.vac-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(173, 213, 0, 0.45), 0 4px 12px rgba(0,0,0,0.18);
}

.vac-fab:active {
  transform: scale(0.95);
}

.vac-fab-icon,
.vac-fab-close {
  width: 26px;
  height: 26px;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.vac-fab-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

#valas-ai-chat.is-open .vac-fab-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

#valas-ai-chat.is-open .vac-fab-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Pulse animation */
.vac-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  animation: vac-pulse 2.5s ease-out infinite;
}

#valas-ai-chat.is-open .vac-fab-pulse {
  display: none;
}

@keyframes vac-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ─── Chat Panel ──────────────────────────────────────────────── */
.vac-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(173, 213, 0, 0.25);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(255,255,255,0.3) inset;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#valas-ai-chat.is-open .vac-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ─── Header ──────────────────────────────────────────────────── */
/* Savings & Concession Pills */
.plan-notes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 16px;
  gap: 8px;
}

/* ─── Pricing Split Layout ────────────────────────── */
.pricing-split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100vw;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  align-items: stretch;
}

@media (max-width: 860px) {
  .pricing-split-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100% !important;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .split-card {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    grid-row: auto;
    padding: clamp(24px, 5vw, 42px) clamp(16px, 4vw, 32px);
  }
}

.split-card {
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 0;
  align-content: start;
}

.split-card.guided-side {
  background: var(--lime);
  color: var(--charcoal);
  position: relative;
}

.split-card.core-side {
  background: var(--paper);
  color: var(--charcoal);
}

.split-card .super-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  color: rgba(0,0,0,0.6);
}

.split-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: clamp(24px, 4vw, 64px);
  background: var(--charcoal);
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.2);
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.1);
}

.split-card .plan-tagline {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 40px;
  max-width: 500px;
}

.split-card .pricing-term-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 16px;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 24px 0;
}

.split-card .term-box {
  background: transparent !important;
  border: none !important;
  padding: 0;
  text-align: center;
  justify-content: flex-start;
}

.split-card .term-box .term-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
  margin-bottom: 6px;
}

.split-card .term-box .term-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}

.split-card .term-box .term-rate {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  margin-top: 2px;
}

.split-card .savings-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0;
  margin: 0 0 24px;
  background: transparent;
  color: var(--charcoal);
  border-radius: 0;
}

.split-card .plan-features-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 1100px) {
  .split-card .plan-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
}

.split-card .plan-features-grid li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.split-card .plan-features-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 15px;
  height: 15px;
  background: url('/assets/elements/valas-dumbbell-black.png') no-repeat center;
  background-size: contain;
  filter: drop-shadow(0px 1px 3px var(--lime));
}

.vac-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1d19 100%);
  color: #fff;
  border-bottom: 2px solid var(--lime);
  flex-shrink: 0;
}

.vac-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vac-header-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vac-header-info small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 1px;
}

.vac-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  overflow: hidden;
  padding: 5px;
}

.vac-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vac-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.vac-close-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.vac-close-btn svg {
  width: 18px;
  height: 18px;
}

/* ─── Messages Area ───────────────────────────────────────────── */
.vac-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 380px;
  scroll-behavior: smooth;
}

.vac-messages::-webkit-scrollbar {
  width: 4px;
}

.vac-messages::-webkit-scrollbar-track {
  background: transparent;
}

.vac-messages::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 4px;
}

.vac-msg {
  max-width: 88%;
  animation: vac-msg-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes vac-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.vac-msg p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  word-wrap: break-word;
}

.vac-msg-bot {
  align-self: flex-start;
}

.vac-msg-bot p {
  background: var(--soft);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.vac-msg-user {
  align-self: flex-end;
}

.vac-msg-user p {
  background: linear-gradient(135deg, var(--lime) 0%, #c6f000 100%);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}

/* ─── Action Links in Bot Messages ────────────────────────────── */
.vac-action-link {
  display: inline-block;
  margin: 4px 4px 4px 0;
  padding: 5px 12px;
  background: var(--charcoal);
  color: var(--lime) !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.vac-action-link:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ─── Typing Indicator ────────────────────────────────────────── */
.vac-typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--soft);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.vac-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.3;
  animation: vac-typing 1.2s ease-in-out infinite;
}

.vac-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.vac-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes vac-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ─── Quick Action Chips ──────────────────────────────────────── */
.vac-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
  flex-shrink: 0;
}

.vac-chip {
  padding: 6px 12px;
  background: rgba(173, 213, 0, 0.12);
  border: 1px solid rgba(173, 213, 0, 0.3);
  border-radius: 20px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  white-space: nowrap;
}

.vac-chip:hover {
  background: rgba(173, 213, 0, 0.25);
  border-color: var(--lime);
  transform: translateY(-1px);
}

/* ─── Input Bar ───────────────────────────────────────────────── */
.vac-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.vac-input-bar input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.vac-input-bar input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(173, 213, 0, 0.18);
}

.vac-input-bar input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vac-input-bar button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime) 0%, #8ab300 100%);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.vac-input-bar button[type="submit"]:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(173, 213, 0, 0.35);
}

.vac-input-bar button[type="submit"] svg {
  width: 18px;
  height: 18px;
}

/* ─── Mobile Responsive ───────────────────────────────────────── */
@media (max-width: 480px) {
  .branch-contact-buttons {
    grid-template-columns: 1fr;
  }

  #valas-ai-chat {
    bottom: 16px;
    right: 16px;
  }

  .vac-fab {
    width: 54px;
    height: 54px;
  }

  .vac-panel {
    bottom: 80px;
    right: 8px;
    left: 8px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 110px);
    border-radius: 16px;
  }

  .vac-messages {
    max-height: 320px;
  }

  .vac-chip {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}

/* ─── Two-Tier Compact Pricing Extension ────────────────────────── */
#pricing .section-title,
#pricing-packages .section-title {
  margin: 0 auto 36px;
}

#pricing .section-kicker,
#pricing-packages .section-kicker {
  margin: -24px auto 28px;
}

.plans-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1040px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 860px) {
  .branch-contact-buttons,
  .branch-detail-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .branch-contact-buttons .btn,
  .branch-detail-actions .btn {
    white-space: normal !important;
    line-height: 1.25 !important;
    padding: 10px 8px !important;
    font-size: clamp(0.9rem, 2.5vw, 1.05rem) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    word-break: break-word !important;
    min-height: 42px !important;
  }

  .plans-grid-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .branch-contact-buttons,
  .branch-detail-actions {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .branch-highlights-list li {
    font-size: 0.82rem;
    padding-left: 16px;
  }
  .branch-location-card {
    padding: 10px 12px;
  }
  .branch-loc-header strong {
    font-size: 1.05rem;
  }
  .branch-photo-strip {
    gap: 6px !important;
  }
}

.plan-card {
  padding: 20px 22px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1;
  margin: 0 0 2px;
}

.plan-card .price {
  min-height: auto !important;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 6px;
  margin-bottom: 2px;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
}

.plan-card .price-subtext {
  display: inline-block;
  font-size: 0.86rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
}

.plan-card .plan-tagline {
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.3;
  margin: 3px 0 8px;
  min-height: auto !important;
}

/* 4-column Compact Term Grid */
.pricing-term-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin: 6px 0 8px;
}

@media (max-width: 520px) {
  .pricing-term-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

.term-box {
  padding: 6px 3px;
  text-align: center;
  background: rgba(17, 19, 17, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.plan-card.featured .term-box {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(17, 19, 17, 0.12);
}

.term-box.highlight {
  background: rgba(173, 213, 0, 0.25);
  border-color: rgba(123, 158, 0, 0.7);
}

.term-box .term-duration {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.term-box .term-price {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1;
  color: var(--ink);
  margin: 1px 0;
}

.term-box .term-rate {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.1;
  font-weight: 500;
}

/* Savings & Concession Pills */
.plan-notes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 8px;
}

.savings-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  background: rgba(173, 213, 0, 0.22);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
}

.concession-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(123, 158, 0, 0.4);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #4b6000;
}

/* 2-Column Compact Features Grid */
.plan-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 6px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  line-height: 1.25;
}

.plan-features-grid li {
  position: relative;
  padding-left: 22px;
}

.plan-features-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 14px;
  height: 14px;
  background: url('/assets/elements/valas-dumbbell-black.png') no-repeat center;
  background-size: contain;
  filter: drop-shadow(0px 1px 3px var(--lime));
}

/* Guided Aerobics Add-on Box */
.plan-addon-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(173, 213, 0, 0.16);
  border: 1px dashed rgba(123, 158, 0, 0.6);
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.plan-card .price small {
  font-size: 1.15rem !important;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.plan-addon-box span {
  color: var(--ink);
  font-weight: 400 !important;
  line-height: 1.25;
}

.pricing-durations .schedule-table td,
.pricing-durations .schedule-table td strong {
  font-weight: normal !important;
}

.pricing-matrix-table td:first-child {
  font-weight: 700 !important;
}

.pricing-addon-price {
  display: block;
  font-size: 0.76rem;
  color: #777;
  font-weight: normal !important;
  margin-top: 2px;
}

/* ─── Legacy Timeline Native Extension ─────────────────────────── */
.timeline-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.timeline-stat-card {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.timeline-stat-card .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}

.timeline-stat-card .stat-num span {
  color: #7b9e00;
}

.timeline-stat-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
}

/* ─── Interactive Branch Locator (Anytime-style Map Split View) ─── */
.branch-locator-split {
  display: grid;
  grid-template-columns: minmax(360px, 480px) 1fr;
  gap: 28px;
  width: min(1320px, 100%);
  margin: 0 auto;
  min-height: 740px;
  align-items: stretch;
}

.branch-locator-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 740px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) rgba(0, 0, 0, 0.05);
}

.branch-locator-list::-webkit-scrollbar {
  width: 6px;
}

.branch-locator-list::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 4px;
}

.branch-locator-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid transparent;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.branch-locator-item:hover {
  border-color: rgba(173, 213, 0, 0.6);
  border-left-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.branch-locator-item.is-selected {
  border-color: rgba(111, 141, 0, 0.4);
  border-left: 5px solid var(--lime-dark);
  background: #fbfdf7;
  box-shadow: 0 12px 28px rgba(111, 141, 0, 0.12);
}

.branch-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.branch-item-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-deep);
  background: rgba(173, 213, 0, 0.18);
  padding: 3px 8px;
  border-radius: 4px;
}

.branch-item-rating {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e67e22;
  display: flex;
  align-items: center;
  gap: 3px;
}

.branch-locator-item h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.branch-item-address {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--slate-text);
  margin: 0 0 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.branch-item-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime-dark);
}

.branch-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.branch-item-features span {
  font-size: 0.74rem;
  background: var(--premium-gray);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.branch-item-actions {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.branch-item-actions .btn {
  min-height: 40px;
  padding: 6px 14px;
  font-size: 1.15rem;
  text-align: center;
  white-space: nowrap;
}

.branch-item-sub-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.branch-item-sub-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
}

.branch-item-sub-actions a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #10120e;
}

.branch-locator-map-wrap {
  position: sticky;
  top: 96px;
  height: 740px;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  background: #e5e3df;
}

#branches-interactive-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  z-index: 1;
}

/* Custom Marker Styling: Green pin with dark border & black V logo element */
.gym-map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--lime);
  border: 3.5px solid var(--charcoal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.gym-map-pin-inner {
  transform: rotate(45deg);
  width: 22px;
  height: 22px;
  background-image: url('/assets/elements/valas-v-black.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.gym-map-pin:hover,
.gym-map-pin.is-active {
  background: #d8ff1a;
  border-color: #000;
  transform: rotate(-45deg) scale(1.22);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.gym-map-pin:hover .gym-map-pin-inner,
.gym-map-pin.is-active .gym-map-pin-inner {
  background-image: url('/assets/elements/valas-v-black.png');
}

.custom-gym-pin-wrap {
  position: absolute;
  width: 44px;
  height: 44px;
  transform-origin: 22px 44px;
  pointer-events: auto;
  user-select: none;
}

/* Custom Google Maps & Popup Styling */
.gm-style-iw.gm-style-iw-c {
  padding: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22) !important;
  max-width: 280px !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
}

.gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
  max-height: none !important;
}

.gm-ui-hover-effect {
  top: 6px !important;
  right: 6px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50% !important;
  width: 24px !important;
  height: 24px !important;
}

.gm-ui-hover-effect span {
  filter: invert(1) !important;
  margin: 3px !important;
}

.map-popup-card {
  padding: 0;
  font-family: var(--font-body);
}

.map-popup-thumb {
  width: 100%;
  height: 125px;
  object-fit: cover;
  display: block;
}

.map-popup-body {
  padding: 14px;
}

.map-popup-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-deep);
  display: inline-block;
  margin-bottom: 3px;
}

.map-popup-body h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 6px;
  text-transform: uppercase;
}

.map-popup-body p {
  font-size: 0.8rem;
  color: var(--slate-text);
  margin: 0 0 12px;
  line-height: 1.35;
}

.map-popup-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: var(--charcoal);
  color: var(--lime) !important;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.map-popup-btn:hover {
  background: var(--lime);
  color: #10120e !important;
}

.map-recenter-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.map-recenter-btn:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #10120e;
}

@media (max-width: 960px) {
  .branch-locator-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .branch-locator-map-wrap {
    position: relative;
    top: 0;
    height: 440px;
    order: -1;
  }
  
  .branch-locator-list {
    max-height: none;
    overflow-y: visible;
  }
}

/* ─── Personalized Watermarks & Patterns ────────────────────────── */
.has-watermark {
  position: relative;
}

.has-watermark::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.watermark-dumbbell::after {
  width: 100px;
  height: 100px;
  background-image: url('/assets/elements/valas-dumbbell-element-clean.png');
  transform: rotate(45deg);
}

.watermark-v::after {
  background-image: url('/assets/elements/valas-v-element-clean.png');
}

.watermark-logo::after {
  background-image: url('/assets/elements/valas-main-logo-green-clean.png');
}

/* ==========================================================================
   Break Section
   ========================================================================== */

/* Override .section auto-centering so negative margins can reach the edges */
.section.section-break-active {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(-1 * clamp(18px, 4vw, 64px));
  margin-right: calc(-1 * clamp(18px, 4vw, 64px));
}

.section-break-active {
  background-color: var(--lime);
  color: var(--ink);
  max-width: none;
  padding: 70px clamp(22px, 8vw, 120px);
  text-align: center;
  box-shadow: inset 0 10px 30px rgba(0,0,0,0.08), inset 0 -10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.section-break-active h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.section-break-active p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
  color: rgba(0,0,0,0.75);
}

.section-break-active .btn {
  background: var(--ink);
  color: var(--lime);
  border: none;
}

.section-break-active .btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.section-break-active .floating-dumbbell {
  position: absolute;
  /* Higher opacity + fully in-frame with handle extending all the way to page edge */
  opacity: 0.20;
  width: 140px;
  height: 110px;
  color: #080908;
  /* Positioned on the right, vertically centred */
  right: clamp(24px, 4vw, 60px);
  top: 50%;
  transform-origin: 40px center;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.section-break-active .floating-dumbbell svg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2200px;
  overflow: visible;
  display: block;
}

.bg-pattern-dumbbell {
  background-image: url('/assets/elements/valas-dumbbell-element-transparent.png');
  background-size: 80px;
  background-repeat: repeat;
  background-blend-mode: multiply;
}

/* ========================================= */
/* 24. Transparency Pledge Section (Pricing) */
/* ========================================= */
.pledge-break {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pledge-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left;
}

.pledge-compact-grid article {
  background: rgba(255, 255, 255, 0.4);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, background 0.3s ease;
}

.pledge-compact-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.7);
}

.pledge-compact-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.pledge-compact-grid span {
  display: block;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pledge-compact-grid {
    gap: 1rem;
  }
  .pledge-compact-grid article {
    padding: 1.25rem;
  }
}

/* Native Dialog Lightbox */
#global-lightbox {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  overflow: hidden;
}

#global-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#global-lightbox[open] .lightbox-content img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.lightbox-trigger {
  cursor: zoom-in;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.lightbox-trigger:hover {
  filter: brightness(1.1);
}

/* Lightbox Video */
.lightbox-video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  outline: none;
}

.lightbox-video.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Video Thumbnail with Play Button */
.video-thumbnail-wrap {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}

.video-thumbnail-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.video-thumbnail-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 32px;
  line-height: 1;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.video-play-overlay svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-thumbnail-wrap:hover .video-play-overlay {
  background: var(--lime);
  color: var(--charcoal);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: var(--charcoal);
}

/* Leaderboard Hero & Archive */
.leaderboard-hero {
  margin-bottom: 2rem;
}
.leaderboard-hero .leaderboard-image-card {
  max-width: 800px;
  margin: 0 auto;
}
.leaderboard-hero .leaderboard-image-card img {
  height: auto;
  max-height: 80vh;
}
.leaderboard-archive-title {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--slate);
}
.leaderboard-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.leaderboard-thumbnail-card {
  position: relative;
  width: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-surface);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.leaderboard-thumbnail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.leaderboard-thumbnail-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.leaderboard-thumbnail-card div {
  padding: 0.75rem;
  text-align: center;
  background: var(--white);
}
.leaderboard-thumbnail-card span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-transform: uppercase;
}


/* Leaderboard Tables */
.leaderboard-tables-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}
.leaderboard-table-wrapper {
  background: var(--white);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.leaderboard-table-title {
  background: var(--charcoal);
  color: var(--lime);
  margin: 0;
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.5rem;
}
.valas-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.valas-table th, .valas-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-surface);
}
.valas-table th {
  background: var(--light-surface);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.valas-table tr:last-child td {
  border-bottom: none;
}
.valas-table tr:nth-child(even) {
  background-color: rgba(0,0,0,0.02);
}
.score-col {
  text-align: right;
  font-weight: 700;
  color: var(--charcoal);
}
.valas-table td.score-col {
  font-size: 1.2rem;
  color: var(--slate);
}

/* Equipment Brand Pills in Pricing Section */
.eq-brands {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.eq-brand-pill {
  background: #ffffff;
  border: 1px solid var(--line, #e2e4e1);
  height: 44px;
  min-width: 120px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(8, 9, 8, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.eq-brand-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 9, 8, 0.09);
}

.eq-brand-pill img {
  height: 22px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .eq-brands {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  .eq-brand-pill {
    height: 38px;
    min-width: 102px;
    padding: 0 12px;
  }
  .eq-brand-pill img {
    height: 18px;
    max-width: 82px;
  }
}

/* ─── Modern Category-Tabbed FAQ Section (Croma & Anytime Fitness UI Style) ─── */
.contact-faq-section {
  width: min(1080px, 100%);
  margin: 56px auto 30px;
  padding: 0 16px;
}

.faq-header-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.faq-header-wrap .section-kicker {
  color: var(--lime-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.faq-header-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 12px;
}

.faq-header-wrap p {
  color: var(--slate-text);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-category-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.faq-pill-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq-pill-btn:hover {
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

.faq-pill-btn.is-active {
  background: var(--charcoal);
  color: var(--lime);
  border-color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(8, 9, 8, 0.03);
}

.faq-accordion-card:hover {
  border-color: rgba(173, 213, 0, 0.6);
}

.faq-accordion-card.is-open {
  border-color: var(--lime-dark);
  border-left: 4px solid var(--lime-dark);
  box-shadow: 0 8px 24px rgba(8, 9, 8, 0.08);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  color: var(--ink);
}

.faq-question-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-dark);
}

.faq-question-title {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  color: var(--charcoal);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.faq-accordion-card.is-open .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--charcoal);
  color: var(--lime);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-accordion-card.is-open .faq-accordion-content {
  padding: 0 24px 20px;
}

.faq-answer-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-text);
  line-height: 1.68;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.faq-answer-text strong {
  color: var(--ink);
}

.faq-answer-text ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.faq-answer-text li {
  margin-bottom: 4px;
}

.faq-contact-cta-box {
  margin-top: 36px;
  padding: 22px 28px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 640px) {
  .faq-accordion-trigger {
    padding: 16px 18px;
  }
  .faq-question-title {
    font-size: 0.98rem;
  }
  .faq-accordion-content {
    padding: 0 18px;
  }
  .faq-accordion-card.is-open .faq-accordion-content {
    padding: 0 18px 18px;
  }
  .faq-contact-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}


