﻿:root {
  --green-dark: #021F17;
  --green-main: #0A7F4A;
  --green-fresh: #18B66F;
  --green-bright: #9AF7B5;
  --green-soft: #DDF6E5;
  --bg-main: #EAF4EA;
  --bg-warm: #F6FAF3;
  --card: #FBFFF9;
  --text-main: #062E22;
  --text-muted: #60756C;
  --line: rgba(2, 31, 23, 0.14);
  --shadow: 0 26px 70px rgba(2, 31, 23, 0.18);
  --shadow-soft: 0 18px 42px rgba(2, 31, 23, 0.11);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    linear-gradient(180deg, rgba(2, 31, 23, 0.08), transparent 360px),
    var(--bg-main);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 28px), var(--container));
  margin-inline: auto;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wa {
  fill: currentColor;
  stroke: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-sprite symbol {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon use {
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(2, 31, 23, 0.92);
  border-bottom: 1px solid rgba(154, 247, 181, 0.16);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 31, 23, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--card);
  background: transparent;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: none;
}

.brand-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--green-bright);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(154, 247, 181, 0.22);
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 850;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), var(--green-fresh), transparent);
  border-radius: 99px;
  box-shadow: 0 0 14px rgba(123, 239, 154, 0.46);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-bright);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  justify-self: end;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--green-dark);
  cursor: pointer;
  background: var(--green-bright);
  border: 0;
  border-radius: 8px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav.is-open {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 10px 16px 18px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(6, 46, 34, 0.12);
}

.site-nav.is-open a {
  padding: 14px 10px;
  color: var(--text-main);
}

.header-cta {
  display: none;
}

.whatsapp-link,
.button {
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-cta,
.button {
  min-height: 52px;
  padding: 0 22px;
  font-weight: 900;
  border-radius: 8px;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button {
  display: inline-flex;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.header-cta {
  color: var(--card);
  background: linear-gradient(135deg, var(--green-main), var(--green-fresh));
  box-shadow: 0 18px 34px rgba(15, 143, 85, 0.32);
}

.button-primary:hover,
.header-cta:hover {
  background: linear-gradient(135deg, #0b7d49, var(--green-fresh));
  box-shadow: 0 22px 42px rgba(15, 143, 85, 0.38);
}

.button-light {
  color: var(--green-dark);
  background: var(--card);
  box-shadow: inset 0 0 0 1px rgba(6, 59, 42, 0.14), 0 14px 30px rgba(6, 46, 34, 0.08);
}

.opening-stage {
  position: relative;
  overflow: hidden;
  color: var(--card);
  /* TODO: Replace this temporary generated background with a real Entrena-T gym photo/video still. */
  background:
    linear-gradient(90deg, rgba(2, 31, 23, 0.68), rgba(2, 31, 23, 0.34) 50%, rgba(2, 31, 23, 0.58)),
    linear-gradient(180deg, rgba(2, 31, 23, 0.08), rgba(2, 31, 23, 0.48)),
    url("assets/hero-gym-scale.png") center / cover no-repeat,
    var(--green-dark);
}

.opening-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}

.opening-stage::after {
  display: none;
}

.opening-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 188px);
  padding: 74px 0 58px;
  text-align: center;
}

.opening-copy {
  max-width: 920px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--green-bright);
}

.opening-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(123, 239, 154, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.opening-kicker::before,
.opening-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 239, 154, 0.62));
}

.opening-kicker::after {
  background: linear-gradient(90deg, rgba(123, 239, 154, 0.62), transparent);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: 0.58;
}

.section-eyebrow::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

.section-head-left .section-eyebrow,
.contact-copy .section-eyebrow {
  justify-content: flex-start;
}

.section-head-left .section-eyebrow::before,
.contact-copy .section-eyebrow::before {
  width: 0;
}

.section-head-left .section-eyebrow::after,
.contact-copy .section-eyebrow::after {
  width: 42px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 18px;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.9rem, 6.6vw, 5.7rem);
  line-height: 0.94;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.keep-line {
  white-space: nowrap;
}

.opening-lead {
  max-width: 690px;
  margin-inline: auto;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.opening-actions-panel {
  display: inline-grid;
  gap: 18px;
  justify-items: center;
  padding: 0;
}

.opening-facts {
  position: relative;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 10px 18px;
  margin: 0;
  list-style: none;
  background: linear-gradient(90deg, transparent, rgba(2, 31, 23, 0.42) 18%, rgba(2, 31, 23, 0.42) 82%, transparent);
}

.opening-facts::before,
.opening-facts::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 239, 154, 0.58), transparent);
}

.opening-facts::before {
  top: 0;
}

.opening-facts::after {
  bottom: 0;
}

.opening-facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border-right: 1px solid rgba(154, 247, 181, 0.22);
  font-size: 0.92rem;
  font-weight: 850;
}

.opening-facts li:last-child {
  border-right: 0;
}

.opening-facts .icon {
  width: 19px;
  height: 19px;
  color: var(--green-bright);
}

.opening-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.opening-note {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 650;
}

.opening-buttons .button {
  min-width: 154px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  background: #021F17;
  border-top: 1px solid rgba(154, 247, 181, 0.22);
  border-bottom: 1px solid rgba(154, 247, 181, 0.22);
}

.trust-strip-grid {
  display: grid;
  gap: 0;
  padding: 0;
}

.trust-strip-grid div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 16px;
  min-height: 96px;
  padding: 18px 20px;
  color: var(--card);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(154, 247, 181, 0.14);
  border-radius: 0;
  font-weight: 900;
  text-align: left;
  box-shadow: none;
}

.trust-strip-grid div:last-child {
  border-bottom: 0;
}

.trust-strip-grid .icon {
  justify-self: center;
  color: var(--green-bright);
}

.trust-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.trust-copy strong {
  color: var(--card);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.18;
  font-weight: 950;
}

.trust-copy small {
  color: rgba(225, 248, 233, 0.74);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  line-height: 1.35;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 78px 0;
}

main > section:not(.opening-stage):not(.trust-strip) {
  position: relative;
}

main > section:not(.opening-stage):not(.trust-strip)::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(14px, calc((100vw - var(--container)) / 2));
  right: max(14px, calc((100vw - var(--container)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 247, 181, 0.82), rgba(24, 182, 111, 0.2), transparent);
  pointer-events: none;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head-left {
  margin-inline: 0;
  text-align: left;
}

h2 {
  margin-bottom: 14px;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 7vw, 3.35rem);
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.section-head p,
.reason-list p,
.orientation-panel p,
.activity-grid p,
.support-card p,
.pricing-section .section-head p,
.timetable-section .section-head p,
.voice-entry blockquote,
.questions-stack p,
.final-cta-box p {
  color: var(--text-muted);
}

.training-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(154, 247, 181, 0.16), transparent 24rem),
    linear-gradient(180deg, #052A20, var(--green-dark));
  color: var(--card);
  overflow-anchor: none;
}

