:root {
  --athletic-bg: #f3f6f2;
  --athletic-surface: rgba(255, 255, 255, 0.95);
  --athletic-ink: #16251f;
  --athletic-muted: #657467;
  --athletic-accent: #235b49;
  --athletic-accent-strong: #13372b;
  --athletic-highlight: #d7ff72;
  --athletic-shadow: 0 28px 70px rgba(17, 28, 23, 0.08);
  --athletic-radius-xl: 36px;
  --athletic-radius-lg: 28px;
  --athletic-max: 1320px;
}

body.landing-template--athletic {
  background:
    radial-gradient(circle at top left, rgba(215, 255, 114, 0.2), transparent 34%),
    radial-gradient(circle at top right, rgba(35, 91, 73, 0.12), transparent 28%),
    linear-gradient(180deg, #f8faf7 0%, var(--athletic-bg) 100%);
  color: var(--athletic-ink);
}

.landing-template--athletic #wrapper {
  overflow: hidden;
}

.landing-template--athletic .landing-athletic-site-header {
  width: min(calc(100% - 32px), var(--athletic-max));
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 18px 0 0;
  background: linear-gradient(180deg, rgba(248, 250, 247, 0.96) 0%, rgba(248, 250, 247, 0.68) 72%, transparent 100%);
  backdrop-filter: blur(14px);
}

.landing-template--athletic .landing-athletic-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: 28px;
  background: rgba(11, 19, 15, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(11, 19, 15, 0.16);
}

.landing-template--athletic .landing-athletic-brand {
  display: inline-grid;
  grid-template-columns: 56px minmax(0, auto);
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.landing-template--athletic .landing-athletic-brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: block;
  flex: 0 0 56px;
  overflow: hidden;
}

.landing-template--athletic .landing-athletic-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-template--athletic .landing-athletic-brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.landing-template--athletic .landing-athletic-brand__copy strong {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.landing-template--athletic .landing-athletic-brand__copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-template--athletic .landing-athletic-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.landing-template--athletic .landing-athletic-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.landing-template--athletic .landing-athletic-nav a:hover,
.landing-template--athletic .landing-athletic-nav a.is-active {
  background: rgba(215, 255, 114, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.landing-template--athletic .landing-athletic-account {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.landing-template--athletic .landing-athletic-account > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #d7ff72;
  color: #163024;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(215, 255, 114, 0.18);
}

.landing-template--athletic .landing-athletic-account__user {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.landing-template--athletic .landing-athletic-account__user img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.landing-template--athletic .landing-athletic-account__user strong,
.landing-template--athletic .landing-athletic-account__user a {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}

.landing-template--athletic .landing-athletic-account__user a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.landing-template--athletic .landing-athletic-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-template--athletic .landing-athletic-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  border-radius: 999px;
}

.landing-template--athletic .landing-modern-intro,
.landing-template--athletic .landing-modern-intro--b {
  display: none !important;
}

.landing-template--athletic .headErr {
  background: transparent;
}

.landing-template--athletic .headErr .container-fluid,
.landing-template--athletic .container,
.landing-template--athletic .container-fluid {
  width: min(calc(100% - 32px), var(--athletic-max));
}

.landing-template--athletic .headErr .container-fluid {
  margin: 0 auto;
  padding: 18px 24px;
}

.landing-template--athletic .navbar-default {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(18, 33, 27, 0.08);
  backdrop-filter: blur(18px);
}

.landing-template--athletic .navbar-brand img {
  max-height: 56px;
  width: auto;
}

.landing-template--athletic .navbar-default .navbar-nav > li > a {
  color: var(--athletic-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 18px 18px;
}

.landing-template--athletic .navbar-default .navbar-nav > li > a:hover,
.landing-template--athletic .navbar-default .navbar-nav > li.open > a {
  color: var(--athletic-accent);
  background: transparent;
}

.landing-template--athletic .header {
  padding-top: 28px;
}

.landing-template--athletic .slider-home,
.landing-template--athletic .carousel,
.landing-template--athletic .carousel-inner,
.landing-template--athletic .carousel-inner .item {
  border-radius: 42px;
  overflow: hidden;
}

.landing-template--athletic .slider-home,
.landing-template--athletic .carousel {
  box-shadow: var(--athletic-shadow);
  background: #12211a;
}

.landing-template--athletic .carousel-inner .item {
  min-height: 620px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
}

.landing-template--athletic .carousel-inner .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(114deg, rgba(8, 20, 15, 0.82) 0%, rgba(8, 20, 15, 0.3) 54%, rgba(8, 20, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(215, 255, 114, 0.08), transparent 34%);
  z-index: 0;
}

.landing-template--athletic .caption,
.landing-template--athletic .carousel-caption,
.landing-template--athletic .content-info-home {
  position: relative;
  z-index: 1;
}

.landing-template--athletic .content-info-home {
  width: min(560px, 100%);
  padding: 72px 56px 72px 64px;
  text-align: left;
}

.landing-template--athletic .content-info-home h1,
.landing-template--athletic .content-info-home h2,
.landing-template--athletic .content-info-home h3 {
  color: #ffffff;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.landing-template--athletic .content-info-home p,
.landing-template--athletic .content-info-home .text-home,
.landing-template--athletic .content-info-home .description {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
  margin-bottom: 28px;
}

.landing-template--athletic .content-info-home .btn,
.landing-template--athletic .content-info-home a.btn,
.landing-template--athletic .content-info-home .btn-primary {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--athletic-highlight);
  color: var(--athletic-accent-strong);
  border: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(215, 255, 114, 0.2);
}

.landing-template--athletic .listing-links-container,
.landing-template--athletic .listing-about,
.landing-template--athletic #div-about-us,
.landing-template--athletic #div-pricing,
.landing-template--athletic #div-classes,
.landing-template--athletic #div-places,
.landing-template--athletic #div-about-team {
  background: var(--athletic-surface);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--athletic-radius-xl);
  box-shadow: var(--athletic-shadow);
}

.landing-template--athletic .listing-links-container,
.landing-template--athletic .listing-about {
  padding: 32px 36px;
}

.landing-template--athletic .main-search-container {
  min-height: 680px;
  margin-bottom: 42px;
  border-radius: 42px;
  overflow: hidden;
}

.landing-template--athletic .main-search-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 15, 0.18) 0%, rgba(8, 20, 15, 0.36) 100%),
    radial-gradient(circle at 20% 22%, rgba(215, 255, 114, 0.08), transparent 30%);
}

