:root {
      --ink: #07090c;
      --ink-2: #141922;
      --paper: #f7fbfd;
      --mist: #e7f6fb;
      --cyan: #02d6df;
      --blue: #1098f7;
      --lime: #c7ff5f;
      --steel: #607080;
      --line: rgba(7, 9, 12, 0.12);
      --white: #ffffff;
      --shadow: 0 28px 80px rgba(7, 9, 12, 0.22);
      --max: 1180px;
      --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-quick: cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Manrope", Arial, sans-serif;
      line-height: 1.55;
      overflow-x: hidden;
    }

    main,
    section,
    .container,
    .hero-inner,
    .hero-panel,
    .actions,
    .nav,
    .nav-actions {
      min-width: 0;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .container {
      width: calc(100% - 32px);
      max-width: var(--max);
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 18px 0 auto;
      z-index: 40;
      pointer-events: none;
    }

    .nav {
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 18px;
      color: var(--white);
      background: rgba(7, 9, 12, 0.58);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(18px);
      pointer-events: auto;
    }

    .brand { display: flex; align-items: center; min-width: 160px; }
    .brand img { display: block; width: 118px; height: 36px; object-fit: contain; }

    .menu {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 2px;
      flex-wrap: wrap;
    }

    .menu a {
      padding: 8px 10px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      font-weight: 700;
    }

    .menu a:hover { color: var(--white); }
    .menu-group { position: relative; }
    .menu-trigger {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      color: rgba(255, 255, 255, 0.78);
      background: transparent;
      border: 0;
      font: inherit;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
    }
    .menu-trigger::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-2px) rotate(45deg);
    }
    .menu-group:hover .menu-trigger,
    .menu-group:focus-within .menu-trigger { color: var(--white); }
    .submenu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      width: 230px;
      padding: 8px;
      display: grid;
      gap: 4px;
      background: rgba(7, 9, 12, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }
    .menu-group:hover .submenu,
    .menu-group:focus-within .submenu,
    .menu-group.open .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .submenu a {
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.05);
    }
    .submenu a small {
      flex: 0 0 auto;
      padding: 3px 6px;
      color: var(--ink);
      background: var(--cyan);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: 0.06em;
      line-height: 1.1;
      text-transform: uppercase;
    }
    .submenu a:hover { color: var(--ink); background: var(--cyan); }
    .submenu a:hover small { background: var(--ink); color: var(--white); }
    .mobile-menu-toggle {
      display: none;
      width: 48px;
      min-height: 42px;
      position: relative;
      align-items: center;
      justify-content: center;
      padding: 0;
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      cursor: pointer;
    }
    .mobile-menu-toggle span,
    .mobile-menu-toggle::before,
    .mobile-menu-toggle::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 2px;
      background: currentColor;
      display: block;
      border-radius: 999px;
      transform: translate(-50%, -50%);
      transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
    }
    .mobile-menu-toggle::before { top: calc(50% - 6px); }
    .mobile-menu-toggle::after { top: calc(50% + 6px); }
    .nav.menu-open .mobile-menu-toggle span { opacity: 0; }
    .nav.menu-open .mobile-menu-toggle::before { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
    .nav.menu-open .mobile-menu-toggle::after { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      color: var(--ink);
      background: var(--cyan);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      white-space: nowrap;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }
    .theme-toggle {
      width: 58px;
      height: 32px;
      min-height: 32px;
      padding: 3px;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      color: #07090c;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      cursor: pointer;
      overflow: hidden;
      -webkit-tap-highlight-color: transparent;
      transition: background 180ms ease, border-color 180ms ease;
    }
    .theme-toggle:hover {
      border-color: rgba(255, 255, 255, 0.45);
    }
    .theme-toggle__thumb {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
      transform: translateX(0);
      transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    }
    .theme-toggle__icon {
      grid-area: 1 / 1;
      width: 14px;
      height: 14px;
      display: block;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      transition: opacity 160ms ease, transform 160ms ease;
    }
    .theme-toggle__icon--sun {
      opacity: 0;
      transform: scale(0.65) rotate(-50deg);
    }
    .theme-toggle[aria-pressed="true"] {
      background: rgba(2, 214, 223, 0.24);
      border-color: rgba(2, 214, 223, 0.62);
    }
    .theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
      color: #05070a;
      background: var(--cyan);
      transform: translateX(26px);
    }
    .theme-toggle[aria-pressed="true"] .theme-toggle__icon--moon {
      opacity: 0;
      transform: scale(0.65) rotate(45deg);
    }
    .theme-toggle[aria-pressed="true"] .theme-toggle__icon--sun {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    body.dark-mode {
      --paper: #07090c;
      --mist: #101923;
      --ink: #f5fbff;
      --ink-2: #ffffff;
      --steel: #b1c0cf;
      --line: rgba(255, 255, 255, 0.16);
      color: var(--ink);
      background: #07090c;
    }

    body.dark-mode .steps,
    body.dark-mode .price,
    body.dark-mode .payment-strip,
    body.dark-mode .contact-grid,
    body.dark-mode .branch-card,
    body.dark-mode .faq-item,
    body.dark-mode .gym-contact,
    body.dark-mode .gym-intro {
      background: #111820;
    }

    body.dark-mode .price.featured,
    body.dark-mode .trainer,
    body.dark-mode .contact-card,
    body.dark-mode footer,
    body.dark-mode .location-band,
    body.dark-mode .gym-hero {
      background: #05070a;
    }

    body.dark-mode .btn-dark {
      color: #05070a;
      background: var(--cyan);
    }

    body.dark-mode .single-entry {
      background: linear-gradient(90deg, #05070a, #0f3244);
    }

    body.dark-mode .hero-panel {
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(2, 214, 223, 0.18), rgba(255, 255, 255, 0.04)),
        rgba(5, 7, 10, 0.88);
      border: 1px solid rgba(2, 214, 223, 0.34);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
      backdrop-filter: blur(14px);
    }

    body.dark-mode .hero-panel p {
      color: rgba(255, 255, 255, 0.76);
    }

    body.dark-mode .mini span {
      color: rgba(255, 255, 255, 0.9);
      border-top-color: rgba(255, 255, 255, 0.16);
    }

    body.dark-mode .gym-contact-info .contact-list a,
    body.dark-mode .gym-contact-info .contact-list span {
      color: var(--ink);
    }

    body.dark-mode .contact-section {
      background: #0b1118;
    }

    .hero {
      position: relative;
      min-height: 92svh;
      display: grid;
      align-items: end;
      color: var(--white);
      overflow: hidden;
      isolation: isolate;
      background: var(--ink);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(7, 9, 12, 0.92), rgba(7, 9, 12, 0.46) 48%, rgba(7, 9, 12, 0.78)),
        linear-gradient(180deg, rgba(7, 9, 12, 0.08), rgba(7, 9, 12, 0.88)),
        url("/assets/martina-benku/foto_fitko-001-scaled.jpg") center / cover;
      transform: translate3d(0, calc(var(--hero-parallax, 0px) * 0.28), 0) scale(1.06);
      transform-origin: center;
      animation: heroKenBurns 18s var(--ease-smooth) infinite alternate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: -1;
      height: 10px;
      background: linear-gradient(90deg, var(--cyan), var(--blue), var(--lime), var(--cyan));
      background-size: 220% 100%;
      animation: gradientFlow 4.8s linear infinite;
    }

    .hero-inner {
      padding: 138px 0 46px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 34px;
      align-items: end;
    }

    .hero-logo {
      display: block;
      width: min(560px, 82vw);
      height: auto;
      max-width: 100%;
      margin-bottom: 22px;
      filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.32));
    }

    h1, h2, h3 {
      margin: 0;
      font-family: "Barlow Condensed", Impact, sans-serif;
      letter-spacing: 0;
      line-height: 0.95;
      text-transform: uppercase;
    }

    h1 { max-width: 780px; font-size: clamp(58px, 9vw, 132px); }

    .hero-copy {
      max-width: 690px;
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
    }

    .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

    .btn {
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      border: 1px solid transparent;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 14px;
      position: relative;
      overflow: hidden;
      transition: transform 220ms var(--ease-quick), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }
    .btn::after {
      content: "";
      position: absolute;
      inset: -120% auto -120% -55%;
      width: 42%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
      transform: rotate(18deg) translateX(-120%);
      transition: transform 650ms var(--ease-smooth);
      pointer-events: none;
    }
    .btn:hover::after { transform: rotate(18deg) translateX(420%); }

    .btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(7, 9, 12, 0.18); }
    .btn-primary { color: var(--ink); background: var(--cyan); }
    .btn-dark { color: var(--white); background: var(--ink); }
    .btn-light { color: var(--white); border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.08); }
    .hero-branch-btn {
      min-height: 60px;
      flex-direction: column;
      gap: 3px;
      line-height: 1.05;
    }
    .hero-branch-btn small {
      color: var(--cyan);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }
    .hero-branch-btn.btn-disabled small { color: rgba(2, 214, 223, 0.88); }

    .hero-panel {
      padding: 22px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      box-shadow: var(--shadow);
      animation: softFloat 6.5s ease-in-out infinite;
    }

    .hero-panel strong {
      display: block;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 38px;
      line-height: 0.95;
      text-transform: uppercase;
    }

    .hero-panel p { margin: 12px 0 18px; color: var(--steel); }
    .hero-panel .mini { display: grid; gap: 10px; }
    .mini span {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-top: 10px;
      border-top: 1px solid var(--line);
      font-weight: 800;
    }

    section { padding: 82px 0; }
    .section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 28px; }
    h2 { font-size: clamp(44px, 7vw, 84px); color: var(--ink); }
    .lead { max-width: 560px; margin: 0; color: var(--steel); font-size: 17px; }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      background: var(--white);
    }

    .step-card {
      min-height: 300px;
      padding: 32px 24px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .number {
      color: var(--blue);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 64px;
      font-weight: 800;
      line-height: 0.8;
      margin-bottom: 20px;
      flex: 0 0 auto;
    }

    .step-card-body { display: flex; flex-direction: column; align-items: center; }
    .step-card h3, .price h3 { font-size: 30px; }
    .step-card h3 {
      line-height: 1.1;
      padding-top: 0.08em;
      overflow: visible;
    }
    .step-title-safe {
      line-height: 1.16;
      padding-top: 0.14em;
    }
    .step-card p, .price p, .trainer p { margin: 10px 0 0; color: var(--steel); }
    .store-links {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .store-logo-link {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      border-radius: 999px;
      line-height: 0;
      transition: transform 180ms ease, opacity 180ms ease;
    }
    .store-logo-link:hover {
      transform: translateY(-2px) scale(1.05);
      opacity: 0.86;
    }
    .store-logo-link:focus-visible {
      outline: 3px solid rgba(2, 214, 223, 0.46);
      outline-offset: 4px;
    }
    .store-logo-link svg {
      width: 34px;
      height: 34px;
      display: block;
      flex: 0 0 auto;
    }
    .store-logo-link--play svg {
      width: 36px;
      height: 36px;
    }

    .why-section {
      padding-top: 0;
      background: linear-gradient(180deg, var(--paper), var(--mist));
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .why-card {
      min-height: 430px;
      position: relative;
      display: grid;
      align-content: end;
      overflow: hidden;
      color: var(--white);
      isolation: isolate;
      background: var(--ink);
    }

    .why-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: var(--photo) center / cover;
      transition: transform 400ms ease;
    }

    .why-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.06), rgba(7, 9, 12, 0.86));
    }

    .why-card:hover::before { transform: scale(1.05); }

    .why-content {
      padding: 22px;
    }

    .why-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      color: var(--ink);
      background: var(--cyan);
    }

    .why-icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 2.2;
    }

    .why-card h3 {
      font-size: 33px;
    }

    .why-card p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
    }

    .location-band { background: var(--ink); color: var(--white); padding: 0; }
    .locations { display: grid; grid-template-columns: 1fr 1fr; }

    .location {
      min-height: 320px;
      padding: 42px;
      display: grid;
      align-content: end;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .location::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.72;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.16), rgba(7, 9, 12, 0.88)), var(--photo) center / cover;
      transition: transform 350ms ease;
    }

    .location:hover::before { transform: scale(1.04); }
    .location h2 { color: var(--white); font-size: clamp(44px, 6vw, 78px); }
    .location p { margin: 10px 0 22px; color: rgba(255, 255, 255, 0.74); }

    .exercise-section {
      background: linear-gradient(180deg, var(--mist), var(--paper));
      color: var(--ink);
    }
    .exercise-section .section-head { align-items: start; }
    .exercise-jump {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: -6px 0 34px;
    }
    .exercise-jump a {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 14px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(7, 9, 12, 0.1);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .exercise-jump a:hover {
      background: var(--cyan);
      border-color: transparent;
    }
    .exercise-groups {
      display: grid;
      gap: 28px;
    }
    .exercise-group {
      scroll-margin-top: 120px;
      padding-top: 8px;
    }
    .exercise-group-head {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 14px;
    }
    .exercise-group-head span {
      color: var(--cyan);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 22px;
      font-weight: 800;
    }
    .exercise-group-head h3 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 0.95;
    }
    .exercise-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .exercise-card {
      overflow: hidden;
      background: var(--white);
      border: 1px solid rgba(7, 9, 12, 0.1);
      box-shadow: 0 18px 44px rgba(7, 9, 12, 0.08);
    }
    .exercise-card video {
      width: 100%;
      aspect-ratio: 9 / 16;
      display: block;
      background: #05070a;
      object-fit: cover;
    }
    .exercise-card h4 {
      margin: 0;
      padding: 14px 16px 16px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.15;
    }
    body.dark-mode .exercise-section {
      background: linear-gradient(180deg, #0b1118, #07090c);
    }
    body.dark-mode .exercise-jump a,
    body.dark-mode .exercise-card {
      color: var(--white);
      background: #111820;
      border-color: rgba(255, 255, 255, 0.1);
    }
    body.dark-mode .exercise-card h4,
    body.dark-mode .exercise-group-head h3 {
      color: var(--white);
    }

    .branch-section { background: var(--paper); color: var(--ink); }
    .branch-section h2 { color: var(--ink); }
    .branch-section .lead { color: var(--steel); }
    .branch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .branch-grid {
      align-items: stretch;
    }
    .branch-card {
      grid-template-rows: auto auto 1fr auto auto;
    }
    .branch-card h3 {
      align-self: end;
    }
    .branch-card p {
      min-height: 54px;
      margin: 0;
      align-self: start;
    }
    .branch-actions {
      align-self: end;
    }
    .branch-card.is-coming-soon {
      border: 1px solid rgba(2, 214, 223, 0.22);
    }
    .branch-address {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 6px;
      padding: 7px 12px;
      font-style: normal;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.72);
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.18);
      letter-spacing: 0.02em;
    }
    .branch-address svg { flex: 0 0 auto; opacity: 0.72; }
    .branch-card {
      min-height: 430px;
      padding: 34px;
      display: grid;
      align-content: end;
      gap: 18px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      color: var(--white);
      background: var(--ink);
    }
    .branch-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.08), rgba(7, 9, 12, 0.9));
    }
    .branch-card > :not(.branch-photo) {
      position: relative;
      z-index: 2;
    }
    .branch-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 360ms ease;
    }
    .branch-card:hover .branch-photo { transform: scale(1.04); }
    .branch-card h3 { font-size: clamp(42px, 6vw, 76px); }
    .branch-card p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, 0.76); }
    .branch-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .branch-card.is-coming-soon .branch-photo {
      filter: saturate(0.7) brightness(0.72);
    }
    .branch-card.is-coming-soon::before {
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.18), rgba(7, 9, 12, 0.92));
    }
    .branch-status {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      color: var(--ink);
      background: var(--cyan);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }
    .btn-disabled,
    .btn-disabled:hover {
      color: rgba(255, 255, 255, 0.72);
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: none;
      transform: none;
      cursor: default;
      pointer-events: none;
    }
    .coming-soon-detail {
      padding: 56px 0 82px;
    }
    .coming-soon-card {
      max-width: 840px;
      padding: 34px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 12px 40px rgba(7, 9, 12, 0.05);
    }
    .coming-soon-card h3 {
      font-size: clamp(38px, 5vw, 64px);
      color: var(--ink);
    }
    .coming-soon-card p {
      max-width: 640px;
      margin: 14px 0 0;
      color: var(--steel);
      font-weight: 700;
    }
    body.dark-mode .coming-soon-card {
      background: #111820;
    }

    .gym-detail { padding: 0; background: var(--paper); }
    .gym-hero {
      min-height: 520px;
      padding: 120px 0 54px;
      display: grid;
      align-items: end;
      color: var(--white);
      background: var(--ink);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .gym-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(7, 9, 12, 0.9), rgba(7, 9, 12, 0.36));
    }
    .gym-hero-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate3d(0, calc(var(--detail-parallax, 0px) * 0.18), 0) scale(1.05);
      transform-origin: center;
      transition: transform 120ms linear;
    }
    .gym-hero .container {
      position: relative;
      z-index: 2;
    }
    .gym-hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 8px;
      z-index: 3;
      background: linear-gradient(90deg, var(--cyan), var(--blue), var(--lime));
    }
    .gym-hero h2 { max-width: 760px; color: var(--white); }
    .gym-hero p { max-width: 620px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 18px; }
    .gym-content { display: grid; gap: 58px; padding: 62px 0 82px; }
    .gym-intro {
      padding: 28px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--line);
    }
    .gym-intro p { margin: 0; color: var(--steel); font-weight: 700; }
    .gym-block-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: end;
      margin-bottom: 20px;
    }
    .gym-block-head h3 { font-size: clamp(36px, 5vw, 58px); }
    .gym-block-head p { max-width: 520px; margin: 0; color: var(--steel); }
    .gym-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .gym-gallery a {
      position: relative;
      display: block;
      min-height: 230px;
      overflow: hidden;
      color: inherit;
      background: var(--mist);
      cursor: zoom-in;
    }
    .gym-gallery a:first-child { grid-column: span 2; grid-row: span 2; }
    .gym-gallery img {
      width: 100%;
      min-height: 230px;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05) contrast(1.02);
      transition: transform 220ms ease, filter 220ms ease;
    }
    .gym-gallery a:hover img {
      transform: scale(1.035);
      filter: saturate(1.08) contrast(1.04) brightness(0.92);
    }
    .gym-gallery a::after {
      content: "Zväčšiť";
      position: absolute;
      right: 12px;
      bottom: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--white);
      background: rgba(7, 9, 12, 0.72);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 180ms ease, transform 180ms ease;
    }
    .gym-gallery a:hover::after,
    .gym-gallery a:focus-visible::after {
      opacity: 1;
      transform: translateY(0);
    }
    .gym-gallery a:focus-visible {
      outline: 3px solid rgba(2, 214, 223, 0.46);
      outline-offset: 4px;
    }
    .gym-contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 12px 40px rgba(7, 9, 12, 0.05);
    }
    .gym-contact-info { padding: 30px; }
    .gym-contact-info h3 { font-size: 42px; }
    .gym-contact-info .contact-list a,
    .gym-contact-info .contact-list span { color: var(--ink); }
    .gym-contact-info .contact-list small { color: var(--steel); }
    .gym-map iframe { width: 100%; min-height: 420px; height: 100%; border: 0; display: block; }

    .photo-lightbox {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 26px;
      background: rgba(7, 9, 12, 0.88);
      backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 260ms ease, visibility 260ms ease;
    }
    .photo-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
    .photo-lightbox__inner {
      position: relative;
      width: min(100%, 1180px);
      max-height: 92vh;
      display: grid;
      gap: 14px;
      transform: translateY(16px) scale(0.985);
      transition: transform 280ms var(--ease-smooth);
    }
    .photo-lightbox.is-open .photo-lightbox__inner { transform: translateY(0) scale(1); }
    .photo-lightbox__image-wrap {
      width: 100%;
      max-height: calc(92vh - 74px);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    }
    .photo-lightbox__image {
      max-width: 100%;
      max-height: calc(92vh - 74px);
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }
    .photo-lightbox__nav {
      position: absolute;
      top: 50%;
      z-index: 5;
      width: 54px;
      height: 54px;
      border: 2px solid rgba(255, 255, 255, 0.78);
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: transparent;
      background: rgba(7, 9, 12, 0.76);
      font-size: 0;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
      transition: transform 180ms ease, background 180ms ease;
      -webkit-appearance: none;
      appearance: none;
      padding: 0;
      opacity: 1;
      visibility: visible;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
    }
    .photo-lightbox__nav::before {
      content: "";
      width: 15px;
      height: 15px;
      display: block;
      border-top: 3px solid #fff;
      border-left: 3px solid #fff;
    }
    .photo-lightbox__nav:hover { background: rgba(7, 9, 12, 0.88); }
    .photo-lightbox__nav--prev { left: 16px; }
    .photo-lightbox__nav--prev::before { transform: rotate(-45deg); margin-left: 5px; }
    .photo-lightbox__nav--next { right: 16px; }
    .photo-lightbox__nav--next::before { transform: rotate(135deg); margin-right: 5px; }
    .photo-lightbox__nav[hidden] { display: none !important; }
    .photo-lightbox__bar {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
      color: var(--white);
    }
    .photo-lightbox__caption { display: none; }
    .photo-lightbox__actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .photo-lightbox__button,
    .photo-lightbox__full {
      min-height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      color: var(--white);
      background: rgba(255, 255, 255, 0.10);
      font-weight: 900;
      font-size: 13px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 180ms ease, background 180ms ease;
    }
    .photo-lightbox__button:hover,
    .photo-lightbox__full:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.16); }
    .photo-lightbox__close {
      width: 44px;
      padding: 0;
      font-size: 24px;
      line-height: 1;
    }

    @media (max-width: 640px) {
      .photo-lightbox {
        padding: 14px;
      }
      .photo-lightbox__inner {
        width: 100%;
        max-height: 96vh;
      }
      .photo-lightbox__image-wrap {
        max-height: calc(96vh - 74px);
      }
      .photo-lightbox__image {
        max-height: calc(96vh - 74px);
      }
      .photo-lightbox__nav {
        width: 48px;
        height: 48px;
        background: rgba(7, 9, 12, 0.86);
        border-color: rgba(255, 255, 255, 0.9);
      }
      .photo-lightbox__nav::before {
        width: 13px;
        height: 13px;
        border-top-width: 3px;
        border-left-width: 3px;
      }
      .photo-lightbox__nav--prev { left: max(10px, env(safe-area-inset-left)); }
      .photo-lightbox__nav--next { right: max(10px, env(safe-area-inset-right)); }
    }

    body.lightbox-open { overflow: hidden; }

    .prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

    .price {
      min-height: 360px;
      padding: 24px;
      background: var(--white);
      border: 1px solid var(--line);
      display: grid;
      align-content: space-between;
      gap: 24px;
      box-shadow: 0 12px 40px rgba(7, 9, 12, 0.05);
    }

    .price-title {
      margin: 0;
      color: var(--blue);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 46px;
      line-height: 0.95;
      font-weight: 800;
      text-transform: none;
      letter-spacing: 0;
    }
    .price-title span { color: inherit; }
    .price-badge {
      width: max-content;
      max-width: 100%;
      margin: 0 0 14px;
      padding: 8px 11px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      color: var(--white);
      background: rgba(0, 132, 255, 0.22);
      border: 1px solid var(--cyan);
      border-radius: 8px;
      box-shadow: 0 0 0 1px rgba(2, 214, 223, 0.12), 0 12px 28px rgba(2, 214, 223, 0.12);
      font-size: 12px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
    }
    .price-badge small {
      color: var(--cyan);
      font-size: 11px;
      line-height: 1;
      font-weight: 900;
      text-transform: none;
    }
    .price .amount {
      margin: 18px 0 8px;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 40px;
      line-height: 0.95;
      font-weight: 800;
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: wrap;
    }
    .price .old-amount {
      color: rgba(255, 255, 255, 0.42);
      font-size: 24px;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
    }
    .price p { font-weight: 800; }
    .price .meta {
      display: grid;
      gap: 11px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
      color: var(--steel);
      font-size: 14px;
      font-weight: 700;
    }
    .price .meta li {
      padding-top: 0;
      border-top: 0;
    }
    .price.featured {
      color: var(--white);
      background: var(--ink);
      border-color: var(--ink);
      transform: translateY(-10px);
    }
    .price.featured p,
    .price.featured .meta { color: rgba(255, 255, 255, 0.76); }
    .price.featured .amount,
    .price.featured .price-title { color: var(--cyan); }
    .price:not(.featured) .old-amount { color: rgba(7, 9, 12, 0.42); }
    .price.featured .btn-dark { color: var(--ink); background: var(--cyan); }
    .single-entry {
      margin-top: 18px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--white);
      background: linear-gradient(90deg, var(--ink), #143249);
    }
    .single-entry strong {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 36px;
      line-height: 1;
      color: var(--cyan);
    }
    .payment-strip {
      margin-top: 14px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 1px solid var(--line);
      background: var(--white);
    }
    .payment-strip p { margin: 0; color: var(--steel); font-weight: 700; }
    .payment-strip img { width: min(260px, 48vw); height: auto; }

    .trainer-list { display: grid; gap: 34px; }
    .trainer-wrap { height: 620px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: stretch; }
    .trainer-photo { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center center; }
    .trainer-photo--marek { object-position: center 30%; }
    .trainer { height: 100%; min-height: 0; padding: 42px; background: var(--ink); color: var(--white); display: grid; align-content: start; overflow: hidden; }
    .trainer h2 { color: var(--white); font-size: clamp(48px, 5vw, 64px); line-height: 0.95; }
    .trainer p { color: rgba(255, 255, 255, 0.76); font-size: 15px; line-height: 1.45; }
    .trainer ul { margin: 20px 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .trainer li { padding: 10px 12px; background: rgba(255, 255, 255, 0.08); font-size: 14px; line-height: 1.3; font-weight: 700; overflow-wrap: anywhere; }

    .gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
    .gallery img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
    .gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: span 2; grid-row: span 2; }

    .contact-section { padding-bottom: 0; background: var(--mist); }
    .contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; background: var(--white); box-shadow: var(--shadow); }
    .contact-card { padding: 42px; color: var(--white); background: var(--ink); }
    .contact-card h2 { color: var(--white); }
    .contact-list { display: grid; gap: 18px; margin-top: 28px; }
    .contact-list a, .contact-list span { display: block; color: rgba(255, 255, 255, 0.82); font-weight: 700; line-height: 1.45; }
    .contact-list small { display: block; margin-bottom: 5px; }
    .socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
    .socials a { padding: 10px 12px; color: var(--ink); background: var(--cyan); font-weight: 900; text-transform: uppercase; font-size: 13px; }

    .contact-form-wrap { padding: 42px; background: var(--white); }
    .contact-form-title { font-size: clamp(36px, 5vw, 58px); margin-bottom: 6px; color: var(--ink); }
    .contact-form-lead { margin: 0 0 28px; color: var(--steel); font-size: 15px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 7px; color: var(--steel); }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 13px 15px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      font-family: "Manrope", Arial, sans-serif;
      font-size: 15px;
      font-weight: 500;
      outline: none;
      transition: border-color 180ms ease;
      box-sizing: border-box;
      border-radius: 0;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--cyan); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .cf-status { margin: 12px 0 0; font-size: 14px; font-weight: 700; display: none; }
    .contact-form-wrap .btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
    body.dark-mode .contact-form-wrap { background: #111820; }
    body.dark-mode .contact-form-title { color: var(--ink); }
    body.dark-mode .form-group input,
    body.dark-mode .form-group textarea { background: #0b1118; color: var(--ink); border-color: rgba(255,255,255,0.14); }

    .faq-section { background: linear-gradient(180deg, var(--paper), var(--mist)); }
    .faq-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .faq-item {
      padding: 24px;
      color: var(--ink);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 12px 40px rgba(7, 9, 12, 0.05);
    }
    .faq-item h3 { font-size: 31px; color: var(--ink); }
    .faq-item p { margin: 10px 0 0; color: var(--steel); }
    body.dark-mode .faq-section { background: linear-gradient(180deg, #07090c, #0b1118); }
    body.dark-mode .faq-item { color: var(--ink); background: #111820; }
    body.dark-mode .faq-item h3 { color: var(--ink); }
    body.dark-mode .faq-item p { color: var(--steel); }

    .maps { display: grid; grid-template-columns: 1fr; gap: 0; }
    .map-panel { position: relative; min-height: 300px; }
    .map-panel iframe { width: 100%; min-height: 300px; height: 100%; border: 0; display: block; }
    .trainer-social {
      width: fit-content;
      max-width: 100%;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 14px;
      color: var(--white);
      font-weight: 900;
    }
    .trainer-social span { overflow-wrap: anywhere; }
    .trainer-social svg {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      color: var(--cyan);
    }
    footer { padding: 28px 0; color: rgba(255, 255, 255, 0.68); background: var(--ink); }
    .footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
    .legal { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; color: var(--white); }


    .payment-methods {
      padding: 34px 0 42px;
      color: #ffffff;
      background: #05070a;
    }
    .payment-methods-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 5vw, 46px);
      flex-wrap: wrap;
    }
    .payment-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      color: #ffffff;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.03em;
      opacity: 0.95;
    }
    .payment-mark--comgate { gap: 10px; font-size: 24px; letter-spacing: -0.05em; }
    .payment-mark--comgate .cg-box {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      color: #05070a;
      background: #ffffff;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: -0.08em;
    }
    .payment-mark--visa { font-size: 34px; font-style: italic; letter-spacing: -0.07em; }
    .payment-mark--card { gap: 0; }
    .payment-mark--card .mc-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: block;
    }
    .payment-mark--card .mc-circle:first-child { background: #eb001b; }
    .payment-mark--card .mc-circle:last-child { margin-left: -11px; background: #f79e1b; }
    .payment-pill {
      min-width: 58px;
      height: 30px;
      padding: 0 9px;
      border-radius: 8px;
      color: #05070a !important;
      background: #ffffff !important;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: -0.04em;
      gap: 4px;
    }
    .payment-pill small,
    .payment-pill svg {
      color: inherit;
      fill: currentColor;
    }
    .payment-pill small {
      font-size: 13px;
      font-weight: 900;
    }
    .payment-pill--apple svg {
      width: 13px;
      height: 16px;
      margin-right: 1px;
      flex: 0 0 auto;
    }
    .payment-pill--google small {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      color: #ffffff;
      background:
        conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
      font-size: 11px;
      line-height: 1;
      letter-spacing: -0.06em;
    }
    body.dark-mode .payment-methods { background: #05070a; }



    .reveal {
      opacity: 0;
      transform: translate3d(0, 28px, 0) scale(0.985);
      filter: blur(8px);
      transition:
        opacity 760ms var(--ease-smooth),
        transform 760ms var(--ease-smooth),
        filter 760ms var(--ease-smooth);
      will-change: opacity, transform, filter;
    }
    .reveal.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }

    .hero-logo.visible { animation: logoPop 900ms var(--ease-smooth) both; }
    .number { transition: transform 420ms var(--ease-smooth), color 240ms ease; }
    .step-card:hover .number { transform: translateY(-4px) scale(1.05); color: var(--cyan); }

    .card-tilt {
      transform-style: preserve-3d;
      transition: transform 280ms var(--ease-quick), box-shadow 280ms ease, border-color 240ms ease;
      will-change: transform;
    }
    body:not(.is-touch) .card-tilt:hover {
      transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
    }
    body:not(.is-touch) .step-card.card-tilt:hover,
    body:not(.is-touch) .price.card-tilt:hover,
    body:not(.is-touch) .exercise-card.card-tilt:hover,
    body:not(.is-touch) .faq-item.card-tilt:hover,
    body:not(.is-touch) .contact-card.card-tilt:hover,
    body:not(.is-touch) .contact-form-wrap.card-tilt:hover,
    body:not(.is-touch) .single-entry.card-tilt:hover,
    body:not(.is-touch) .gym-intro.card-tilt:hover,
    body:not(.is-touch) .gym-contact.card-tilt:hover {
      box-shadow: 0 28px 70px rgba(7, 9, 12, 0.13);
      border-color: rgba(2, 214, 223, 0.36);
    }
    body:not(.is-touch) .branch-card.card-tilt:hover,
    body:not(.is-touch) .why-card.card-tilt:hover {
      box-shadow: 0 34px 90px rgba(7, 9, 12, 0.30);
    }

    .store-logo-link { animation: storePulse 4.8s ease-in-out infinite; }
    .store-logo-link:nth-child(2) { animation-delay: 0.35s; }

    @keyframes logoPop {
      0% { opacity: 0; transform: translateY(22px) scale(0.92); filter: blur(8px) drop-shadow(0 24px 45px rgba(0, 0, 0, 0)); }
      70% { transform: translateY(-2px) scale(1.015); }
      100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) drop-shadow(0 24px 45px rgba(0, 0, 0, 0.32)); }
    }
    @keyframes heroKenBurns {
      from { background-position: center center; }
      to { background-position: 54% 48%; }
    }
    @keyframes gradientFlow {
      from { background-position: 0% 50%; }
      to { background-position: 220% 50%; }
    }
    @keyframes softFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes storePulse {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-2px) scale(1.04); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
      .reveal { opacity: 1; transform: none; filter: none; }
      .hero::before, .gym-hero-photo, .hero-panel { transform: none !important; }
    }


    @media (max-width: 768px), (hover: none) and (pointer: coarse) {
      html { scroll-behavior: auto; }
      .reveal,
      .reveal.visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        will-change: auto !important;
      }
      .hero::before,
      .hero::after,
      .hero-logo.visible,
      .hero-panel,
      .store-logo-link,
      .app-view,
      .gym-hero-photo {
        animation: none !important;
      }
      .hero::before,
      .gym-hero-photo,
      .hero-panel,
      .card-tilt,
      body:not(.is-touch) .card-tilt:hover {
        transform: none !important;
        will-change: auto !important;
      }
      .card-tilt,
      .number,
      .btn,
      .btn::after,
      .store-logo-link,
      .gym-gallery img,
      .gym-gallery a::after,
      .photo-lightbox__inner {
        transition: none !important;
      }
      .btn:hover,
      .store-logo-link:hover,
      .gym-gallery a:hover img {
        transform: none !important;
      }
      .photo-lightbox {
        backdrop-filter: none;
        transition: opacity 150ms ease, visibility 150ms ease;
      }
      .photo-lightbox__inner {
        gap: 10px;
      }
    }

    .app-view { display: none; animation: viewIn 380ms ease both; }
    .app-view.active { display: block; }
    @keyframes viewIn {
      from { opacity: 0; transform: translateY(18px) scale(0.992); filter: blur(6px); }
      to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    }

    .detail-nav {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(7, 9, 12, 0.88);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px);
    }
    body.dark-mode .detail-nav { background: rgba(5, 7, 10, 0.92); }
    .detail-nav .container {
      display: flex;
      align-items: center;
      gap: 18px;
      min-height: 56px;
    }
    .detail-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      color: rgba(255, 255, 255, 0.72);
      background: transparent;
      border: 0;
      font: inherit;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: color 160ms ease;
    }
    .detail-back:hover { color: var(--cyan); }
    .detail-back svg { flex: 0 0 auto; transition: transform 180ms ease; }
    .detail-back:hover svg { transform: translateX(-3px); }
    .detail-sep {
      width: 1px;
      height: 18px;
      background: rgba(255, 255, 255, 0.18);
    }
    .detail-crumb {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--cyan);
    }

    @media (max-width: 980px) {
      .site-header { inset: 10px 0 auto; }
      .nav { align-items: flex-start; flex-direction: column; }
      .brand img { width: 104px; height: 32px; }
      .menu { justify-content: flex-start; }
      .submenu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
      .nav-actions { margin-left: 0; }
      .hero-inner, .trainer-wrap, .contact-grid, .gym-intro, .gym-contact { grid-template-columns: 1fr; }
      .trainer-list { grid-auto-rows: auto; }
      .trainer-wrap { height: auto; }
      .trainer { height: auto; min-height: auto; overflow: visible; }
      .trainer-photo { height: auto; min-height: 0; max-height: 620px; object-fit: cover; }
      .contact-form-wrap { padding: 28px; }
      .hero-inner { padding-top: 150px; }
      .hero-panel { max-width: 420px; }
      .steps, .prices, .locations, .branch-grid { grid-template-columns: 1fr 1fr; }
      .why-grid, .exercise-grid, .faq-list { grid-template-columns: 1fr 1fr; }
      .gallery, .gym-gallery { grid-template-columns: repeat(2, 1fr); }
      .gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: span 1; grid-row: span 1; }
      .gym-gallery a:first-child { grid-column: span 1; grid-row: span 1; }
      .section-head { display: block; }
      .lead { margin-top: 12px; }
    }

    @media (max-width: 640px) {
      .container { width: calc(100% - 42px); }
      .site-header { inset: 8px 0 auto; }
      .nav {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding: 10px;
        gap: 10px;
      }
      .brand { grid-column: 1; }
      .mobile-menu-toggle {
        display: grid !important;
        position: relative;
        z-index: 45;
        border-color: rgba(2, 214, 223, 0.72);
        background: rgba(255, 255, 255, 0.14);
      }
      .mobile-menu-toggle { grid-column: 2; grid-row: 1; }
      .menu {
        grid-column: 1 / -1;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        align-items: stretch;
        justify-items: stretch;
        gap: 6px;
        padding-top: 6px;
      }
      .nav.menu-open .menu { display: grid; }
      .menu a,
      .menu-trigger {
        width: 100%;
        min-height: 42px;
        display: flex;
        justify-content: space-between;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.07);
      }
      .menu-group { display: grid; gap: 6px; }
      .submenu {
        display: none;
        gap: 6px;
        padding: 0 0 0 10px;
        background: transparent;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
      }
      .menu-group.open .submenu { display: grid; }
      .brand img { width: 116px; height: 36px; }
      .nav-actions {
        grid-column: 1 / -1;
        width: 100%;
        display: none;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        min-width: 0;
      }
      .nav.menu-open .nav-actions { display: grid; }
      .theme-toggle {
        justify-self: start;
        width: 58px;
        flex: 0 0 auto;
      }
      .theme-toggle__thumb {
        width: 24px;
        height: 24px;
      }
      .theme-toggle__icon {
        width: 14px;
        height: 14px;
      }
      .nav-cta {
        min-height: 44px;
        width: 100%;
        padding: 0 8px;
        font-size: 12px;
      }
      .hero { min-height: auto; }
      .hero-inner { padding-top: 76px; padding-bottom: 28px; gap: 10px; }
      .hero-inner > div:first-child {
        display: grid;
        justify-items: center;
        text-align: center;
      }
      .hero-logo {
        width: min(76vw, 220px);
        margin: 0 auto 0;
        justify-self: center;
      }
      @media (max-width: 390px) {
        .hero-inner { padding-top: 70px; gap: 8px; }
        .hero-logo { width: min(74vw, 205px); height: auto; }
      }
      h1 {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        font-size: 34px;
        line-height: 1;
        text-align: center;
        overflow-wrap: anywhere;
      }
      .hero-copy { max-width: 330px; margin-left: auto; margin-right: auto; font-size: 15px; text-align: center; }
      .actions { width: 100%; display: grid; grid-template-columns: 1fr; justify-items: stretch; }
      .btn { width: 100%; min-height: 50px; text-align: center; }
      .hero-branch-btn { min-height: 56px; }
      .hero-panel { padding: 18px; }
      .hero-panel strong { font-size: 25px; }
      .hero-panel p { max-width: 285px; }
      .mini span {
        display: grid;
        grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
        align-items: center;
        gap: 12px;
        min-width: 0;
        font-size: 16px;
        line-height: 1.18;
      }
      .mini small {
        display: block;
        min-width: 0;
        overflow-wrap: anywhere;
      }
      .mini small:first-child {
        font-size: 14px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        opacity: 0.78;
      }
      .mini small + small {
        margin-top: 0;
        color: var(--blue);
        font-size: 17px;
        font-weight: 900;
        text-align: right;
      }
      .mini-location {
        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: 6px;
      }
      .mini-location small + small {
        display: block;
        min-width: 0;
        color: var(--blue) !important;
        font-size: clamp(14px, 3.75vw, 17px);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.075em;
        text-align: right;
        white-space: nowrap;
        overflow: visible;
      }
      body.dark-mode .mini-location small + small {
        color: var(--blue) !important;
      }
      @media (max-width: 390px) {
        .mini-location {
          grid-template-columns: 46px minmax(0, 1fr);
          column-gap: 5px;
        }
        .mini-location small:first-child {
          font-size: 12px;
        }
        .mini-location small + small {
          font-size: clamp(13px, 3.55vw, 15px);
          letter-spacing: -0.085em;
        }
      }
      section {
        padding: 52px 0;
        position: relative;
        overflow: hidden;
      }
      #view-home > section:not(.hero)::before {
        content: "";
        position: absolute;
        top: 0;
        left: 21px;
        right: 21px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(2, 214, 223, 0.48), rgba(42, 128, 255, 0.32), transparent);
        pointer-events: none;
      }
      #view-home > section:not(.hero)::after {
        content: "";
        position: absolute;
        top: 8px;
        right: -56px;
        width: 150px;
        height: 150px;
        border-radius: 999px;
        background:
          radial-gradient(circle, rgba(2, 214, 223, 0.10), rgba(42, 128, 255, 0.06) 42%, transparent 72%);
        pointer-events: none;
        z-index: 0;
      }
      #view-home > section:nth-of-type(even):not(.hero)::after {
        right: auto;
        left: -56px;
      }
      #view-home > section > .container {
        position: relative;
        z-index: 1;
      }
      .why-section {
        padding-top: 34px;
      }
      #view-home > .why-section::before {
        top: 0;
      }
      body.dark-mode #view-home > section:not(.hero)::before {
        background: linear-gradient(90deg, transparent, rgba(2, 214, 223, 0.36), rgba(145, 229, 255, 0.18), transparent);
      }
      body.dark-mode #view-home > section:not(.hero)::after {
        background:
          radial-gradient(circle, rgba(2, 214, 223, 0.13), rgba(42, 128, 255, 0.08) 42%, transparent 72%);
      }
      .steps, .prices, .locations, .branch-grid, .why-grid, .exercise-grid, .trainer ul, .faq-list, .gym-gallery { grid-template-columns: 1fr; }
      .step-card { min-height: auto; padding: 24px 20px; }
      .exercise-jump { margin-bottom: 24px; }
      .exercise-group { scroll-margin-top: 112px; }
      .exercise-card h4 { padding: 13px 14px 15px; }
      .store-links { gap: 12px; margin-top: 12px; }
      .store-logo-link { width: 42px; height: 42px; }
      .store-logo-link svg { width: 32px; height: 32px; }
      .store-logo-link--play svg { width: 34px; height: 34px; }
      .number { font-size: 48px; margin-bottom: 14px; }
      .why-card { min-height: 360px; }
      .location, .trainer, .contact-card, .branch-card, .gym-contact-info, .gym-intro, .contact-form-wrap { padding: 28px; }
      .branch-grid { gap: 16px; }
      .branch-card {
        min-height: 390px;
        padding: 28px 22px;
        grid-template-rows: auto auto 1fr auto auto;
      }
      .branch-card h3 {
        font-size: 38px;
        line-height: 0.96;
      }
      .branch-card p {
        min-height: auto;
        font-size: 15px;
        line-height: 1.45;
      }
      .branch-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
      }
      .branch-address {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
      .gym-hero { min-height: 430px; padding: 150px 0 42px; }
      .trainer-photo { height: auto; min-height: 0; max-height: 620px; object-fit: cover; }
      .map-panel, .map-panel iframe, .gym-map iframe { min-height: 300px; }

      .why-section,
      .faq-section {
        background:
          linear-gradient(180deg, var(--paper), var(--mist));
      }
      .branch-section,
      .contact-section {
        background:
          linear-gradient(180deg, var(--mist), var(--paper));
      }
      body.dark-mode .why-section,
      body.dark-mode .faq-section {
        background:
          linear-gradient(180deg, #07090c, #0b1118);
      }
      body.dark-mode .branch-section,
      body.dark-mode .contact-section {
        background:
          linear-gradient(180deg, #0b1118, #07090c);
      }
      .gym-block-head {
        display: block;
        text-align: center;
        margin-bottom: 18px;
      }
      .gym-block-head h3 {
        width: fit-content;
        margin: 0 auto;
        padding-bottom: 9px;
        font-size: 46px;
        position: relative;
      }
      .gym-block-head h3::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 52px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--cyan), var(--blue));
        transform: translateX(-50%);
      }
      .gym-block-head p { display: none; }
      .prices { gap: 18px; }
      .price {
        min-height: auto;
        padding: 28px 22px;
        text-align: center;
        color: var(--white);
        background: #05070a;
        border-color: rgba(2, 214, 223, 0.18);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
      }
      .price.featured { transform: none; }
      .price-title {
        font-size: 38px;
        color: var(--blue);
      }
      .price .amount {
        margin: 18px 0 10px;
        font-size: 24px;
        color: var(--white);
        justify-content: center;
      }
      .price p {
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 16px;
      }
      .price .meta {
        gap: 18px;
        margin-top: 24px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 16px;
      }
      .price .btn-dark {
        width: min(100%, 216px);
        min-height: 52px;
        margin: 6px auto 0;
        color: var(--white);
        background: var(--blue);
        border-radius: 14px;
      }
      .payment-methods { padding: 26px 0 30px; }
      .payment-methods-inner {
        justify-content: flex-start;
        gap: 20px 24px;
      }
      .payment-mark--comgate { font-size: 20px; }
      .payment-mark--visa { font-size: 30px; }
      .single-entry { display: grid; }
      .payment-strip { display: grid; }
      .price.featured { transform: none; }
    }

    .billing-details {
      display: block;
    }

    .billing-details small {
      display: block;
      margin-bottom: 5px;
    }

    .billing-lines {
      display: grid;
      gap: 4px;
      width: max-content;
      max-width: 100%;
    }

    .contact-list .billing-line,
    .billing-line {
      display: grid !important;
      grid-template-columns: max-content max-content;
      column-gap: 0.35em;
      align-items: baseline;
      width: max-content;
      max-width: 100%;
      white-space: nowrap !important;
      word-break: keep-all !important;
      overflow-wrap: normal !important;
    }

    .contact-list .billing-line span,
    .billing-line span,
    .billing-label,
    .billing-value {
      display: inline !important;
      white-space: nowrap !important;
      word-break: keep-all !important;
      overflow-wrap: normal !important;
    }


@media (min-width: 769px) {
  html { scroll-behavior: auto; }
  .hero::before {
    transform: none !important;
    animation: none !important;
    background-position: center center !important;
  }
  .hero::after,
  .hero-logo.visible,
  .hero-panel,
  .store-logo-link,
  .app-view {
    animation: none !important;
  }
  .gym-hero-photo {
    transform: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .card-tilt,
  body:not(.is-touch) .card-tilt:hover {
    transform: none !important;
    will-change: auto !important;
  }
  .nav,
  .detail-nav,
  .photo-lightbox {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .nav {
    background: rgba(7, 9, 12, 0.86);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  }
  .detail-nav { background: rgba(7, 9, 12, 0.94); }
  .gym-gallery img,
  .gallery img {
    filter: none !important;
    transition: none !important;
  }
  .gym-gallery a:hover img {
    transform: none !important;
    filter: none !important;
  }
}