.training-section h2,
.training-section .section-head p {
  color: var(--card);
}

.training-section .eyebrow {
  color: var(--green-bright);
}

.training-paths {
  display: grid;
  gap: 46px;
}

.activity-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.activity-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-bright));
}

.activity-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 143, 85, 0.24);
  box-shadow: 0 22px 52px rgba(6, 46, 34, 0.14);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green-main);
  background: var(--green-soft);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(15, 143, 85, 0.1);
}

.activity-grid p,
.reason-list p {
  margin-bottom: 0;
}

.training-path {
  display: grid;
  gap: 32px;
  padding-top: 38px;
  border-top: 1px solid rgba(154, 247, 181, 0.24);
}

.training-path-copy {
  align-self: center;
}

.training-path-label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 6px 11px;
  color: var(--green-bright);
  background: rgba(154, 247, 181, 0.08);
  border: 1px solid rgba(154, 247, 181, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.training-path-label .icon {
  width: 18px;
  height: 18px;
}

.training-path h3 {
  max-width: 560px;
  margin-bottom: 12px;
  color: var(--card);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.65rem);
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.training-path-intro {
  max-width: 56ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.62;
}

.discipline-list {
  border-top: 1px solid rgba(154, 247, 181, 0.16);
}

.discipline-list article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(154, 247, 181, 0.13);
}

.discipline-list .icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--green-bright);
}

.discipline-list h4 {
  margin: 0 0 3px;
  color: var(--card);
  font-size: 1.04rem;
  line-height: 1.25;
}

.discipline-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
  line-height: 1.55;
}

.discipline-list .discipline-featured {
  margin-top: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(154, 247, 181, 0.12), rgba(15, 143, 85, 0.06)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(154, 247, 181, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.discipline-featured h4 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.discipline-featured p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

.discipline-featured ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.discipline-featured li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 720;
}

.discipline-featured li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(123, 239, 154, 0.5);
}

.training-collage {
  min-width: 0;
}

.training-carousel,
.training-collage-single {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
}

.training-carousel {
  overflow: visible;
}
.training-media-stack {
  display: grid;
  width: 100%;
  max-width: 560px;
  gap: 18px;
  align-self: center;
  justify-self: center;
  min-width: 0;
}

.training-media-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.training-media-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: var(--card);
}

.training-media-title span {
  color: var(--green-bright);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.training-media-title small {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
}

.training-media-stack .training-carousel {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  align-self: stretch;
  justify-self: stretch;
}

.training-media-stack .training-carousel-arrow {
  width: 40px;
  height: 40px;
}

.training-media-stack .training-carousel-arrow .icon {
  width: 18px;
  height: 18px;
}

.training-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.training-photo {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #062a20;
  border: 1px solid rgba(154, 247, 181, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.training-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.training-photo-square {
  width: 100%;
  aspect-ratio: 1;
}

.training-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--green-bright), #c9ffd8);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.training-carousel-arrow:hover {
  background: linear-gradient(135deg, #dcffe5, var(--green-bright));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.training-carousel-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.training-carousel-arrow .icon {
  width: 21px;
  height: 21px;
}

.training-carousel-prev {
  left: 14px;
}

.training-carousel-prev .icon {
  transform: rotate(180deg);
}

.training-carousel-next {
  right: 14px;
}

.training-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 420ms ease, filter 220ms ease;
}

.training-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 31, 23, 0.88));
  pointer-events: none;
}

.training-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 11px;
  z-index: 1;
  color: var(--card);
  font-size: 0.82rem;
  font-weight: 900;
}

.training-photo:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.why-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 31, 23, 0.92), rgba(2, 31, 23, 0.78) 48%, rgba(2, 31, 23, 0.9)),
    linear-gradient(180deg, rgba(2, 31, 23, 0.24), rgba(2, 31, 23, 0.72)),
    url("assets/hero-gym-scale.png") center / cover no-repeat,
    var(--green-dark);
  color: var(--card);
}

.why-section h2,
.why-section .section-head p {
  color: var(--card);
}

.why-section .eyebrow {
  color: rgba(123, 239, 154, 0.9);
}

.why-section .text-link {
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--green-bright);
  background: rgba(123, 239, 154, 0.08);
  border: 1px solid rgba(123, 239, 154, 0.22);
  border-radius: 8px;
}

.split-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green-main);
  font-weight: 950;
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  background: rgba(251, 255, 249, 0.94);
  border: 1px solid rgba(154, 247, 181, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.reason-list h3 {
  color: var(--text-main);
}

.reason-list p {
  color: var(--text-muted);
}

.reason-list .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--green-main);
  background: var(--green-soft);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(15, 143, 85, 0.12);
}

.orientation-panel {
  align-self: center;
  padding: 26px;
  color: var(--text-main);
  background: rgba(251, 255, 249, 0.94);
  border: 1px solid rgba(154, 247, 181, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.orientation-panel h3 {
  margin-bottom: 8px;
  color: var(--text-main);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.orientation-panel > p {
  margin-bottom: 20px;
}

.orientation-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.orientation-chips span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--green-dark);
  background: rgba(225, 248, 233, 0.78);
  border: 1px solid rgba(15, 143, 85, 0.12);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.orientation-chips .icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--green-main);
}

.facility-zones {
  display: grid;
  gap: 0;
  margin-top: 32px;
  padding: 10px;
  color: var(--card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(2, 31, 23, 0.58);
  border: 1px solid rgba(154, 247, 181, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.facility-zones article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  min-height: 104px;
  padding: 18px 20px;
  color: var(--card);
  background: transparent;
  border-right: 0;
  border-bottom: 1px solid rgba(154, 247, 181, 0.13);
  transition: background 180ms ease;
}

.facility-zones article:last-child {
  border-bottom: 0;
}

.facility-zones article:hover {
  background: rgba(154, 247, 181, 0.07);
}

.facility-zones .icon {
  grid-row: 1 / span 2;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  color: var(--green-bright);
}

.facility-zones h3 {
  margin: 0;
  color: var(--card);
  font-size: 0.98rem;
  line-height: 1.18;
}

.facility-zones p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.42;
}

.contact-section,
.final-cta {
  padding: 70px 0;
  color: var(--card);
  background: var(--green-dark);
}

.final-cta-box {
  display: grid;
  gap: 24px;
  align-items: center;
}

.contact-section h2,
.final-cta-box h2 {
  color: var(--card);
}

.contact-section p,
.final-cta-box p {
  color: rgba(255, 255, 255, 0.78);
}

.activities-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(123, 239, 154, 0.22), transparent 30rem),
    linear-gradient(180deg, var(--green-soft), rgba(244, 250, 244, 0.92));
}