.landing-template--athletic .main-search-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 54px 0;
}

.landing-template--athletic .main-search-input {
  width: min(1120px, 100%) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-template--athletic .main-search-input-headline {
  text-align: left;
}

.landing-template--athletic .main-search-input-headline h2,
.landing-template--athletic .main-search-input-headline h4 {
  display: none;
}

.landing-template--athletic .landing-modern-hero-primary-actions {
  display: none;
}

.landing-template--athletic .landing-modern-hero-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  gap: 14px;
  left: 48px;
  bottom: 48px;
  top: auto;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 58px rgba(18, 33, 27, 0.22);
  backdrop-filter: blur(18px);
  max-width: calc(100% - 96px);
}

.landing-template--athletic .landing-modern-hero-actions .button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--athletic-highlight);
  color: var(--athletic-accent-strong) !important;
  border: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(215, 255, 114, 0.18);
}

.landing-template--athletic .landing-modern-hero-actions .button + .button {
  background: rgba(9, 23, 18, 0.82);
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(19, 55, 43, 0.28);
}

.landing-template--athletic .listing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.landing-template--athletic .listing-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(22, 37, 31, 0.05);
  color: var(--athletic-ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.landing-template--athletic .listing-links a.active,
.landing-template--athletic .listing-links a:hover {
  background: var(--athletic-accent-strong);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(19, 55, 43, 0.18);
}

.landing-template--athletic .title-section,
.landing-template--athletic h2,
.landing-template--athletic h3 {
  color: var(--athletic-ink);
  letter-spacing: -0.03em;
}

.landing-template--athletic .title-section {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
}

.landing-template--athletic p,
.landing-template--athletic .description,
.landing-template--athletic .subtitle {
  color: var(--athletic-muted);
  line-height: 1.7;
}

.landing-template--athletic .listing-about .social,
.landing-template--athletic .share-links,
.landing-template--athletic .social-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.landing-template--athletic .listing-about .social a,
.landing-template--athletic .share-links a,
.landing-template--athletic .social-networks a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(22, 37, 31, 0.05);
  color: var(--athletic-ink);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(22, 37, 31, 0.08);
  white-space: nowrap;
}

.landing-template--athletic #listing-pricing-list ul,
.landing-template--athletic #listing-offices ul,
.landing-template--athletic #listing-classes ul,
.landing-template--athletic #listing-team ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.landing-template--athletic #listing-pricing-list ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-template--athletic #listing-pricing-list ul li,
.landing-template--athletic #listing-offices ul li,
.landing-template--athletic #listing-team ul li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 243, 0.95));
  border: 1px solid rgba(22, 37, 31, 0.08);
  border-radius: 24px;
  padding: 24px 24px;
  box-shadow: 0 20px 44px rgba(22, 37, 31, 0.06);
}

.landing-template--athletic #listing-pricing-list ul li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 18px;
}

.landing-template--athletic #listing-pricing-list ul li p:first-child,
.landing-template--athletic #listing-pricing-list ul li .title,
.landing-template--athletic #listing-pricing-list ul li .name {
  color: var(--athletic-ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.landing-template--athletic #listing-pricing-list ul li span,
.landing-template--athletic #listing-pricing-list ul li .price {
  color: var(--athletic-accent-strong);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: right;
}

.landing-template--athletic #listing-offices ul li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px 24px;
  align-items: center;
}

.landing-template--athletic #listing-offices ul li p:first-child,
.landing-template--athletic #listing-offices ul li .title,
.landing-template--athletic #listing-offices ul li .name {
  color: var(--athletic-ink);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: anywhere;
}

.landing-template--athletic #listing-offices ul li p:nth-child(2),
.landing-template--athletic #listing-offices ul li .address,
.landing-template--athletic #listing-offices ul li small {
  color: var(--athletic-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 6px 0 0;
  max-width: 42ch;
  overflow-wrap: anywhere;
}

.landing-template--athletic #listing-offices ul li a,
.landing-template--athletic #listing-team ul li a,
.landing-template--athletic #listing-pricing-list ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 148px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--athletic-accent-strong);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(19, 55, 43, 0.16);
  white-space: nowrap;
}

.landing-template--athletic #listing-team ul li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.landing-template--athletic #listing-team ul li img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
}

.landing-template--athletic #listing-team ul li h5,
.landing-template--athletic #listing-team ul li .name {
  margin: 0 0 6px;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.08;
  font-weight: 800;
}

.landing-template--athletic #listing-team ul li p,
.landing-template--athletic #listing-team ul li small {
  margin: 0;
  color: var(--athletic-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.landing-template--athletic #footer {
  margin-top: 48px;
  padding: 0 0 28px;
  background: transparent;
}