.activity-grid {
  display: grid;
  gap: 18px;
}

.activity-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 232px;
  padding: 34px 24px 30px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 255, 249, 0.94));
  border-color: rgba(15, 143, 85, 0.16);
  box-shadow: 0 20px 52px rgba(6, 46, 34, 0.11);
}

.activity-grid .icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  padding: 0;
  color: var(--green-main);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.activity-grid h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 1.14rem;
}

.activity-grid p {
  max-width: 28ch;
  color: rgba(6, 46, 34, 0.68);
  font-weight: 520;
}

.support-section {
  background:
    linear-gradient(180deg, rgba(244, 250, 244, 0.92), var(--bg-warm));
}

.support-grid {
  display: grid;
  gap: 18px;
}

.support-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(225, 248, 233, 0.32), transparent 46%),
    var(--card);
  border: 1px solid rgba(15, 143, 85, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(6, 46, 34, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--green-bright), transparent 72%);
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 85, 0.26);
  box-shadow: 0 30px 72px rgba(6, 46, 34, 0.16);
}

.support-card-dark {
  color: var(--card);
  background:
    radial-gradient(circle at 92% 0%, rgba(123, 239, 154, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--green-dark), #052A20);
  border-color: rgba(154, 247, 181, 0.18);
}

.support-card-dark h2,
.support-card-dark p {
  color: var(--card);
}

.support-card-dark .section-eyebrow {
  color: var(--green-bright);
}

.support-card-content {
  min-width: 0;
}

.support-kicker {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.support-kicker .section-eyebrow {
  width: auto;
  margin: 0;
  justify-content: flex-start;
  text-align: left;
  min-width: 0;
}

.support-kicker .section-eyebrow::before,
.support-kicker .section-eyebrow::after {
  display: none;
}

.support-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green-main);
  background: transparent;
  border-radius: 0;
}

.support-card-dark .support-icon {
  color: var(--green-bright);
  background: transparent;
  box-shadow: none;
}

.support-icon .icon {
  width: 34px;
  height: 34px;
}

.support-card h2 {
  max-width: 560px;
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 4.6vw, 2.55rem);
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-card-content > p:not(.eyebrow) {
  color: rgba(6, 46, 34, 0.76);
  font-size: 1rem;
  line-height: 1.72;
  font-weight: 540;
}

.support-card-dark .support-card-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.store-badge {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 14px;
  color: #fff;
  background: #050807;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 247, 181, 0.5);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.store-badge svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
}

.store-badge strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 950;
}

.pricing-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(154, 247, 181, 0.18), transparent 22rem),
    linear-gradient(180deg, #052A20, var(--green-dark));
  color: var(--card);
}

.pricing-section h2,
.pricing-section .section-head p {
  color: var(--card);
}

.pricing-section .eyebrow {
  color: var(--green-bright);
}

.pricing-grid {
  display: grid;
  gap: 12px;
}

.pricing-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(154, 247, 181, 0.16);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pricing-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-bright), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.pricing-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(123, 239, 154, 0.38);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.pricing-grid article:hover::before {
  opacity: 1;
}

.pricing-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.pricing-grid strong {
  color: var(--green-bright);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.pricing-featured {
  background: linear-gradient(135deg, rgba(15, 143, 85, 0.32), rgba(123, 239, 154, 0.1)) !important;
  border-color: rgba(123, 239, 154, 0.36) !important;
}

.pricing-reto {
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 50%, rgba(123, 239, 154, 0.28), transparent 9rem),
    linear-gradient(135deg, rgba(15, 143, 85, 0.48), rgba(6, 59, 42, 0.86)) !important;
  border-color: rgba(123, 239, 154, 0.64) !important;
  box-shadow:
    0 0 0 1px rgba(123, 239, 154, 0.12),
    0 18px 48px rgba(15, 143, 85, 0.24),
    inset 0 0 30px rgba(123, 239, 154, 0.08);
}

.pricing-reto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.18) 48%, transparent 62% 100%);
  opacity: 0.32;
  transform: translateX(-40%);
  transition: transform 500ms ease, opacity 180ms ease;
  pointer-events: none;
}

.pricing-reto:hover::after {
  opacity: 0.5;
  transform: translateX(48%);
}

.pricing-reto span,
.pricing-reto strong {
  position: relative;
  z-index: 1;
  color: var(--green-bright);
  text-shadow: 0 0 18px rgba(123, 239, 154, 0.22);
}

.pricing-note {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 0.86rem;
}

.pricing-conditions {
  display: grid;
  width: fit-content;
  gap: 4px;
  margin: 20px auto 0;
  padding: 12px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(154, 247, 181, 0.2);
  border-radius: 8px;
}

.pricing-conditions strong {
  color: var(--green-bright);
  font-size: 0.98rem;
}

.pricing-conditions span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}

.challenge-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-areas:
    "copy"
    "details"
    "action";
  gap: 24px;
  margin-top: 34px;
  min-height: 430px;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(2, 31, 23, 0.98) 0%, rgba(5, 43, 32, 0.92) 40%, rgba(2, 31, 23, 0.82) 100%),
    url("https://images.unsplash.com/photo-1540497077202-7c8a3999166f?auto=format&fit=crop&w=1500&q=82") center / cover;
  border: 1px solid rgba(154, 247, 181, 0.34);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.challenge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 13% 18%, rgba(123, 239, 154, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 76%, rgba(15, 143, 85, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(2, 31, 23, 0.04), rgba(2, 31, 23, 0.58));
  pointer-events: none;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 239, 154, 0.74), transparent);
}

.challenge-card-copy {
  grid-area: copy;
  display: grid;
  align-content: start;
  justify-items: start;
  max-width: 520px;
}

.challenge-card .eyebrow {
  margin-bottom: 8px;
  color: var(--green-bright);
}

.challenge-card h3 {
  margin: 0 0 10px;
  color: var(--card);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.challenge-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.challenge-card-details {
  grid-area: details;
  display: grid;
  align-self: center;
  justify-items: stretch;
}

.challenge-price {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(100%, 260px);
  margin-top: 26px;
  gap: 4px;
  justify-items: center;
  padding: 18px 24px;
  background:
    linear-gradient(135deg, rgba(123, 239, 154, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(2, 31, 23, 0.62);
  border-top: 4px solid var(--green-bright);
  border-radius: 8px;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(154, 247, 181, 0.22);
}

.challenge-price::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(123, 239, 154, 0.28), transparent 68%);
  pointer-events: none;
}

.challenge-price span,
.challenge-includes > span {
  color: var(--green-bright);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.challenge-includes > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.challenge-includes > span::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 239, 154, 0.72), transparent);
}

.challenge-price strong {
  position: relative;
  color: var(--card);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.45rem, 5vw, 3.7rem);
  line-height: 0.92;
  font-weight: 950;
  text-shadow: 0 0 26px rgba(123, 239, 154, 0.22);
}

.challenge-includes {
  width: min(100%, 680px);
  display: grid;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.challenge-includes ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.challenge-includes li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-width: 0;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 820;
  line-height: 1.45;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.challenge-includes li + li {
  border-top: 1px solid rgba(154, 247, 181, 0.13);
}

.challenge-includes li::before {
  content: "✓";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green-bright);
  font-family: Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  font-weight: 950;
  transform: translateY(-2px);
  text-shadow:
    0 0 18px rgba(123, 239, 154, 0.4),
    0 8px 22px rgba(0, 0, 0, 0.22);
}

.challenge-card-action {
  grid-area: action;
  display: grid;
  gap: 12px;
  align-items: center;
  justify-content: center;
  align-self: start;
  padding-top: 0;
  text-align: center;
}

.challenge-card-action span {
  color: var(--green-bright);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.challenge-card-action .button {
  min-width: min(100%, 265px);
  justify-self: center;
  box-shadow: 0 22px 52px rgba(15, 143, 85, 0.32);
}

.timetable-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(123, 239, 154, 0.18), transparent 24rem),
    linear-gradient(180deg, #063B2A, #052A20);
  color: var(--card);
}

.timetable-layout {
  display: grid;
  gap: 28px;
}

.timetable-section h2,
.timetable-section .section-head p {
  color: var(--card);
}

.timetable-section .eyebrow {
  color: var(--green-bright);
}

.timetable-cards {
  display: grid;
  gap: 14px;
}

.timetable-cards article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(225, 248, 233, 0.94));
  border: 1px solid rgba(154, 247, 181, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.year-badge {
  position: absolute;
  top: 26px;
  right: 30px;
  display: grid;
  gap: 3px;
  min-width: 144px;
  padding: 11px 14px;
  color: var(--green-dark);
  background:
    linear-gradient(135deg, rgba(154, 247, 181, 0.22), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(15, 143, 85, 0.18);
  border-radius: 8px;
  text-align: right;
  box-shadow: 0 14px 34px rgba(6, 46, 34, 0.1);
}

.year-badge strong {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.year-badge span {
  color: var(--green-main);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 1.16rem;
  line-height: 1;
  font-weight: 950;
}

.timetable-cards article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-bright));
}

.timetable-cards .icon {
  width: 38px;
  height: 38px;
  color: var(--green-main);
}

.timetable-cards h3 {
  margin: 4px 0 8px;
  color: var(--text-main);
  font-size: 1.42rem;
  line-height: 1.08;
}

.timetable-cards p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(6, 46, 34, 0.72);
  font-size: 1.03rem;
  line-height: 1.42;
}

.timetable-cards p strong {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.time-range {
  display: block;
  color: var(--green-main);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.42rem, 2.35vw, 1.82rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.time-range-small {
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
}

.schedule-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 30px;
  color: var(--text-main);
  background:
    linear-gradient(135deg, rgba(225, 248, 233, 0.74), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(154, 247, 181, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.schedule-placeholder::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-bright));
}

.schedule-placeholder .icon {
  width: 36px;
  height: 36px;
  color: var(--green-main);
}

.schedule-placeholder h3 {
  margin: 2px 0 0;
  color: var(--text-main);
  font-size: clamp(1.28rem, 2.4vw, 1.8rem);
  line-height: 1.08;
}

.schedule-placeholder > p {
  margin: 0;
  color: rgba(6, 46, 34, 0.68);
  font-size: 1rem;
}

.schedule-placeholder > .icon,
.schedule-placeholder > h3,
.schedule-placeholder > p {
  max-width: calc(100% - 190px);
}

.schedule-placeholder .class-schedule,
.schedule-placeholder .schedule-note {
  grid-column: 1 / -1;
}

.class-schedule {
  overflow-x: visible;
  margin-top: 4px;
  border: 1px solid rgba(15, 143, 85, 0.16);
  border-radius: 8px;
}

.class-schedule table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--text-main);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  line-height: 1.25;
}

.class-schedule th,
.class-schedule td {
  padding: 12px 8px;
  border: 1px solid rgba(15, 143, 85, 0.14);
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.class-schedule thead th,
.class-schedule tbody th {
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 950;
  text-transform: uppercase;
}

.day-short {
  display: none;
}

.class-schedule td {
  background: rgba(255, 255, 255, 0.64);
  font-weight: 820;
}

.class-schedule-desktop {
  display: block;
}

.schedule-note {
  color: rgba(6, 46, 34, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-section,
.visitor-guide-section {
  background: var(--bg-warm);
}

.gallery-section {
  color: var(--card);
  background:
    radial-gradient(circle at 92% 8%, rgba(154, 247, 181, 0.16), transparent 22rem),
    linear-gradient(180deg, #052A20, var(--green-dark));
}

.gallery-section h2,
.gallery-section .section-head p {
  color: var(--card);
}

.gallery-section .eyebrow {
  color: var(--green-bright);
}

.visitor-guide-section {
  background:
    linear-gradient(180deg, var(--green-soft), var(--bg-main));
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(6, 46, 34, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(6, 46, 34, 0.82)),
    linear-gradient(90deg, rgba(6, 59, 42, 0.24), transparent 50%);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--card);
  font-weight: 950;
}

.voices-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 46%),
    linear-gradient(180deg, #D2EFD9, var(--green-soft));
}

.voices-heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
}

.voices-heading .section-head {
  max-width: 720px;
  margin-bottom: 0;
}

.google-opinions-link {
  display: grid;
  width: fit-content;
  gap: 3px;
  justify-items: start;
  padding: 14px 18px;
  color: var(--card);
  background: var(--green-dark);
  border: 1px solid rgba(154, 247, 181, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(6, 46, 34, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-opinions-link:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 247, 181, 0.48);
  box-shadow: 0 22px 46px rgba(6, 46, 34, 0.26);
}

.google-opinions-link strong {
  font-size: 1rem;
}

.google-opinions-link > span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
}

.google-opinions-stars {
  color: #f4c84d;
  font-size: 0.84rem;
  line-height: 1;
}

.voices-composition {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.voice-featured {
  position: relative;
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 22px;
  padding: 38px;
  color: var(--green-dark);
  background:
    linear-gradient(145deg, rgba(154, 247, 181, 0.24), transparent 48%),
    rgba(251, 255, 249, 0.9);
  border: 1px solid rgba(6, 46, 34, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(6, 46, 34, 0.17);
}

.voice-featured::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-bright), var(--green-main));
  border-radius: 8px 0 0 8px;
}