.landing-template--athletic #footer .container,
.landing-template--athletic #footer .container-fluid {
  width: min(calc(100% - 32px), 1120px);
}

.landing-template--athletic #footer h3,
.landing-template--athletic #footer h4 {
  margin: 0 0 14px;
  color: var(--athletic-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-template--athletic #footer p,
.landing-template--athletic #footer a,
.landing-template--athletic #footer .copyrights {
  color: var(--athletic-muted);
}

.landing-template--athletic .landing-modern-cta--athletic {
  margin: 52px 0 28px;
}

.landing-template--athletic .landing-modern-cta--athletic .landing-modern-shell {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 238, 0.94));
  border: 1px solid rgba(22, 37, 31, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 58px rgba(18, 33, 27, 0.08);
}

.landing-template--athletic .landing-modern-cta--athletic .landing-modern-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--athletic-highlight);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-modern-cta--athletic h3 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-modern-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.landing-template--athletic .landing-modern-cta__actions .button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.landing-template--athletic .landing-modern-cta__actions .button.border {
  background: transparent;
  border: 1px solid rgba(22, 37, 31, 0.16);
  color: var(--athletic-ink);
}

.landing-template--athletic .landing-athletic-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: start;
  padding: 20px 0 22px;
}

.landing-template--athletic .landing-athletic-footer-brand {
  display: grid;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-footer-brand .footer-logo {
  width: auto;
  max-width: 88px;
  max-height: 88px;
  object-fit: contain;
}

.landing-template--athletic .landing-athletic-footer-brand p {
  margin: 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.6;
}

.landing-template--athletic .landing-athletic-footer-contact {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 37, 31, 0.08);
  border-radius: 28px;
}

.landing-template--athletic .landing-athletic-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.landing-template--athletic .landing-athletic-contact-list li {
  display: grid;
  gap: 4px;
}

.landing-template--athletic .landing-athletic-contact-list span {
  color: var(--athletic-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-contact-list strong,
.landing-template--athletic .landing-athletic-contact-list a {
  color: var(--athletic-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.landing-template--athletic .landing-athletic-footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(22, 37, 31, 0.08);
}

.landing-template--athletic #footer .copyrights {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1199px) {
  .landing-template--athletic #listing-pricing-list ul {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic #listing-offices ul li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .landing-template--athletic .landing-athletic-site-header {
    padding-top: 12px;
  }

  .landing-template--athletic .landing-athletic-topbar {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .landing-template--athletic .landing-athletic-brand {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .landing-template--athletic .landing-athletic-brand__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .landing-template--athletic .landing-athletic-brand__copy strong {
    font-size: 16px;
  }

  .landing-template--athletic .landing-athletic-brand__copy span {
    font-size: 11px;
  }

  .landing-template--athletic .landing-athletic-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .landing-template--athletic .landing-athletic-nav,
  .landing-template--athletic .landing-athletic-account {
    display: none;
  }

  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-topbar {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-nav,
  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-account {
    display: flex;
  }

  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-nav a,
  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-account > a {
    width: 100%;
  }

  .landing-template--athletic.landing-athletic-nav-open .landing-athletic-account {
    justify-content: stretch;
  }

  .landing-template--athletic .headErr .container-fluid,
  .landing-template--athletic .container,
  .landing-template--athletic .container-fluid {
    width: calc(100% - 20px);
  }

  .landing-template--athletic .header {
    padding-top: 14px;
  }

  .landing-template--athletic .main-search-container {
    min-height: 560px;

    margin-bottom: 28px;
  }

  .landing-template--athletic .main-search-inner {
    padding: 20px 0;
  }

  .landing-template--athletic .main-search-input {
    width: min(100%, 420px) !important;
  }

  .landing-template--athletic .content-info-home {
    padding: 42px 22px 46px;
  }

  .landing-template--athletic .content-info-home h1,
  .landing-template--athletic .content-info-home h2,
  .landing-template--athletic .content-info-home h3 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .landing-template--athletic .listing-links-container,
  .landing-template--athletic .listing-about,
  .landing-template--athletic #div-about-us,
  .landing-template--athletic #div-pricing,
  .landing-template--athletic #div-classes,
  .landing-template--athletic #div-places,
  .landing-template--athletic #div-about-team {
    border-radius: 24px;
  }

  .landing-template--athletic .listing-links-container,
  .landing-template--athletic .listing-about {
    padding: 24px 18px;
  }

  .landing-template--athletic .landing-modern-hero-actions {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border-radius: 22px;
    gap: 10px;
  }

  .landing-template--athletic .listing-links {
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .landing-template--athletic .listing-links::-webkit-scrollbar {
    display: none;
  }

  .landing-template--athletic .listing-links a {
    min-height: 50px;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 14px;
  }

  .landing-template--athletic #listing-pricing-list ul li,
  .landing-template--athletic #listing-offices ul li,
  .landing-template--athletic #listing-team ul li {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .landing-template--athletic #listing-pricing-list ul li {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .landing-template--athletic #listing-pricing-list ul li p:first-child,
  .landing-template--athletic #listing-pricing-list ul li .title,
  .landing-template--athletic #listing-pricing-list ul li .name,
  .landing-template--athletic #listing-offices ul li p:first-child,
  .landing-template--athletic #listing-offices ul li .title,
  .landing-template--athletic #listing-offices ul li .name {
    max-width: 100%;
    font-size: 24px;
  }

  .landing-template--athletic #listing-pricing-list ul li span,
  .landing-template--athletic #listing-pricing-list ul li .price {
    font-size: 24px;
    white-space: normal;
    text-align: left;
  }

  .landing-template--athletic #listing-offices ul li a,
  .landing-template--athletic #listing-team ul li a,
  .landing-template--athletic #listing-pricing-list ul li a,
  .landing-template--athletic .content-info-home .btn,
  .landing-template--athletic .content-info-home a.btn,
  .landing-template--athletic .content-info-home .btn-primary,
  .landing-template--athletic .landing-modern-hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .landing-template--athletic #listing-team ul li {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic #listing-team ul li img {
    width: 100%;
    height: 240px;
  }

  .landing-template--athletic .landing-modern-cta--athletic .landing-modern-shell,
  .landing-template--athletic .landing-athletic-footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic .landing-modern-cta--athletic .landing-modern-shell {
    width: calc(100% - 20px);
    padding: 24px 20px;
  }

  .landing-template--athletic .landing-modern-cta--athletic h3 {
    max-width: none;
    font-size: clamp(28px, 10vw, 42px);
  }

  .landing-template--athletic .landing-modern-cta__actions {
    justify-content: stretch;
  }

  .landing-template--athletic .landing-modern-cta__actions .button {
    width: 100%;
    justify-content: center;
  }

.landing-template--athletic .landing-athletic-footer-contact {
    padding: 20px;
  }
}

.landing-template--athletic .landing-athletic-shell {
  /*width: min(calc(100% - 32px), var(--athletic-max));
  margin: 0 auto;*/
}

.landing-template--athletic .landing-athletic-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--athletic-highlight);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-section {
  margin: 0 0 34px;
}