.voice-featured::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 4px;
  height: 3px;
  background: linear-gradient(90deg, #d7a529, var(--green-bright) 58%, transparent);
  border-radius: 0 8px 0 0;
}

.voice-stars {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  color: #d39700;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(211, 151, 0, 0.2);
}

.voice-stars-featured {
  font-size: 1.25rem;
}

.voice-featured blockquote,
.voice-entry blockquote {
  margin: 0;
}

.voice-featured blockquote {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  max-width: 14ch;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  line-height: 1.15;
  font-weight: 850;
}

.voice-featured footer,
.voice-entry footer {
  display: grid;
  gap: 2px;
}

.voice-featured footer strong {
  color: var(--green-dark);
}

.voice-featured footer span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.voice-featured footer {
  justify-self: end;
  text-align: right;
}

.voices-list {
  border-top: 1px solid rgba(6, 46, 34, 0.18);
}

.voice-entry {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 12px;
  border-bottom: 1px solid rgba(6, 46, 34, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.voice-entry:hover {
  background: rgba(251, 255, 249, 0.36);
  transform: translateX(3px);
}

.voice-entry blockquote {
  color: var(--text-main);
  font-size: 1.06rem;
  line-height: 1.58;
  font-weight: 560;
}

.voice-entry footer strong {
  color: var(--green-main);
  font-size: 0.9rem;
}

.voice-entry footer span {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.review-cta {
  display: grid;
  max-width: 720px;
  gap: 12px;
  justify-items: center;
  margin: 34px auto 0;
  padding: 28px;
  text-align: center;
  background: rgba(251, 255, 249, 0.72);
  border: 1px solid rgba(6, 46, 34, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(6, 46, 34, 0.12);
}

.review-cta h3 {
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: 1.18rem;
}

.review-cta p {
  max-width: 48ch;
  margin: 0;
  color: var(--text-muted);
}

.review-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--card);
  background: #1f2725;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(6, 46, 34, 0.18);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(6, 46, 34, 0.24);
}

.review-cta a > span {
  color: #4285F4;
  font-family: Arial, sans-serif;
  font-weight: 950;
}

.review-cta .icon {
  width: 18px;
  height: 18px;
}

.questions-stack {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

details {
  overflow: hidden;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

details + details {
  border-top: 0;
}

details.is-open {
  background:
    linear-gradient(180deg, rgba(225, 248, 233, 0.72), rgba(251, 255, 249, 0.98));
  border-color: rgba(15, 143, 85, 0.26);
  box-shadow: 0 22px 50px rgba(6, 46, 34, 0.1);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--green-main);
  background: var(--green-soft);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 28px;
  text-align: center;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

details.is-open summary::after {
  content: "×";
  color: var(--card);
  background: var(--green-main);
  transform: none;
}

details p {
  max-height: 0;
  margin: 0 22px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin 220ms ease;
}

details.is-open p {
  max-height: 220px;
  margin: -4px 22px 22px;
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: var(--green-dark);
}

.contact-grid {
  display: grid;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}

.contact-list {
  display: grid;
  align-self: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}

.contact-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list span {
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-item-copy {
  display: grid;
  grid-template-columns: minmax(94px, auto) 1fr;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 4px;
}

.contact-list .icon {
  width: 30px;
  height: 30px;
  color: var(--green-bright);
}

.contact-list a,
.contact-list strong {
  color: var(--card);
  font-size: 1.02rem;
}

.contact-social-copy {
  align-items: center;
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a,
.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-items: center;
  padding: 0;
  color: var(--green-bright);
  background: rgba(154, 247, 181, 0.08);
  border: 1px solid rgba(154, 247, 181, 0.24);
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links svg,
.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg,
.footer-social a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--green-dark);
  background: var(--green-bright);
  box-shadow: 0 12px 28px rgba(123, 239, 154, 0.18);
}

.map-wrap {
  width: min(calc(100% - 32px), 1280px);
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: #244f3f;
  border: 1px solid rgba(154, 247, 181, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(2, 31, 23, 0.3);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(0.92) contrast(1.04);
}

.map-open-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--green-dark);
  background: rgba(251, 255, 249, 0.96);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(2, 31, 23, 0.22);
  font-weight: 950;
}

.map-open-link:hover {
  transform: translateY(-2px);
  color: var(--green-dark);
}

.map-open-link .icon {
  width: 18px;
  height: 18px;
  color: var(--green-main);
}

.final-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(68, 196, 111, 0.32), transparent 24rem),
    radial-gradient(circle at 18% 82%, rgba(123, 239, 154, 0.12), transparent 20rem),
    linear-gradient(135deg, #031F17 0%, #07533A 58%, #0A7B49 100%);
}

.final-cta-box {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(2, 31, 23, 0.9), rgba(6, 59, 42, 0.58)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(154, 247, 181, 0.26);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(2, 31, 23, 0.28);
}

.final-cta-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), rgba(123, 239, 154, 0.32), transparent);
}

.final-cta-copy {
  max-width: 760px;
}

.final-cta-action {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: start;
}

.final-cta-action span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #052a1f;
}

.footer-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.brand-footer .brand-copy strong,
.footer-nav a {
  color: var(--card);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  font-weight: 850;
}

.footer-social {
  justify-content: center;
}

.site-footer p {
  margin-bottom: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  color: var(--card);
  border-radius: 999px;
  background: #25D366;
  box-shadow:
    0 18px 40px rgba(6, 46, 34, 0.3),
    0 0 0 8px rgba(37, 211, 102, 0.12);
  animation: whatsappPulse 2.8s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 22px 46px rgba(6, 46, 34, 0.34),
    0 0 0 10px rgba(37, 211, 102, 0.14);
}

.whatsapp-float .icon {
  width: 34px;
  height: 34px;
}

body.is-whatsapp-popup-open {
  overflow: hidden;
}

.whatsapp-popup-overlay[hidden] {
  display: none;
}

.whatsapp-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(0, 18, 13, 0.48);
  backdrop-filter: blur(5px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.whatsapp-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.whatsapp-popup {
  position: relative;
  width: min(100%, 440px);
  padding: 38px 36px 30px;
  overflow: hidden;
  color: var(--card);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #062a20;
  border: 1px solid rgba(154, 247, 181, 0.24);
  border-radius: 8px;
  box-shadow:
    0 32px 90px rgba(0, 18, 13, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms ease;
}

.whatsapp-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  transform: translateX(-50%);
}

.whatsapp-popup-overlay.is-visible .whatsapp-popup {
  transform: translateY(0) scale(1);
}

.whatsapp-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.whatsapp-popup-close:hover {
  color: var(--card);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.whatsapp-popup-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.whatsapp-popup-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 20px;
}

.whatsapp-popup-brand > img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.whatsapp-popup-brand > span {
  display: grid;
  gap: 1px;
  text-align: left;
}

.whatsapp-popup-brand strong {
  color: var(--green-bright);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.whatsapp-popup-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.whatsapp-popup h2 {
  max-width: 350px;
  margin: 0 auto 12px;
  color: var(--card);
  font-size: 1.92rem;
  line-height: 1.1;
  text-transform: none;
}

.whatsapp-popup-copy {
  max-width: 37ch;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.58;
}

.whatsapp-popup-button {
  display: inline-flex;
  width: 100%;
  min-height: 57px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--card);
  background: #13a963;
  border: 1px solid rgba(154, 247, 181, 0.24);
  border-radius: 8px;
  box-shadow:
    0 16px 34px rgba(5, 102, 61, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 950;
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.whatsapp-popup-button:hover {
  background: #18b66f;
  box-shadow: 0 20px 40px rgba(5, 102, 61, 0.34);
  transform: translateY(-2px);
}

.whatsapp-popup-button .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.whatsapp-popup > small {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(6, 46, 34, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.28);
  }
  50% {
    box-shadow: 0 18px 40px rgba(6, 46, 34, 0.28), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .trust-strip-grid,
  .activity-grid,
  .pricing-grid,
  .facility-zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-zones article:nth-child(odd) {
    border-right: 1px solid rgba(154, 247, 181, 0.13);
  }

  .facility-zones article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 96px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .header-cta {
    display: inline-flex;
  }

  .opening-layout {
    min-height: calc(100vh - 188px);
    padding: 72px 0 56px;
  }

  .opening-lead {
    font-size: 1.26rem;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-strip-grid div {
    border-bottom: 0;
    border-right: 1px solid rgba(154, 247, 181, 0.16);
  }

  .trust-strip-grid div:last-child {
    border-right: 0;
  }

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

  .facility-zones article {
    border-right: 1px solid rgba(154, 247, 181, 0.13);
    border-bottom: 1px solid rgba(154, 247, 181, 0.13);
  }

  .facility-zones article:nth-child(3n) {
    border-right: 0;
  }

  .facility-zones article:nth-child(n + 4) {
    border-bottom: 0;
  }

  .training-path {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
  }

  .training-path-copy {
    align-self: center;
  }

  .training-path-reverse .training-path-copy {
    order: 2;
  }

  .training-path-reverse .training-collage {
    order: 1;
  }

  .training-collage {
    align-self: center;
  }

  .training-carousel,
  .training-collage-single {
    width: min(100%, 520px);
  }

  .split-layout,
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .why-section .split-layout {
    align-items: stretch;
  }

  .why-section .section-head {
    margin-bottom: 0;
  }

  .final-cta-box {
    grid-template-columns: 1fr auto;
  }

  .final-cta-action {
    justify-items: end;
    min-width: 230px;
  }

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

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

  .support-card {
    min-height: 330px;
  }

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

  .pricing-featured {
    grid-column: span 2;
  }

  .challenge-card {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
      "copy details"
      "copy action";
    align-items: start;
    gap: 18px 54px;
  }

  .challenge-card-details {
    justify-self: stretch;
  }

  .challenge-card-action {
    align-self: end;
    justify-self: center;
  }

  .timetable-layout {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
  }

  .timetable-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-placeholder {
    grid-column: 1 / -1;
  }

  .voices-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .google-opinions-link {
    justify-self: end;
  }

  .voices-composition {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .gallery-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .gallery-item-large {
    grid-row: span 2;
    height: 560px;
  }

  .gallery-item:not(.gallery-item-large) {
    height: 271px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 480px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
  }

  .footer-nav {
    justify-content: center;
  }

  .site-footer p {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (min-width: 1100px) {
  .activity-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  .brand-copy small {
    font-size: 0.66rem;
  }

  .opening-layout {
    min-height: auto;
    padding: 54px 0 50px;
  }

  .opening-copy {
    width: 100%;
  }

  .opening-stage h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 10vw, 4.6rem);
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .opening-stage .keep-line {
    white-space: normal;
  }

  .final-cta-box {
    padding: 26px;
  }

  .trust-strip {
    margin-top: 0;
  }

}

@media (max-width: 639px) {
  .opening-stage {
    background-position: 56% center;
  }

  .opening-layout {
    padding: 42px 0 46px;
  }

  .opening-kicker {
    gap: 7px;
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .opening-kicker::before,
  .opening-kicker::after {
    width: 18px;
  }

  .opening-stage h1 {
    margin-bottom: 16px;
    width: min(100%, 11.8ch);
    margin-inline: auto;
    font-size: clamp(1.86rem, 8.7vw, 2.34rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .opening-lead {
    max-width: 31ch;
    margin-inline: auto;
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .opening-actions-panel {
    max-width: 100%;
    overflow: hidden;
  }

  .opening-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .opening-buttons .button {
    width: min(100%, 320px);
  }

  .opening-facts {
    width: 100%;
    padding-inline: 0;
  }

  .opening-facts li {
    display: grid;
    grid-template-columns: 24px minmax(0, 275px);
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    padding-inline: 12px;
    font-size: 0.9rem;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(154, 247, 181, 0.14);
  }

  .opening-facts .icon {
    justify-self: center;
  }

  .opening-facts li:last-child {
    border-bottom: 0;
  }

  .year-badge {
    position: static;
    justify-self: start;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .schedule-placeholder {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 22px;
  }

  .schedule-year-badge {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-width: 136px;
    text-align: right;
  }

  .schedule-placeholder > .icon {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .class-schedule {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
  }

  .class-schedule table,
  .class-schedule thead,
  .class-schedule tbody {
    display: block;
    width: 100%;
  }

  .class-schedule tr {
    display: grid;
    grid-template-columns: 38px repeat(5, minmax(0, 1fr));
    width: 100%;
  }

  .class-schedule table {
    font-size: clamp(0.52rem, 2vw, 0.62rem);
    line-height: 1.08;
  }

  .class-schedule th,
  .class-schedule td {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 7px 2px;
    border-top: 0;
    border-left: 0;
    overflow-wrap: anywhere;
  }

  .class-schedule th:last-child,
  .class-schedule td:last-child {
    border-right: 0;
  }

  .class-schedule tbody tr:last-child th,
  .class-schedule tbody tr:last-child td {
    border-bottom: 0;
  }

  .day-full {
    display: none;
  }

  .day-short {
    display: inline;
  }

  .timetable-section .section-head h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 1.05;
    overflow-wrap: normal;
  }

  .schedule-placeholder > .icon,
  .schedule-placeholder > h3,
  .schedule-placeholder > p {
    grid-column: 1 / -1;
    max-width: none;
  }

  .schedule-placeholder > .icon {
    grid-column: 1;
  }

  .orientation-panel,
  .support-card {
    padding: 22px;
  }

  .orientation-chips {
    grid-template-columns: 1fr;
  }

  .facility-zones {
    margin-top: 22px;
    padding: 6px;
  }

  .facility-zones article {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 0;
    padding: 14px 12px;
    column-gap: 10px;
  }

  .facility-zones .icon {
    width: 22px;
    height: 22px;
  }

  .facility-zones h3 {
    font-size: 0.92rem;
  }

  .facility-zones p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
  }

  .support-kicker {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 22px;
  }

  .support-icon {
    width: 38px;
    height: 38px;
  }

  .support-icon .icon {
    width: 30px;
    height: 30px;
  }

  .support-card .section-eyebrow {
    display: inline-flex;
    gap: 8px;
    font-size: 0.72rem;
    line-height: 1.15;
    white-space: normal;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .support-card h2 {
    max-width: 100%;
    font-size: clamp(1.58rem, 7.4vw, 2.05rem);
    line-height: 1.1;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .support-card-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .support-card-dark h2 {
    font-size: clamp(1.52rem, 7vw, 1.95rem);
  }

  .support-card-dark .support-card-content > p:not(.eyebrow) {
    max-width: 28ch;
  }

  .support-card .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
  }

  .store-badge {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    gap: 7px;
    padding: 7px 8px;
  }

  .store-badge svg {
    width: 24px;
    height: 24px;
  }

  .store-badge small {
    font-size: 0.52rem;
  }

  .store-badge strong {
    font-size: 0.9rem;
  }

  .pricing-grid article {
    min-height: 68px;
    padding: 16px;
  }

  .pricing-grid strong {
    font-size: 1.7rem;
  }

  .challenge-card {
    margin-top: 30px;
    padding: 24px;
  }

  .challenge-price {
    width: 100%;
    min-width: 0;
  }

  .challenge-price strong {
    font-size: 2.55rem;
  }

  .challenge-card-action {
    align-items: stretch;
  }

  .challenge-card-action .button {
    width: 100%;
  }

  .timetable-cards article {
    padding: 19px;
  }

  .timetable-section,
  .timetable-layout,
  .timetable-cards,
  .timetable-cards article {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .timetable-section h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .timetable-section .section-head p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .time-range {
    font-size: 1.58rem;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 14px);
    padding: 2px 14px 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 14px;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--green-bright) rgba(255, 255, 255, 0.14);
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 5px;
  }

  .gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: var(--green-bright);
    border-radius: 999px;
  }

  .training-paths {
    gap: 34px;
    max-width: 100%;
    min-width: 0;
  }

  .training-section,
  .training-section .container,
  .training-section .section-head,
  .training-path,
  .training-path-copy,
  .training-collage {
    max-width: 100%;
    min-width: 0;
  }

  .training-section {
    overflow-x: clip;
  }

  .training-section .section-head h2 {
    font-size: clamp(1.82rem, 9.2vw, 2.38rem);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .training-section .section-head p {
    max-width: 31ch;
    margin-inline: auto;
    overflow-wrap: anywhere;
  }

  .training-path-intro,
  .discipline-list h4,
  .discipline-list p {
    overflow-wrap: anywhere;
  }

  .training-path-intro {
    max-width: 35ch;
    font-size: 0.9rem;
  }

  .discipline-list h4 {
    max-width: 30ch;
  }

  .discipline-list p {
    max-width: 35ch;
    font-size: 0.86rem;
  }

  .discipline-list .discipline-featured {
    grid-template-columns: 25px minmax(0, 1fr);
    margin-top: 16px;
    padding: 18px;
  }

  .discipline-featured p {
    max-width: none;
  }

  .discipline-featured ul {
    gap: 8px;
    margin-top: 15px;
  }

  .discipline-featured li {
    font-size: 0.84rem;
  }

  .training-path {
    padding-top: 30px;
    gap: 24px;
  }

  .training-path h3 {
    max-width: 14ch;
    font-size: clamp(1.62rem, 8.2vw, 2.08rem);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .training-media-stack {
    max-width: 100%;
    gap: 24px;
  }

  .training-media-title {
    display: grid;
    gap: 4px;
    align-items: start;
  }

  .training-media-title small {
    max-width: none;
    text-align: left;
  }

  .training-media-stack .training-carousel {
    aspect-ratio: 4 / 3;
  }
  .training-carousel,
  .training-collage-single {
    width: 100%;
    aspect-ratio: 1;
  }

  .training-carousel-track {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--green-bright) rgba(255, 255, 255, 0.14);
    -webkit-overflow-scrolling: touch;
  }

  .training-carousel-track::-webkit-scrollbar {
    height: 5px;
  }

  .training-carousel-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }

  .training-carousel-track::-webkit-scrollbar-thumb {
    background: var(--green-bright);
    border-radius: 999px;
  }

  .training-carousel-arrow {
    display: none;
  }

  .discipline-list article {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item:not(.gallery-item-large) {
    flex: 0 0 min(82vw, 330px);
    height: 265px;
    scroll-snap-align: start;
  }

  .voices-heading {
    margin-bottom: 26px;
  }

  .voices-section .section-head h2 {
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .voices-section .section-head > p:last-child {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .google-opinions-link {
    padding: 12px 15px;
  }

  .voice-featured {
    min-height: 0;
    gap: 17px;
    padding: 24px;
  }

  .voice-featured blockquote {
    max-width: none;
    font-size: 1.48rem;
    line-height: 1.17;
  }

  .voice-stars {
    font-size: 0.98rem;
  }

  .voice-stars-featured {
    font-size: 1.08rem;
  }

  .voice-entry {
    padding: 19px 2px;
  }

  .voice-entry blockquote {
    font-size: 0.98rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 64px;
    height: 64px;
  }

  .whatsapp-float .icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 460px) {
  .whatsapp-popup-overlay {
    padding: 16px;
  }

  .whatsapp-popup {
    max-height: calc(100dvh - 32px);
    padding: 30px 20px 22px;
    overflow-y: auto;
  }

  .whatsapp-popup-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .whatsapp-popup-brand {
    margin-bottom: 15px;
  }

  .whatsapp-popup h2 {
    max-width: calc(100% - 42px);
    font-size: 1.52rem;
  }

  .whatsapp-popup-copy {
    margin-bottom: 20px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .whatsapp-popup-button {
    min-height: 54px;
    padding-inline: 14px;
    font-size: 0.88rem;
  }

  .contact-item-copy {
    grid-template-columns: 1fr;
  }

  .opening-actions-panel {
    width: 100%;
  }

  .opening-facts {
    width: 100%;
  }

  .opening-facts li {
    justify-content: center;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(154, 247, 181, 0.18);
  }

  .opening-facts li:last-child {
    border-bottom: 0;
  }

  .opening-buttons .button,
  .final-cta-box .button {
    width: 100%;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 46px;
    height: 46px;
  }

  .section {
    padding: 64px 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 62px;
    height: 62px;
  }
}




/* Final polish for separated fitness/cardio and activities media block */
.training-path:first-child {
  align-items: stretch;
}

.training-path:first-child .training-path-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.training-path:first-child .discipline-list {
  margin-top: auto;
}

.training-path:first-child .discipline-featured {
  padding: clamp(22px, 2.5vw, 30px);
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 239, 154, 0.14), transparent 17rem),
    linear-gradient(135deg, rgba(154, 247, 181, 0.14), rgba(15, 143, 85, 0.055)),
    rgba(255, 255, 255, 0.035);
  border-color: rgba(154, 247, 181, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 52px rgba(0, 0, 0, 0.12);
}

.training-path:first-child .discipline-featured h4 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
}

.training-path:first-child .discipline-featured p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.6;
}

.training-path:first-child .discipline-featured ul {
  gap: 10px;
  margin-top: 20px;
}

.training-path:first-child .discipline-featured li {
  color: rgba(255, 255, 255, 0.9);
}

.training-media-stack {
  max-width: 620px;
  gap: 20px;
  align-self: center;
}

.training-media-card {
  gap: 12px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(154, 247, 181, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(154, 247, 181, 0.13);
  border-radius: 10px;
}

.training-media-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  align-items: end;
  gap: 16px;
  padding-inline: 2px;
}

.training-media-title span {
  color: var(--green-bright);
  letter-spacing: 0;
}

.training-media-title small {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.training-media-stack .training-carousel {
  width: 100%;
  aspect-ratio: 16 / 8.2;
}

@media (min-width: 860px) {
  .training-path:first-child {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(36px, 5vw, 62px);
  }

  .training-path:first-child .training-path-copy {
    padding-block: 12px;
  }
}

@media (max-width: 859px) {
  .training-path:first-child .training-path-copy {
    display: block;
  }

  .training-path:first-child .discipline-list {
    margin-top: 0;
  }

  .training-path:first-child .discipline-featured {
    padding: 18px;
  }

  .training-media-stack {
    gap: 18px;
  }

  .training-media-card {
    padding: 10px;
  }

  .training-media-title {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .training-media-title small {
    max-width: none;
    text-align: left;
  }

  .training-media-stack .training-carousel {
    aspect-ratio: 4 / 3 !important;
  }
}

/* Tighten the fitness/cardio copy column after media split */
.training-path-label {
  width: max-content;
  max-width: 100%;
}

.training-path:first-child .training-path-copy {
  justify-content: flex-start;
}

.training-path:first-child .training-path-intro {
  margin-bottom: 18px;
}

.training-path:first-child .discipline-list {
  margin-top: 0;
}

.training-path:first-child .discipline-featured {
  margin-top: 0;
}

@media (min-width: 860px) {
  .training-path:first-child .training-path-copy {
    padding-block: 0;
  }
}

/* List-style fitness/cardio details, matching the water section rhythm */
.training-path:first-child .discipline-list {
  margin-top: 22px;
  border-top-color: rgba(154, 247, 181, 0.22);
}

.training-path:first-child .discipline-list article:not(.discipline-featured) {
  padding: 18px 0;
}

.training-path:first-child .discipline-list article:not(.discipline-featured):last-child {
  border-bottom-color: rgba(154, 247, 181, 0.22);
}

.training-path:first-child .discipline-list h4 {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.training-path:first-child .discipline-list p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 860px) {
  .training-path:first-child .training-path-copy {
    justify-content: center;
  }

  .training-path:first-child .training-path-intro {
    margin-bottom: 0;
  }
}

@media (max-width: 859px) {
  .training-path:first-child .discipline-list {
    margin-top: 18px;
  }

  .training-path:first-child .discipline-list article:not(.discipline-featured) {
    padding: 15px 0;
  }
}

/* Premium media cards for separated training photos */
.training-media-card {
  gap: 14px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(123, 239, 154, 0.09), transparent 16rem),
    linear-gradient(145deg, rgba(154, 247, 181, 0.06), rgba(255, 255, 255, 0.018));
  border-color: rgba(154, 247, 181, 0.2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.training-media-title {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 0 2px;
}

.training-media-title span {
  font-size: 0.92rem;
  line-height: 1.1;
}

.training-media-title small {
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: left;
}

.training-media-card .training-carousel-track {
  border-radius: 7px;
}

.training-media-card .training-photo {
  border-color: rgba(154, 247, 181, 0.18);
  box-shadow: none;
}

.training-media-card .training-photo figcaption {
  left: 16px;
  bottom: 13px;
  padding: 0;
  font-size: 0.86rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.training-media-stack .training-carousel-arrow {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #b8ffca, var(--green-bright));
}

.training-media-stack .training-carousel-prev {
  left: 12px;
}

.training-media-stack .training-carousel-next {
  right: 12px;
}

@media (min-width: 860px) {
  .training-media-stack {
    gap: 20px;
  }

  .training-media-card {
    padding: 14px;
  }
}

@media (max-width: 859px) {
  .training-media-card {
    padding: 11px;
  }

  .training-media-title span {
    font-size: 0.86rem;
  }

  .training-media-title small {
    font-size: 0.76rem;
  }
}

/* Stable slide sizing for separated training carousels */
.training-carousel-track > .training-slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-stop: always;
}

/* Full-photo carousel framing for client gallery updates */
.training-media-stack .training-carousel {
  aspect-ratio: 4 / 3 !important;
}

.training-media-card .training-photo {
  background:
    radial-gradient(circle at 50% 35%, rgba(154, 247, 181, 0.12), transparent 44%),
    linear-gradient(145deg, #061f18, #02140f);
}

.training-media-card .training-photo img {
  object-fit: contain;
  background: transparent;
}

.training-media-card .training-photo:hover img {
  transform: none;
}

@media (max-width: 859px) {
  .training-media-stack .training-carousel {
    aspect-ratio: 1 / 1 !important;
  }
}