.landing-template--athletic .landing-athletic-section-card {
  background: var(--athletic-surface);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--athletic-radius-xl);
  box-shadow: var(--athletic-shadow);
  padding: 30px;
}

.landing-template--athletic .landing-athletic-section__header {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.landing-template--athletic .landing-athletic-section__header h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-hero {
  position: relative;
  width: min(calc(100% - 32px), var(--athletic-max));
  min-height: 720px;
  margin: 22px auto 36px;
  border-radius: 42px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  box-shadow: var(--athletic-shadow);
}

.landing-template--athletic .landing-athletic-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 13, 10, 0.9) 0%, rgba(4, 13, 10, 0.38) 55%, rgba(4, 13, 10, 0.16) 100%),
    radial-gradient(circle at 15% 22%, rgba(215, 255, 114, 0.18), transparent 34%);
}

.landing-template--athletic .landing-athletic-hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 32px;
  padding: 48px;
}

.landing-template--athletic .landing-athletic-hero__text {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.landing-template--athletic .landing-athletic-hero__text h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-hero__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.66;
}

.landing-template--athletic .landing-athletic-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-template--athletic .landing-athletic-hero__stats span {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.landing-template--athletic .landing-athletic-hero__cta-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(10, 20, 15, 0.22);
}

.landing-template--athletic .landing-athletic-hero__cta-copy {
  display: grid;
  gap: 10px;
}

.landing-template--athletic .landing-athletic-hero__cta-copy strong {
  color: var(--athletic-ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.landing-template--athletic .landing-athletic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-hero__actions .button,
.landing-template--athletic .landing-athletic-plan-card .button,
.landing-template--athletic .landing-athletic-office-card .button,
.landing-template--athletic .landing-athletic-team-card .button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.landing-template--athletic .landing-athletic-hero__actions .button,
.landing-template--athletic .landing-athletic-plan-card .button {
  background: var(--athletic-highlight);
  color: var(--athletic-accent-strong);
  box-shadow: 0 16px 36px rgba(215, 255, 114, 0.22);
}

.landing-template--athletic .landing-athletic-hero__actions .button.border,
.landing-template--athletic .landing-athletic-office-card .button,
.landing-template--athletic .landing-athletic-team-card .button {
  background: transparent;
  color: var(--athletic-ink);
  border: 1px solid rgba(22, 37, 31, 0.16);
}

.landing-template--athletic .landing-athletic-quicknav-wrap {
  margin-bottom: 28px;
}

.landing-template--athletic .landing-athletic-quicknav {
  padding-top: 20px;
  padding-bottom: 20px;
}

.landing-template--athletic .landing-athletic-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  /*max-width: 1240px;
  margin: 0 auto;*/
}

.landing-template--athletic .landing-athletic-overview__main {
  display: grid;
  gap: 18px;
}

.landing-template--athletic .landing-athletic-overview__main h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-overview__main p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.landing-template--athletic .landing-athletic-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.landing-template--athletic .landing-athletic-share a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: rgba(22, 37, 31, 0.06);
  color: var(--athletic-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.landing-template--athletic .landing-athletic-overview__meta {
  display: grid;
  gap: 14px;
}

.landing-template--athletic .landing-athletic-meta-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(22, 37, 31, 0.03);
  border: 1px solid rgba(22, 37, 31, 0.07);
}

.landing-template--athletic .landing-athletic-meta-card__label {
  color: var(--athletic-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-meta-card strong,
.landing-template--athletic .landing-athletic-meta-card a {
  color: var(--athletic-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.landing-template--athletic .landing-athletic-meta-card--html > *:last-child {
  margin-bottom: 0;
}

.landing-template--athletic .landing-athletic-gallery-grid,
.landing-template--athletic .landing-athletic-class-grid,
.landing-template--athletic .landing-athletic-team-grid,
.landing-template--athletic .landing-athletic-office-grid,
.landing-template--athletic .landing-athletic-plan-grid,
.landing-template--athletic .landing-athletic-review-grid {
  display: grid;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.landing-template--athletic .landing-athletic-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-template--athletic .landing-athletic-gallery-card {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 26px;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.landing-template--athletic .landing-athletic-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 15, 0.05), rgba(8, 20, 15, 0.62));
}

.landing-template--athletic .landing-athletic-gallery-card span {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.landing-template--athletic .landing-athletic-gallery-card.is-featured {
  grid-column: span 2;
  min-height: 360px;
}

.landing-template--athletic .landing-athletic-class-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-template--athletic .landing-athletic-class-card,
.landing-template--athletic .landing-athletic-team-card,
.landing-template--athletic .landing-athletic-office-card,
.landing-template--athletic .landing-athletic-plan-card,
.landing-template--athletic .landing-athletic-review-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 243, 0.95));
  border: 1px solid rgba(22, 37, 31, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(22, 37, 31, 0.06);
}

.landing-template--athletic .landing-athletic-class-card {
  overflow: hidden;
}

.landing-template--athletic .landing-athletic-class-card__media {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(35, 91, 73, 0.18), rgba(215, 255, 114, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-template--athletic .landing-athletic-class-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.landing-template--athletic .landing-athletic-class-card__media.is-empty span,
.landing-template--athletic .landing-athletic-team-card__media.is-empty span {
  color: var(--athletic-accent-strong);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.landing-template--athletic .landing-athletic-class-card__content,
.landing-template--athletic .landing-athletic-team-card__content,
.landing-template--athletic .landing-athletic-plan-card,
.landing-template--athletic .landing-athletic-review-card {
  padding: 22px;
}

.landing-template--athletic .landing-athletic-class-card__tag {
  color: var(--athletic-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-class-card h3,
.landing-template--athletic .landing-athletic-team-card h3,
.landing-template--athletic .landing-athletic-office-card h3,
.landing-template--athletic .landing-athletic-plan-card h3 {
  margin: 0;
  color: var(--athletic-ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-class-card__content {
  display: grid;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-class-card__content p,
.landing-template--athletic .landing-athletic-team-card__content p,
.landing-template--athletic .landing-athletic-office-card p,
.landing-template--athletic .landing-athletic-plan-card p,
.landing-template--athletic .landing-athletic-review-card p {
  margin: 0;
  color: var(--athletic-muted);
  font-size: 16px;
  line-height: 1.65;
}

.landing-template--athletic .landing-athletic-class-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.landing-template--athletic .landing-athletic-class-card__meta span {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(22, 37, 31, 0.06);
  color: var(--athletic-ink);
  font-size: 13px;
  font-weight: 800;
}

.landing-template--athletic .landing-athletic-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-template--athletic .landing-athletic-team-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.landing-template--athletic .landing-athletic-team-card__media {
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(35, 91, 73, 0.16), rgba(215, 255, 114, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-template--athletic .landing-athletic-team-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.landing-template--athletic .landing-athletic-team-card__content {
  display: grid;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-office-grid {
  grid-template-columns: 1fr;
}

.landing-template--athletic .landing-athletic-office-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.landing-template--athletic .landing-athletic-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-template--athletic .landing-athletic-plan-card {
  display: grid;
  gap: 14px;
}

.landing-template--athletic .landing-athletic-plan-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.landing-template--athletic .landing-athletic-plan-card__head span {
  color: var(--athletic-accent-strong);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.landing-template--athletic .landing-athletic-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-template--athletic .landing-athletic-review-card {
  display: grid;
  gap: 10px;
}

.landing-template--athletic .landing-athletic-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-review-card__top strong {
  color: var(--athletic-ink);
  font-size: 18px;
  font-weight: 800;
}

.landing-template--athletic .landing-athletic-review-card__top span {
  color: var(--athletic-highlight);
  font-size: 14px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.landing-template--athletic .landing-athletic-review-card small {
  color: var(--athletic-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .landing-template--athletic .landing-athletic-class-grid,
  .landing-template--athletic .landing-athletic-team-grid,
  .landing-template--athletic .landing-athletic-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-template--athletic .landing-athletic-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .landing-template--athletic .landing-athletic-hero__content,
  .landing-template--athletic .landing-athletic-overview,
  .landing-template--athletic .landing-athletic-footer-grid,
  .landing-template--athletic .landing-athletic-office-card,
  .landing-template--athletic .landing-athletic-hero__actions,
  .landing-template--athletic .landing-athletic-plan-card__head,
  .landing-template--athletic .landing-athletic-hero__stats,
  .landing-template--athletic .landing-athletic-hero__cta-card {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic .landing-athletic-hero {
    min-height: 620px;
    border-radius: 30px;
    margin-bottom: 28px;
  }

  .landing-template--athletic .landing-athletic-hero__content {
    padding: 34px 18px 24px;
    gap: 24px;
  }

  .landing-template--athletic .landing-athletic-hero__text h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .landing-template--athletic .landing-athletic-hero__cta-card {
    padding: 18px;
  }

  .landing-template--athletic .landing-athletic-hero__actions .button,
  .landing-template--athletic .landing-athletic-plan-card .button,
  .landing-template--athletic .landing-athletic-office-card .button,
  .landing-template--athletic .landing-athletic-team-card .button {
    width: 100%;
    justify-content: center;
  }

  .landing-template--athletic .landing-athletic-section-card {
    padding: 22px 18px;
  }

  .landing-template--athletic .landing-athletic-gallery-grid,
  .landing-template--athletic .landing-athletic-class-grid,
  .landing-template--athletic .landing-athletic-team-grid,
  .landing-template--athletic .landing-athletic-office-grid,
  .landing-template--athletic .landing-athletic-plan-grid,
  .landing-template--athletic .landing-athletic-review-grid {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic .landing-athletic-gallery-card.is-featured {
    grid-column: span 1;
    min-height: 280px;
  }
}

/* Athletic variant hard overrides */
.landing-template--athletic .headErr,
.landing-template--athletic .header,
.landing-template--athletic .slider-home,
.landing-template--athletic .carousel,
.landing-template--athletic .carousel-inner,
.landing-template--athletic .carousel-caption,
.landing-template--athletic .main-search-container,
.landing-template--athletic .main-search-inner,
.landing-template--athletic .main-search-input,
.landing-template--athletic .main-search-input-headline,
.landing-template--athletic .content-info-home,
.landing-template--athletic .landing-modern-hero-primary-actions,
.landing-template--athletic .landing-modern-hero-actions {
  display: none !important;
}

.landing-template--athletic .landing-athletic-brand {
  grid-template-columns: 64px minmax(0, auto);
}

.landing-template--athletic .landing-athletic-brand__logo {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.landing-template--athletic .landing-athletic-hero {
  margin-top: 28px;
  min-height: 760px;
}

.landing-template--athletic .landing-athletic-hero__overlay {
  background:
    linear-gradient(180deg, rgba(5, 14, 11, 0.08) 0%, rgba(5, 14, 11, 0.34) 35%, rgba(5, 14, 11, 0.76) 100%),
    linear-gradient(110deg, rgba(215, 255, 114, 0.08) 0%, rgba(215, 255, 114, 0) 48%);
}

.landing-template--athletic .landing-athletic-hero__content {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 20px;
  padding: 140px 56px 56px;
}

.landing-template--athletic .landing-athletic-hero__text {
  max-width: 760px;
}

.landing-template--athletic .landing-athletic-hero__text h1 {
  max-width: 9ch;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.88;
}

.landing-template--athletic .landing-athletic-hero__text p {
  max-width: 34ch;
}

.landing-template--athletic .landing-athletic-hero__cta-card {
  display: none !important;
}

.landing-template--athletic .landing-athletic-hero__actions {
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  width: fit-content;
  max-width: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(10, 20, 15, 0.18);
}

.landing-template--athletic .landing-athletic-hero__actions .button {
  min-width: 180px;
}

.landing-template--athletic .landing-athletic-hero__actions .button.border {
  background: rgba(12, 26, 20, 0.76);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.landing-template--athletic .landing-athletic-section-card {
  padding: 34px;
}

.landing-template--athletic .landing-athletic-action-layout {
  display: grid;
  gap: 24px;
}

.landing-template--athletic .landing-athletic-action-body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.landing-template--athletic .landing-athletic-calendar-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.landing-template--athletic .landing-athletic-calendar-head {
  display: grid;
  gap: 10px;
}

.landing-template--athletic .landing-athletic-calendar-head h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-calendar-head p {
  margin: 0;
  color: var(--athletic-muted);
  line-height: 1.7;
  max-width: 60ch;
}

.landing-template--athletic .landing-athletic-calendar-week-grid {
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 240, 0.96));
  border: 1px solid rgba(22, 37, 31, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.landing-template--athletic .landing-athletic-calendar-topbar {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.landing-template--athletic .landing-athletic-calendar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-calendar-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-template--athletic .landing-athletic-calendar-filters .filter {
  display: grid;
  gap: 8px;
}

.landing-template--athletic .landing-athletic-calendar-filters label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--athletic-muted);
  font-weight: 800;
}

.landing-template--athletic .landing-athletic-calendar-filters select {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(22, 37, 31, 0.12);
  background: #fff;
  color: var(--athletic-ink);
}

.landing-template--athletic .landing-athletic-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(148px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  width: 100%;
}

.landing-template--athletic .landing-athletic-day-column {
  min-width: 148px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.landing-template--athletic .landing-athletic-day-header {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(22, 37, 31, 0.05);
  border: 1px solid rgba(22, 37, 31, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  color: var(--athletic-ink);
}

.landing-template--athletic .landing-athletic-class-slot {
  display: grid;
  gap: 6px;
  padding: 14px;
  min-height: 118px;
  border-radius: 18px;
  border: 1px solid rgba(194, 141, 54, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(253, 247, 235, 0.96));
  box-shadow: 0 16px 32px rgba(22, 37, 31, 0.04);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.landing-template--athletic .landing-athletic-class-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(22, 37, 31, 0.08);
  border-color: rgba(194, 141, 54, 0.45);
}

.landing-template--athletic .landing-athletic-class-slot strong {
  font-size: 15px;
  line-height: 1.12;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-class-slot span {
  color: var(--athletic-muted);
  line-height: 1.35;
  font-size: 14px;
}

.landing-template--athletic .landing-athletic-calendar-empty {
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(22, 37, 31, 0.035);
  border: 1px dashed rgba(22, 37, 31, 0.12);
  color: var(--athletic-muted);
  text-align: center;
  font-size: 14px;
}

.landing-template--athletic .landing-athletic-action-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.landing-template--athletic .landing-athletic-action-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 238, 0.92));
  border: 1px solid rgba(22, 37, 31, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(22, 37, 31, 0.06);
  width: 100%;
}

.landing-template--athletic .landing-athletic-action-card--wide {
  grid-column: span 2;
}

.landing-template--athletic .landing-athletic-action-card--reserve {
  gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 245, 0.94));
}

.landing-template--athletic .landing-athletic-action-card--reserve h3 {
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.05;
  max-width: 14ch;
}

.landing-template--athletic .landing-athletic-action-card--reserve p {
  font-size: 14px;
  line-height: 1.45;
  max-width: 34ch;
}

.landing-template--athletic .landing-athletic-action-card--reserve .button {
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
}

.landing-template--athletic .landing-athletic-contact-form {
  display: grid;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-contact-form input,
.landing-template--athletic .landing-athletic-contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(22, 37, 31, 0.12);
  background: #fff;
  color: var(--athletic-ink);
  padding: 16px 18px;
}

.landing-template--athletic .landing-athletic-contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.landing-template--athletic .landing-athletic-contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-action-card h3 {
  margin: 0;
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-action-card p {
  margin: 0;
  color: var(--athletic-muted);
  line-height: 1.55;
}

.landing-template--athletic .landing-athletic-preregister,
.landing-template--athletic .landing-athletic-field-grid,
.landing-template--athletic .landing-athletic-choice-grid {
  display: grid;
  gap: 14px;
}

.landing-template--athletic .landing-athletic-field-grid,
.landing-template--athletic .landing-athletic-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-template--athletic .landing-athletic-choice-grid--compact {
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
}

.landing-template--athletic .landing-athletic-preregister input[type="text"] {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(22, 37, 31, 0.12);
  background: #fff;
  color: var(--athletic-ink);
}

.landing-template--athletic .landing-athletic-choice-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(22, 37, 31, 0.03);
  border: 1px solid rgba(22, 37, 31, 0.08);
}

.landing-template--athletic .landing-athletic-choice-card > label {
  margin: 0;
  color: var(--athletic-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-preregister .panel-dropdown {
  margin: 0;
}

.landing-template--athletic .landing-athletic-preregister .panel-dropdown a.titleSlot {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(22, 37, 31, 0.12);
  background: #fff;
  color: var(--athletic-ink);
}

.landing-template--athletic .landing-athletic-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  color: var(--athletic-muted) !important;
}

.landing-template--athletic .landing-athletic-checkbox a {
  color: var(--athletic-accent);
}

.landing-template--athletic .landing-athletic-preregister__actions {
  display: flex;
}

.landing-template--athletic .landing-athletic-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.landing-template--athletic .landing-athletic-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 37, 31, 0.08);
}

.landing-template--athletic .landing-athletic-hours-list li:last-child {
  border-bottom: 0;
}

.landing-template--athletic .landing-athletic-office-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
}

.landing-template--athletic .landing-athletic-plan-card {
  gap: 18px;
}

.landing-template--athletic .landing-athletic-plan-card__head {
  align-items: flex-start;
  gap: 12px;
}

.landing-template--athletic .landing-athletic-plan-card__head h3 {
  max-width: 12ch;
}

.landing-template--athletic .landing-athletic-plan-card__head span {
  font-size: clamp(28px, 2.4vw, 40px);
}

.landing-template--athletic #bodyGallery.landing-athletic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-template--athletic .landing-athletic-footer-grid {
  align-items: center;
}

.landing-template--athletic .landing-athletic-footer-brand .footer-logo {
  max-width: 112px;
  max-height: 112px;
  border-radius: 22px;
  padding: 10px;
  background: rgba(22, 37, 31, 0.05);
}

@media (max-width: 991px) {
  .landing-template--athletic .landing-athletic-hero__content,
  .landing-template--athletic .landing-athletic-overview,
  .landing-template--athletic .landing-athletic-action-body,
  .landing-template--athletic .landing-athletic-field-grid,
  .landing-template--athletic .landing-athletic-choice-grid,
  .landing-template--athletic .landing-athletic-choice-grid--compact,
  .landing-template--athletic .landing-athletic-office-card,
  .landing-template--athletic .landing-athletic-footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic .landing-athletic-action-card--wide {
    grid-column: auto;
  }

  .landing-template--athletic .landing-athletic-calendar-filters,
  .landing-template--athletic #bodyGallery.landing-athletic-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .landing-template--athletic .landing-athletic-brand {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .landing-template--athletic .landing-athletic-brand__logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .landing-template--athletic .landing-athletic-hero {
    min-height: 640px;
    margin-top: 18px;
    border-radius: 28px;
  }

  .landing-template--athletic .landing-athletic-hero__content {
    padding: 120px 20px 20px;
  }

  .landing-template--athletic .landing-athletic-hero__text h1 {
    max-width: none;
    font-size: clamp(40px, 12vw, 58px);
  }

  .landing-template--athletic .landing-athletic-hero__actions {
    width: 100%;
    justify-content: stretch;
  }

  .landing-template--athletic .landing-athletic-hero__actions .button {
    width: 100%;
    min-width: 0;
  }

  .landing-template--athletic .landing-athletic-section-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .landing-template--athletic .landing-athletic-calendar-week-grid {
    padding: 18px;
  }

  .landing-template--athletic .landing-athletic-calendar-nav {
    align-items: stretch;
  }

  .landing-template--athletic .landing-athletic-calendar-nav .week-nav,
  .landing-template--athletic .landing-athletic-calendar-nav .week-quick,
  .landing-template--athletic .landing-athletic-calendar-nav .week-range {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .landing-template--athletic .landing-athletic-contact-form__actions,
  .landing-template--athletic .landing-athletic-preregister__actions {
    flex-direction: column;
  }

  .landing-template--athletic .landing-athletic-contact-form__actions .button,
  .landing-template--athletic .landing-athletic-preregister__actions .button {
    width: 100%;
  }

  .landing-template--athletic .landing-athletic-hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Athletic final layout overrides */
/* Athletic final layout overrides */
.landing-template--athletic .landing-athletic-action-layout {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.landing-template--athletic .landing-athletic-section__header {
  max-width: 1160px;
}


.landing-template--athletic .landing-athletic-action-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 400px);
  gap: 28px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

.landing-template--athletic .landing-athletic-action-body.is-sidebar-only {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  max-width: 420px;
}

.landing-template--athletic .landing-athletic-calendar-panel,
.landing-template--athletic .landing-athletic-action-sidebar {
  min-width: 0;
}

.landing-template--athletic .landing-athletic-calendar-panel {
  width: 100%;
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.landing-template--athletic .landing-athletic-action-sidebar {
  width: 100%;
  max-width: 400px;
  justify-self: end;
  display: grid;
  gap: 16px;
  align-content: start;
  position: relative;
  z-index: 3;
}

/* Calendario corregido */
.landing-template--athletic .landing-athletic-calendar-week-grid {
  display: block;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.98),
          rgba(239, 245, 240, 0.96)
  );
  border: 1px solid rgba(22, 37, 31, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.landing-template--athletic .landing-athletic-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 180px);
  gap: 16px;
  width: max-content;
  min-width: max-content;
  align-items: start;
  overflow: visible;
}

.landing-template--athletic .landing-athletic-day-column {
  width: 180px;
  min-width: 180px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.landing-template--athletic .landing-athletic-day-header {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(22, 37, 31, 0.05);
  border: 1px solid rgba(22, 37, 31, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  color: var(--athletic-ink);
}

.landing-template--athletic .landing-athletic-class-slot {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 6px;
  padding: 14px;
  min-height: 118px;
  border-radius: 18px;
  border: 1px solid rgba(194, 141, 54, 0.24);
  background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 1),
          rgba(253, 247, 235, 0.96)
  );
  box-shadow: 0 16px 32px rgba(22, 37, 31, 0.04);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.landing-template--athletic .landing-athletic-class-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(22, 37, 31, 0.08);
  border-color: rgba(194, 141, 54, 0.45);
}

.landing-template--athletic .landing-athletic-class-slot strong {
  display: block;
  margin: 0;
  color: var(--athletic-ink);
  font-size: 15px;
  line-height: 1.12;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-class-slot span {
  display: block;
  margin: 0;
  color: var(--athletic-muted);
  line-height: 1.35;
  font-size: 14px;
}

.landing-template--athletic .landing-athletic-calendar-empty {
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(22, 37, 31, 0.035);
  border: 1px dashed rgba(22, 37, 31, 0.12);
  color: var(--athletic-muted);
  text-align: center;
  font-size: 14px;
}

/* Fallback */
.landing-template--athletic .landing-athletic-calendar-fallback {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  padding-top: 8px;
}

.landing-template--athletic .landing-athletic-calendar-fallback h4 {
  margin: 0;
  max-width: 20ch;
  color: var(--athletic-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.landing-template--athletic .landing-athletic-calendar-fallback__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-template--athletic .landing-athletic-calendar-fallback__card {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(253,247,235,0.96));
  border: 1px solid rgba(194, 141, 54, 0.2);
  box-shadow: 0 16px 34px rgba(22, 37, 31, 0.05);
}

/* Cards vacías */
.landing-template--athletic .landing-athletic-gallery-empty,
.landing-template--athletic .landing-athletic-class-empty,
.landing-template--athletic .landing-athletic-team-empty {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 26px;
  place-content: center;
  text-align: center;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,243,0.95));
  border: 1px dashed rgba(22,37,31,0.14);
  color: var(--athletic-muted);
}

.landing-template--athletic .landing-athletic-gallery-empty strong,
.landing-template--athletic .landing-athletic-class-empty strong,
.landing-template--athletic .landing-athletic-team-empty strong {
  color: var(--athletic-ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Footer */
.landing-template--athletic .landing-athletic-footer {
  padding-top: 18px;
}

.landing-template--athletic .landing-athletic-footer-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.landing-template--athletic .landing-athletic-footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.landing-template--athletic .landing-athletic-footer-brand p {
  max-width: 42ch;
  margin: 0;
}

.landing-template--athletic .landing-athletic-footer-contact {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(22,37,31,0.03);
  border: 1px solid rgba(22,37,31,0.08);
}

.landing-template--athletic .landing-athletic-footer-contact h4,
.landing-template--athletic .landing-athletic-footer-contact p {
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .landing-template--athletic .landing-athletic-action-body {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .landing-template--athletic .landing-athletic-action-sidebar {
    max-width: 100%;
    justify-self: stretch;
  }

  .landing-template--athletic .landing-athletic-calendar-fallback__grid {
    grid-template-columns: 1fr;
  }

  .landing-template--athletic .landing-athletic-calendar-grid {
    grid-template-columns: repeat(7, 170px);
  }

  .landing-template--athletic .landing-athletic-day-column {
    width: 170px;
    min-width: 170px;
  }
}

@media (max-width: 767px) {
  .landing-template--athletic .landing-athletic-calendar-week-grid {
    padding: 14px;
  }

  .landing-template--athletic .landing-athletic-calendar-grid {
    grid-template-columns: repeat(7, 165px);
    gap: 12px;
  }

  .landing-template--athletic .landing-athletic-day-column {
    width: 165px;
    min-width: 165px;
  }
}
