:root {
  --navy: #06254a;
  --yellow: #ffc90d;
  --text: #08264a;
  --page-max: 1680px;
  --page-gutter: clamp(24px, 4vw, 80px);
  --safe-top: env(safe-area-inset-top, 0px);
  --header-h: calc(104px + var(--safe-top));
  --booking-photo: url("assets/volley.jpg");
}

/* WebP dove supportato: stessa immagine, circa il 25% di byte in meno. */
@supports (background-image: image-set(url("assets/volley.webp") type("image/webp"))) {
  :root {
    --booking-photo: image-set(url("assets/volley.webp") type("image/webp"), url("assets/volley.jpg") type("image/jpeg"));
  }
}

html {
  scroll-padding-top: var(--header-h);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
}

/* <picture> avvolge le immagini solo per offrire il WebP: resta fuori dal layout. */
picture {
  display: contents;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: var(--safe-top);
  background: #fff;
  box-shadow: 0 10px 30px #061d3a1f;
  isolation: isolate;
}

/* Scudo per la status bar iOS. Si estende molto sopra l'header perche' su
   alcuni iPhone Safari ancora il position:sticky sotto la status bar ma
   riporta env(safe-area-inset-top) = 0: senza questa fascia il contenuto
   della pagina scorre visibile nella striscia sopra l'header. */
header:before {
  content: "";
  position: absolute;
  top: -200px;
  right: 0;
  left: 0;
  height: calc(200px + var(--safe-top));
  background: var(--navy);
  pointer-events: none;
  z-index: 40;
}

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

.topbar {
  min-height: 40px;
  padding: 0 var(--page-gutter);
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, minmax(138px, 220px));
  justify-content: center;
  column-gap: clamp(18px, 3vw, 56px);
  align-items: center;
  font-size: 14px;
}

.topbar span {
  justify-self: start;
  white-space: nowrap;
}

.topbar__track,
.topbar__group {
  display: contents;
}

.topbar__group--duplicate {
  display: none;
}

.topbar span:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.nav {
  min-height: 64px;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.nav img {
  display: block;
  width: auto;
  height: clamp(44px, 4vw, 56px);
}

.nav-toggle,
.nav-burger {
  display: none;
}

.links {
  margin-left: 0;
  display: flex;
  gap: clamp(20px, 2.4vw, 44px);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.links a {
  padding: 29px 0 25px;
}

.links .active {
  border-bottom: 3px solid var(--yellow);
}

.btn {
  --btn-bg: var(--yellow);
  --btn-color: #061d3a;
  --btn-hover-bg: #ffdb45;
  --btn-hover-color: #061d3a;
  --btn-hover-shadow: 0 16px 30px #061d3a26;
  background: var(--btn-bg);
  border: 0;
  border-radius: 14px;
  color: var(--btn-color);
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 0 #0000;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.text-link {
  margin-top: 22px;
  color: var(--navy);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 7px;
}

.nav .btn {
  width: 134px;
  height: 40px;
  font-size: 12px;
  flex: 0 0 auto;
}

.hero {
  height: clamp(430px, 42vw, 660px);
  background: url("assets/hero.jpg") center/cover no-repeat;
  background-image: image-set(url("assets/hero.webp") type("image/webp"), url("assets/hero.jpg") type("image/jpeg"));
}

.sr {
  position: absolute;
  left: -9999px;
}

.booking {
  width: min(1380px, calc(100% - (var(--page-gutter) * 2)));
  margin: -74px auto 78px;
  padding: 0;
  background: linear-gradient(135deg, #061d3a 0%, #082f5f 100%);
  border-radius: 8px;
  box-shadow: 0 24px 55px #061d3a30;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(320px, .78fr) auto;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.booking:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--yellow);
}

.booking:after {
  content: "";
  position: absolute;
  right: 240px;
  top: -72px;
  width: 190px;
  height: 190px;
  border: 24px solid #ffffff12;
  border-radius: 50%;
}

.booking__headline,
.booking__details,
.booking .btn {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.booking__headline {
  padding: clamp(30px, 3.2vw, 48px) clamp(30px, 3.6vw, 58px);
}

.booking__details {
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
  border-left: 1px solid #ffffff24;
}

.booking__headline > span {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
}

.booking h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: .95;
  letter-spacing: .5px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.booking p {
  margin: 0;
  color: #dfeaf7;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 700;
  line-height: 1.55;
}

.booking__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking__chips span {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #ffffff28;
  border-radius: 999px;
  color: #fff;
  background: #ffffff12;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking .btn {
  min-width: 250px;
  min-height: 56px;
  margin: 28px 34px 28px 8px;
  padding: 0 26px;
  background: var(--yellow);
  color: #061d3a;
  font-size: 13px;
  text-align: center;
  box-shadow: 0 12px 28px #00000024;
}

.booking .btn:after {
  content: ">";
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
}

.intro,
.sports,
.services,
.info,
.foot {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
}

.intro {
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.intro > *,
.sports article,
.sports div,
.grid figure,
.info > *,
.page-hero > div,
.about-story > *,
.about-snapshot article,
.about-center__grid article,
.about-philosophy > *,
.about-video > *,
.about-cta > *,
.booking-hero__content,
.booking-panel > *,
.booking-details > *,
.app-install > *,
.section-heading > *,
.reviews > * {
  min-width: 0;
}

.intro h1,
.services h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.intro h1 {
  font-size: clamp(44px, 4.2vw, 72px);
  line-height: .96;
  margin: 0 0 32px;
  overflow-wrap: break-word;
}

.intro h1:after,
.services h2:after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--yellow);
  margin-top: 18px;
}

.intro p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 8px;
}

.place-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.place-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, #061d3ab0 0%, #063c7866 34%, #061d3a1f 68%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.place-photo img {
  display: block;
  width: 100%;
  /* Neutralizza l'attributo height del markup, che serve solo a riservare spazio. */
  height: auto;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03);
}

.sports {
  margin: 0 auto 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sports__toggle {
  display: none;
}

.sports__swap {
  display: none;
}

.sports article {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  box-shadow: 0 14px 32px #00000012;
  position: relative;
}

.sports article:before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  background: radial-gradient(circle at 0 0, #061d3ab8 0%, #063c7875 38%, #061d3a26 72%, transparent 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.sports img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.sports div {
  background: var(--navy);
  color: #fff;
  padding: clamp(30px, 3vw, 48px) clamp(24px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.sports b {
  font: 900 clamp(38px, 3.4vw, 58px)/.95 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.sports ul {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  font-size: 15px;
  line-height: 1.9;
}

.sports li:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.sports .btn {
  min-width: 172px;
  height: 42px;
  margin-top: auto;
  font-size: 14px;
}

.services {
  margin: 0 auto 70px;
  text-align: center;
}

.services h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 2.8vw, 44px);
  margin: 0 0 30px;
}

.services h2:after {
  margin: 14px auto 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.grid figure {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 15px;
  --service-icon: url("assets/icons/soccer-ball.svg");
  position: relative;
}

.grid figure:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  aspect-ratio: 1;
  border-radius: 8px;
  background: radial-gradient(circle at 0 0, #061d3ab0 0%, #063c7866 34%, #061d3a1f 68%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.grid img {
  display: block;
  width: 100%;
  /* L'altezza la detta aspect-ratio, non l'attributo height del markup. */
  height: auto;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03);
}

.grid span {
  display: block;
  position: relative;
  z-index: 2;
}

.grid figure:nth-child(2) {
  --service-icon: url("assets/icons/dumbbell.svg");
}

.grid figure:nth-child(3) {
  --service-icon: url("assets/icons/trampoline.svg");
}

.grid figure:nth-child(4) {
  --service-icon: url("assets/icons/ping-pong.svg");
}

.grid figure:nth-child(5) {
  --service-icon: url("assets/icons/playground.svg");
}

.grid figure:nth-child(6) {
  --service-icon: url("assets/icons/coffee.svg");
}

.grid span:before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin: 12px auto 8px;
  background: var(--service-icon) center/contain no-repeat;
}

.event {
  min-height: clamp(300px, 28vw, 440px);
  padding: clamp(38px, 5vw, 76px) var(--page-gutter);
  background: linear-gradient(90deg, #061d3ade 0%, #061d3ab5 42%, #061d3a24 100%), url("assets/event.jpg") center/cover no-repeat;
  background-image: linear-gradient(90deg, #061d3ade 0%, #061d3ab5 42%, #061d3a24 100%), image-set(url("assets/event.webp") type("image/webp"), url("assets/event.jpg") type("image/jpeg"));
  color: #fff;
  display: flex;
  align-items: center;
}

.event__content {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.event span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.event h2 {
  width: 100%;
  max-width: 720px;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: .94;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.event p {
  width: 100%;
  max-width: 560px;
  margin: 22px auto 28px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
}

.event .btn {
  min-width: 210px;
  min-height: 50px;
  padding: 0 24px;
  font-size: 13px;
}

.info {
  margin: 36px auto 28px;
  display: grid;
  grid-template-columns: minmax(360px, 420px) 1fr;
  gap: 28px;
}

.hours {
  border: 1px solid #d6dde8;
  border-radius: 12px;
  padding: 34px 44px;
}

.hours h2 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.hours p {
  font-size: 18px;
  line-height: 1.5;
  margin: 16px 0;
  text-transform: uppercase;
}

.hours hr {
  border: 0;
  border-top: 1px solid #ccd5e1;
}

.map {
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.map:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  object-fit: cover;
  object-position: left center;
}

.page-hero {
  min-height: clamp(380px, 38vw, 620px);
  padding: clamp(72px, 8vw, 132px) var(--page-gutter);
  color: #fff;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(90deg, #061d3ad9 0%, #061d3a99 43%, #061d3a1f 100%), url("assets/hero.jpg") center/cover no-repeat;
  background-image: linear-gradient(90deg, #061d3ad9 0%, #061d3a99 43%, #061d3a1f 100%), image-set(url("assets/hero.webp") type("image/webp"), url("assets/hero.jpg") type("image/jpeg"));
}

.page-hero > div {
  width: min(880px, 100%);
  margin: 0 auto 0 max(calc((100% - var(--page-max)) / 2), 0px);
}

.page-hero span,
.section-heading span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 12px 0 18px;
  max-width: 850px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(46px, 5.4vw, 88px);
  line-height: .95;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
}

.about-hero {
  background:
    linear-gradient(90deg, #061d3ae8 0%, #061d3aa6 45%, #061d3a29 100%),
    url("assets/about-hero.jpg") center/cover no-repeat;
  background-image:
    linear-gradient(90deg, #061d3ae8 0%, #061d3aa6 45%, #061d3a29 100%),
    image-set(url("assets/about-hero.webp") type("image/webp"), url("assets/about-hero.jpg") type("image/jpeg"));
}

.about-story,
.about-snapshot,
.about-center,
.about-philosophy,
.about-video,
.about-cta {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.about-story {
  margin-top: 72px;
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 5.6vw, 90px);
  align-items: center;
}

.about-story h2,
.about-center h2,
.about-philosophy h2,
.about-video h2,
.about-cta h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.about-story h2:after,
.about-center h2:after,
.about-video h2:after,
.section-heading h2:after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 18px;
  background: var(--yellow);
}

.about-story p,
.about-video p {
  max-width: 640px;
  margin: 0 0 14px;
  color: #344964;
  font-size: 18px;
  line-height: 1.7;
}

.about-story__media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px #051a3417;
}

.about-story__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
}

.about-snapshot {
  margin-bottom: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dbe3ef;
  border-bottom: 1px solid #dbe3ef;
}

.about-snapshot article {
  min-height: 132px;
  padding: 30px clamp(22px, 2.4vw, 42px);
  border-right: 1px solid #dbe3ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-snapshot article:last-child {
  border-right: 0;
}

.about-snapshot strong {
  color: var(--navy);
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.about-snapshot span {
  margin-top: 10px;
  color: #53657c;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-center {
  margin-bottom: 78px;
}

.about-center__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-center__switch,
.about-center__swap {
  display: none;
}

.about-center__grid article {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #dbe3ef;
  background: #fff;
  box-shadow: 0 14px 32px #051a3410;
}

.about-center__grid img {
  display: block;
  width: 100%;
  /* L'altezza la detta aspect-ratio, non l'attributo height del markup. */
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-center__grid div {
  padding: 26px;
}

.about-center__grid h3,
.about-philosophy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  text-transform: uppercase;
}

.about-center__grid p,
.about-philosophy p {
  margin: 0;
  color: #40536c;
  font-size: 16px;
  line-height: 1.65;
}

.about-philosophy {
  margin-bottom: 78px;
  padding: clamp(34px, 4.6vw, 66px);
  border-radius: 8px;
  background: #f4f7fb;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.about-philosophy__list {
  display: grid;
  gap: 22px;
}

.about-philosophy__list article {
  padding-bottom: 22px;
  border-bottom: 1px solid #d7e0ec;
}

.about-philosophy__list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-video {
  margin-bottom: 78px;
  display: grid;
  grid-template-columns: minmax(320px, .64fr) 1fr;
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 44px #00000018;
  aspect-ratio: 16 / 9;
}

.video-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.custom-video-player iframe {
  pointer-events: none;
  user-select: none;
}

.video-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid #ffffff2e;
  border-radius: 8px;
  background: #061d3ad9;
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 42px 42px 1fr;
  gap: 12px;
  align-items: center;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
}

.video-control {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform .2s ease,
    background-color .2s ease;
}

.video-control:hover {
  background: #ffdb45;
  transform: translateY(-1px);
}

.video-icon {
  width: 22px;
  height: 22px;
  display: none;
  flex: 0 0 22px;
  pointer-events: none;
}

.video-icon--play,
.video-icon--pause {
  fill: currentColor;
  stroke: none;
}

.video-icon--play {
  transform: translateX(1px);
}

.video-icon--volume,
.video-icon--muted {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-control--play.is-paused .video-icon--play,
.video-control--play.is-playing .video-icon--pause,
.video-control--mute.is-audible .video-icon--volume,
.video-control--mute.is-muted .video-icon--muted {
  display: block;
}

.video-progress {
  width: 100%;
  height: 6px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.about-cta {
  margin-bottom: 72px;
  padding: clamp(30px, 4vw, 56px);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.about-cta h2 {
  color: #fff;
  margin-top: 10px;
}

.about-cta p {
  max-width: 720px;
  margin: 0;
  color: #d9e5f5;
  font-size: 18px;
  line-height: 1.55;
}

.about-cta .btn {
  min-width: 180px;
  min-height: 48px;
}

footer {
  position: relative;
  overflow: hidden;
  background: #04182f;
  color: #fff;
  isolation: isolate;
}

footer:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 9% 14%, #ffc90d26 0 1px, transparent 2px) 0 0 / 19px 19px,
    radial-gradient(circle at 88% 18%, #2b78c433, transparent 28%),
    linear-gradient(120deg, #061f3d 0%, #041426 58%, #062849 100%);
}

footer:after {
  content: "";
  position: absolute;
  right: -120px;
  top: 18px;
  z-index: -1;
  width: min(420px, 38vw);
  aspect-ratio: 1;
  border: 1px solid #ffffff12;
  border-radius: 50%;
  box-shadow: -240px 210px 0 -120px #ffc90d12;
  pointer-events: none;
}

.foot {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: auto;
  padding: clamp(44px, 5.4vw, 68px) 0 34px;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, .62fr) minmax(170px, .72fr) minmax(260px, 1fr);
  gap: clamp(28px, 4.8vw, 72px);
  align-items: start;
  border-bottom: 1px solid #ffffff24;
}

.foot__brand-block {
  max-width: 440px;
}

.foot__brand {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.foot__brand img {
  display: block;
  width: clamp(148px, 13vw, 220px);
  height: auto;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
}

.foot__quick-actions {
  margin: 24px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.foot__icon {
  width: 54px;
  height: 54px;
  border: 1px solid #ffffff33;
  border-radius: 50%;
  background: #ffffff10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.foot__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.foot__icon:hover,
.foot__icon:focus-visible {
  border-color: var(--yellow);
  background: #ffc90d22;
  transform: translateY(-3px);
}

.foot__brand-block p {
  max-width: 430px;
  margin: 0;
  color: #cbd8ea;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.62;
}

.foot__section h2 {
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

.foot__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.foot__section,
.foot__section a {
  font-size: 16px;
  line-height: 1.45;
}

.foot__section a {
  color: #dbe6f3;
  text-underline-offset: 5px;
  transition:
    color .2s ease,
    text-decoration-color .2s ease;
}

.foot__section a:hover,
.foot__section a:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
}

.foot__links a {
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  text-transform: none;
}

.foot__links a:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff91;
  border-radius: 50%;
  flex: 0 0 8px;
  box-shadow: 0 0 0 4px #ffffff0a;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.foot__links a:hover:before,
.foot__links a:focus-visible:before {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px #ffc90d1f;
}

.foot__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.foot__contact-list li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.foot__contact-label {
  color: #fff;
  font-weight: 900;
}

.foot__contact-list a {
  color: #dbe6f3;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2vw, 32px);
  bottom: clamp(18px, 2.5vw, 34px);
  z-index: 80;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px #061d3a38;
  animation: whatsapp-float 3.2s ease-in-out infinite;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(70%) saturate(1039%) hue-rotate(177deg) brightness(93%) contrast(102%);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  animation: none;
  background: #ffdb45;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 42px #061d3a45;
}

.whatsapp-float:focus-visible {
  outline: 3px solid #0b376c;
  outline-offset: 4px;
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes mobile-topbar-numbers {
  to {
    transform: translateX(-50%);
  }
}

.foot__legal {
  padding: 0;
  color: #c9d8ea;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.foot__legal a {
  color: #c9d8ea;
  transition: color .2s ease;
}

.foot__legal a:hover,
.foot__legal a:focus-visible {
  color: var(--yellow);
}

.foot__bottom {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: auto;
  padding: 18px 0 24px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 16px 28px;
  align-items: center;
}

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

.foot__institutional-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: min(38vw, 184px);
  padding: 5px 7px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 20px #0000002b;
}

.foot__institutional-logo--region {
  height: 36px;
}

.foot__institutional-logo--sport {
  max-width: min(42vw, 218px);
}

.legal-page {
  background: #f7f9fc;
}

.legal-hero {
  padding: clamp(54px, 7vw, 96px) var(--page-gutter);
  background: var(--navy);
  color: #fff;
}

.legal-hero > div,
.legal-content {
  width: min(980px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 10px 0 0;
  font: 900 clamp(40px, 5vw, 72px)/.95 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.legal-content {
  padding: clamp(42px, 5vw, 72px) 0;
}

.legal-content section {
  padding: 28px 0;
  border-bottom: 1px solid #dbe3ef;
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #31445e;
  font-size: 17px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--yellow);
}

.booking-page {
  background: #f7f9fc;
}

.booking-hero {
  min-height: clamp(460px, 45vw, 690px);
  padding: clamp(64px, 8vw, 122px) var(--page-gutter);
  background:
    linear-gradient(90deg, #061f3df7 0%, #06254ae8 44%, #06254a80 68%, #06254a18 100%),
    var(--booking-photo) right 48% / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.booking-hero__content {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.booking-hero h1 {
  margin: 14px 0 22px;
  font: 900 clamp(48px, 6.8vw, 104px)/.92 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  max-width: 760px;
}

.booking-hero p {
  max-width: 620px;
  margin: 0;
  color: #e8f1fb;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn,
.section-heading .btn,
.booking-panel .btn {
  min-height: 48px;
  padding: 0 24px;
  font-size: 13px;
}

.btn-outline {
  --btn-bg: transparent;
  --btn-color: #fff;
  --btn-hover-bg: #fff;
  --btn-hover-color: var(--navy);
  --btn-hover-shadow: 0 16px 30px #00000030;
  border: 2px solid #fff;
  background: var(--btn-bg);
  color: var(--btn-color);
}

.booking-panel,
.booking-details,
.app-install,
.review-section {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
}

.booking-panel {
  margin: -54px auto 64px;
  padding: clamp(26px, 3vw, 42px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 42px #051a341d;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-panel h2,
.booking-copy h2,
.booking-card h2,
.app-install h2,
.section-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  text-transform: uppercase;
}

.booking-panel h2 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
}

.booking-panel p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #465871;
  font-size: 17px;
  line-height: 1.55;
}

.booking-panel .btn {
  min-width: 260px;
  --btn-bg: var(--navy);
  --btn-color: #fff;
  --btn-hover-bg: #0b376c;
  --btn-hover-color: #fff;
  background: var(--btn-bg);
  color: var(--btn-color);
  text-align: center;
}

.booking-details {
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.booking-copy {
  padding: clamp(26px, 4vw, 54px) 0;
}

.booking-copy h2 {
  max-width: 920px;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1;
}

.booking-copy p {
  max-width: 850px;
  color: #31445e;
  font-size: 18px;
  line-height: 1.7;
}

.booking-copy a,
.booking-card a {
  color: var(--navy);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--yellow);
  text-transform: uppercase;
  font-size: 14px;
}

.booking-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  box-shadow: 0 14px 32px #051a3412;
}

.booking-card h2 {
  font-size: 28px;
}

.booking-card p {
  color: #344761;
  font-size: 16px;
  line-height: 1.55;
}

.booking-card hr {
  border: 0;
  border-top: 1px solid #dbe3ef;
  margin: 22px 0;
}

.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.contact-list p {
  margin: 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.app-install {
  margin: 0 auto 68px;
  padding: clamp(30px, 4vw, 56px);
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) 1fr;
  gap: 32px;
  align-items: center;
}

.app-install h2 {
  color: #fff;
  font-size: clamp(30px, 3.7vw, 58px);
  line-height: 1;
}

.app-install p {
  margin: 0;
  color: #edf5ff;
  font-size: 18px;
  line-height: 1.7;
}

.review-section {
  margin: 0 auto 76px;
}

.section-heading {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 880px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.05;
}

.section-heading .btn {
  min-width: 190px;
  --btn-bg: var(--navy);
  --btn-color: #fff;
  --btn-hover-bg: #0b376c;
  --btn-hover-color: #fff;
  background: var(--btn-bg);
  color: var(--btn-color);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  min-height: 286px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dde5f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
}

.review-card h3 {
  margin: 18px 0 6px;
  color: var(--navy);
  font-size: 20px;
}

.review-card strong {
  color: #263b55;
  font-size: 15px;
}

.review-card p {
  margin: 16px 0 0;
  color: #40536c;
  font-size: 15px;
  line-height: 1.55;
}

/* Transizioni di pagina: fade out all'uscita, fade in all'ingresso */
@keyframes page-veil-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes page-veil-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-content-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

html:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  animation: page-veil-out .45s ease forwards;
}

html.is-leaving:after {
  animation: page-veil-in .3s ease forwards;
}

main {
  animation: page-content-in .6s cubic-bezier(.22, .61, .36, 1) both;
}

header {
  animation: page-veil-in .5s ease both;
}

.whatsapp-float {
  animation:
    page-veil-in .6s .25s ease both,
    whatsapp-float 3.2s .85s ease-in-out infinite;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s cubic-bezier(.22, .61, .36, 1),
    transform .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.scroll-reveal--visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.scroll-animations-disabled .scroll-reveal {
  opacity: 1;
  transform: none;
}

.btn:hover,
.btn:focus-visible {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  transform: translateY(-3px);
  box-shadow: var(--btn-hover-shadow);
}

.btn:focus-visible {
  outline: 3px solid #0b376c;
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px #061d3a1f;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html:after,
  html.is-leaving:after {
    animation: none;
    opacity: 0;
  }

  main,
  header {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .btn {
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }

  .btn:hover,
  .btn:focus-visible,
  .btn:active,
  .whatsapp-float,
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
    padding: 12px 0;
  }

  .nav-menu {
    gap: 20px;
  }

  .links {
    gap: 18px;
    justify-content: flex-start;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .booking:after {
    right: -46px;
  }

  .booking__headline,
  .booking__details {
    padding: 30px 34px;
  }

  .booking__details {
    border-top: 1px solid #ffffff24;
    border-left: 0;
  }

  .booking .btn {
    justify-self: start;
    margin: 0 34px 34px;
  }

  .intro,
  .sports,
  .info,
  .about-story,
  .about-philosophy,
  .about-video {
    grid-template-columns: 1fr;
  }

  .about-snapshot,
  .about-center__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-snapshot article:nth-child(2) {
    border-right: 0;
  }

  .about-snapshot article:nth-child(-n + 2) {
    border-bottom: 1px solid #dbe3ef;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sports article {
    min-height: 320px;
  }

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

  .foot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px clamp(32px, 6vw, 72px);
  }

  .foot__brand-block {
    grid-column: 1 / -1;
  }

  .foot__bottom {
    grid-template-columns: 1fr;
  }

  .foot__legal,
  .foot__institutional {
    justify-content: center;
    text-align: center;
  }

  .booking-panel,
  .booking-details,
  .app-install,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .booking-panel .btn,
  .section-heading .btn {
    justify-self: start;
  }

  .booking-card {
    position: static;
  }

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

@media (max-width: 720px) {
  :root {
    --page-gutter: 16px;
    --header-h: calc(96px + var(--safe-top));
  }

  html {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* overflow-x: hidden sul body lo renderebbe uno scroll container e
     annullerebbe lo sticky dell'header: clip taglia senza scrollare. */
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .topbar {
    min-height: 34px;
    padding: 0 0 0 var(--page-gutter);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
    scrollbar-width: none;
  }

  .topbar:before,
  .topbar:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 24px;
    pointer-events: none;
  }

  .topbar:before {
    left: 0;
    background: linear-gradient(90deg, var(--navy), #06254a00);
  }

  .topbar:after {
    right: 0;
    background: linear-gradient(270deg, var(--navy), #06254a00);
  }

  .topbar::-webkit-scrollbar {
    display: none;
  }

  .topbar__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: mobile-topbar-numbers 17s linear infinite;
    will-change: transform;
  }

  .topbar__group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 46px;
    padding-right: 46px;
  }

  .topbar__group--duplicate {
    display: flex;
  }

  .topbar span {
    flex: 0 0 auto;
    justify-self: auto;
  }

  .topbar__email {
    display: none;
  }

  .topbar span:before {
    width: 7px;
    height: 7px;
    margin-right: 7px;
  }

  .nav {
    position: relative;
    width: calc(100% - (var(--page-gutter) * 2));
    min-height: auto;
    padding: 10px 0;
    gap: 12px;
    z-index: 20;
  }

  .nav img {
    height: 42px;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    width: 44px;
    height: 44px;
    opacity: 0;
    pointer-events: none;
  }

  .nav-burger {
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px #061d3a12;
    cursor: pointer;
  }

  .nav-burger span,
  .nav-burger span:before,
  .nav-burger span:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-burger span {
    position: relative;
  }

  .nav-burger span:before,
  .nav-burger span:after {
    position: absolute;
    left: 0;
  }

  .nav-burger span:before {
    top: -7px;
  }

  .nav-burger span:after {
    top: 7px;
  }

  .nav-toggle:focus-visible + .nav-burger {
    outline: 3px solid #0b376c;
    outline-offset: 3px;
  }

  .nav-toggle:checked + .nav-burger span {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-burger span:before {
    transform: translateY(7px) rotate(90deg);
  }

  .nav-toggle:checked + .nav-burger span:after {
    opacity: 0;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: calc(var(--page-gutter) * -1);
    right: calc(var(--page-gutter) * -1);
    margin-left: 0;
    padding: 16px var(--page-gutter) 18px;
    border: 1px solid #dbe3ef;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
    box-shadow: 0 20px 42px #061d3a24;
    display: none;
    gap: 10px;
    z-index: 30;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: grid;
  }

  .links {
    margin: 0;
    padding-bottom: 2px;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    font-size: 11px;
  }

  .links::-webkit-scrollbar {
    display: none;
  }

  .links a {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    background: #f7f9fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .nav .btn {
    width: 100%;
    height: 42px;
    margin-left: 0;
    font-size: 12px;
  }

  .links .active {
    border-color: var(--yellow);
    background: #fff8d6;
  }

  .hero {
    height: 300px;
    background-position: center top;
  }

  .booking {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-top: -28px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .booking:after {
    top: auto;
    right: -70px;
    bottom: -88px;
  }

  .booking__headline,
  .booking__details {
    padding: 26px 24px;
  }

  .booking h2 {
    font-size: clamp(31px, 8.4vw, 34px);
    line-height: 1;
  }

  .booking p {
    font-size: 15px;
  }

  .booking__chips span {
    min-height: 32px;
    font-size: 11px;
  }

  .booking .btn {
    width: calc(100% - 48px);
    min-width: 0;
    margin: 0 24px 24px;
    padding: 0 18px;
    font-size: 12px;
  }

  .intro,
  .sports,
  .services,
  .info,
  .about-story,
  .about-snapshot,
  .about-center,
  .about-philosophy,
  .about-video,
  .about-cta {
    width: min(440px, calc(100% - (var(--page-gutter) * 2)));
  }

  .page-hero {
    min-height: 420px;
    padding: 56px var(--page-gutter);
    background-position: center;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p,
  .about-story p,
  .about-video p,
  .about-cta p {
    font-size: 15px;
  }

  .intro {
    gap: 26px;
    margin-bottom: 36px;
  }

  .intro h1 {
    font-size: 38px;
  }

  .intro p {
    font-size: 15px;
  }

  .intro .place-photo img {
    min-height: 240px;
  }

  .about-story {
    margin-top: 42px;
    margin-bottom: 46px;
    gap: 26px;
  }

  .about-story h2,
  .about-center h2,
  .about-philosophy h2,
  .about-video h2,
  .about-cta h2 {
    font-size: 32px;
  }

  .about-story__media img {
    min-height: 250px;
  }

  .about-snapshot {
    margin-bottom: 46px;
    width: 100%;
    max-width: none;
    padding: 0 var(--page-gutter);
    border: 0;
    display: flex;
    gap: 12px;
    scroll-padding-right: 54px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .about-snapshot article {
    min-height: 126px;
    padding: 22px 20px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    flex: 0 0 calc(100% - 54px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .about-snapshot article:last-child {
    border-bottom: 1px solid #dbe3ef;
  }

  .about-snapshot strong {
    font-size: 28px;
  }

  .about-center,
  .about-philosophy,
  .about-video,
  .about-cta {
    margin-bottom: 46px;
  }

  .video-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 8px 10px;
    grid-template-columns: 40px 40px minmax(0, 1fr);
    gap: 10px;
  }

  .video-control {
    width: 40px;
    height: 40px;
  }

  .video-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .about-center__grid {
    padding: 0 0 58px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    isolation: isolate;
    overflow: visible;
    scroll-snap-type: none;
  }

  .about-center__grid article {
    --content-opacity: 0;
    grid-area: 1 / 1;
    flex: none;
    scroll-snap-align: none;
    transition:
      transform .3s ease,
      opacity .3s ease,
      box-shadow .3s ease;
  }

  .about-center__grid article div > * {
    opacity: var(--content-opacity);
    transition: opacity .2s ease;
  }

  .about-center__grid img {
    aspect-ratio: 5 / 4;
  }

  .about-center__switch {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0;
    pointer-events: none;
  }

  .about-center__swap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 8;
    width: 48px;
    height: 48px;
    border: 1px solid #ffffffd9;
    border-radius: 50%;
    background: #fffffff0;
    color: var(--navy);
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 30px #061d3a33;
    backdrop-filter: blur(12px);
    transition:
      transform .2s ease,
      background-color .2s ease,
      border-color .2s ease,
      box-shadow .2s ease;
  }

  .about-center__swap:hover,
  .about-center__switch:focus-visible ~ .about-center__swap {
    border-color: #ffffff;
    background: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px #061d3a45;
  }

  .about-center__switch:focus-visible ~ .about-center__swap {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
  }

  .deck-swap-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  #about-center-card-1:checked ~ .about-center__swap--to-2,
  #about-center-card-2:checked ~ .about-center__swap--to-3,
  #about-center-card-3:checked ~ .about-center__swap--to-1 {
    display: grid;
  }

  #about-center-card-1:checked ~ .about-center__card--1,
  #about-center-card-2:checked ~ .about-center__card--2,
  #about-center-card-3:checked ~ .about-center__card--3 {
    --content-opacity: 1;
    z-index: 3;
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  #about-center-card-1:checked ~ .about-center__card--2,
  #about-center-card-2:checked ~ .about-center__card--3,
  #about-center-card-3:checked ~ .about-center__card--1 {
    z-index: 2;
    transform: translateY(36px) scale(.95);
    opacity: .76;
    pointer-events: none;
  }

  #about-center-card-1:checked ~ .about-center__card--3,
  #about-center-card-2:checked ~ .about-center__card--1,
  #about-center-card-3:checked ~ .about-center__card--2 {
    z-index: 1;
    transform: translateY(66px) scale(.9);
    opacity: .52;
    pointer-events: none;
  }

  .about-center__grid,
  .about-snapshot,
  .sports,
  .grid,
  .reviews {
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) #e8eef6;
  }

  .about-snapshot:after,
  .reviews:after {
    content: "";
    flex: 0 0 40px;
    pointer-events: none;
  }

  .about-center__grid::-webkit-scrollbar,
  .about-snapshot::-webkit-scrollbar,
  .sports::-webkit-scrollbar,
  .grid::-webkit-scrollbar,
  .reviews::-webkit-scrollbar {
    height: 6px;
  }

  .about-center__grid::-webkit-scrollbar-thumb,
  .about-snapshot::-webkit-scrollbar-thumb,
  .sports::-webkit-scrollbar-thumb,
  .grid::-webkit-scrollbar-thumb,
  .reviews::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--yellow);
  }

  .about-center__grid::-webkit-scrollbar-track,
  .about-snapshot::-webkit-scrollbar-track,
  .sports::-webkit-scrollbar-track,
  .grid::-webkit-scrollbar-track,
  .reviews::-webkit-scrollbar-track {
    background: #e8eef6;
    border-radius: 999px;
  }

  .about-center__grid {
    gap: 16px;
  }

  .about-center__grid div {
    padding: 24px;
  }

  .about-philosophy {
    padding: 24px;
    gap: 24px;
  }

  .about-cta .btn {
    width: 100%;
  }

  .sports {
    width: min(440px, calc(100% - (var(--page-gutter) * 2)));
    max-width: 440px;
    margin-bottom: 46px;
    padding: 0 0 54px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    isolation: isolate;
    overflow: visible;
    scroll-snap-type: none;
  }

  .sports__swap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 8;
    width: 48px;
    height: 48px;
    border: 1px solid #ffffffd9;
    border-radius: 50%;
    background: #fffffff0;
    color: var(--navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 30px #061d3a33;
    backdrop-filter: blur(12px);
    transition:
      transform .2s ease,
      background-color .2s ease,
      border-color .2s ease,
      box-shadow .2s ease;
  }

  .sports__toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0;
    pointer-events: none;
  }

  .sports__swap:hover,
  .sports__toggle:focus-visible + .sports__swap {
    border-color: #ffffff;
    background: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px #061d3a45;
  }

  .sports__toggle:checked + .sports__swap {
    background: var(--yellow);
  }

  .sports__toggle:focus-visible + .sports__swap {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
  }

  .sports__swap-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .28s ease;
  }

  .sports__toggle:checked + .sports__swap .sports__swap-icon {
    transform: rotate(180deg);
  }

  .sports article {
    --content-opacity: 0;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-area: 1 / 1;
    flex: none;
    scroll-snap-align: none;
    transition:
      transform .3s ease,
      opacity .3s ease,
      box-shadow .3s ease;
  }

  .sports article div > * {
    opacity: var(--content-opacity);
    transition: opacity .2s ease;
  }

  .sports article.sports-card--volley {
    --content-opacity: 1;
    z-index: 3;
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .sports article.sports-card--tennis {
    z-index: 1;
    transform: translateY(38px) scale(.94);
    opacity: .82;
    pointer-events: none;
  }

  .sports__toggle:checked ~ .sports-card--volley {
    --content-opacity: 0;
    z-index: 1;
    transform: translateY(38px) scale(.94);
    opacity: .82;
    pointer-events: none;
  }

  .sports__toggle:checked ~ .sports-card--tennis {
    --content-opacity: 1;
    z-index: 3;
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .sports article:before {
    inset: 0 0 auto 0;
    height: clamp(188px, 56vw, 240px);
  }

  .sports img {
    height: clamp(188px, 56vw, 240px);
  }

  .sports div {
    padding: 26px 24px 28px;
  }

  .sports b {
    font-size: clamp(32px, 10vw, 38px);
    line-height: .94;
  }

  .sports ul {
    margin: 18px 0 24px;
    font-size: 14px;
    line-height: 1.6;
  }

  .sports li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .sports li + li {
    margin-top: 10px;
  }

  .sports li:before {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin: 6px 0 0;
  }

  .sports .btn {
    width: 100%;
    min-width: 0;
    height: 48px;
  }

  .grid {
    display: flex;
    gap: 14px;
    scroll-padding-right: 54px;
    padding-bottom: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .grid figure {
    flex: 0 0 calc(100% - 54px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .grid:after {
    content: "";
    flex: 0 0 40px;
  }

  .event {
    min-height: 430px;
    padding: 42px var(--page-gutter);
    background: linear-gradient(180deg, #061d3aed 0%, #061d3ab8 56%, #061d3a30 100%), url("assets/event.jpg") center/cover no-repeat;
    background-image: linear-gradient(180deg, #061d3aed 0%, #061d3ab8 56%, #061d3a30 100%), image-set(url("assets/event.webp") type("image/webp"), url("assets/event.jpg") type("image/jpeg"));
    align-items: flex-start;
  }

  .event h2 {
    font-size: 40px;
  }

  .event p {
    margin: 18px auto 24px;
  }

  .info {
    width: min(380px, calc(100% - (var(--page-gutter) * 2)));
    margin-top: 18px;
    gap: 16px;
  }

  .hours {
    padding: 18px 20px;
    border-radius: 10px;
  }

  .hours h2 {
    margin-bottom: 14px;
    font-size: 21px;
    line-height: 1.1;
  }

  .hours p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .hours hr {
    margin: 14px 0;
  }

  .map img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    background: #edf7ec;
  }

  .foot {
    width: calc(100% - (var(--page-gutter) * 2));
    padding: 36px 0 26px;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .foot__brand img {
    width: 150px;
  }

  .foot__brand-block {
    max-width: none;
    text-align: center;
  }

  .foot__brand,
  .foot__brand-block p {
    margin: 0 auto;
  }

  .foot__quick-actions {
    justify-content: center;
    margin: 20px 0 22px;
  }

  .foot__icon {
    width: 50px;
    height: 50px;
  }

  .foot__section h2 {
    margin-bottom: 16px;
    text-align: center;
  }

  .foot__links {
    justify-items: center;
    gap: 12px;
  }

  .foot__links a {
    justify-content: center;
    font-size: 15px;
  }

  .foot__links a:before {
    content: none;
  }

  .foot__contact-list {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .foot__contact-list li {
    grid-template-columns: max-content max-content;
    justify-content: center;
  }

  .foot__bottom {
    width: calc(100% - (var(--page-gutter) * 2));
    padding: 16px 0 22px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .foot__legal,
  .foot__institutional {
    justify-content: center;
    text-align: center;
  }

  .foot__legal {
    gap: 6px 14px;
  }

  .foot__institutional-logo {
    height: 32px;
    max-width: min(72vw, 156px);
  }

  .foot__institutional-logo--region {
    height: 30px;
  }

  .foot__institutional-logo--sport {
    max-width: min(78vw, 190px);
  }

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

  .whatsapp-float img {
    width: 27px;
    height: 27px;
  }

  .booking-hero {
    min-height: 520px;
    padding: 54px var(--page-gutter) 82px;
    background:
      linear-gradient(180deg, #061f3df7 0%, #06254ae8 58%, #06254a8a 100%),
      var(--booking-photo) center 46% / cover no-repeat;
  }

  .booking-hero h1 {
    font-size: 42px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .booking-panel,
  .booking-details,
  .app-install,
  .review-section {
    width: min(440px, calc(100% - (var(--page-gutter) * 2)));
  }

  .booking-panel {
    margin-top: -42px;
    margin-bottom: 34px;
    padding: 24px;
  }

  .booking-panel .btn,
  .section-heading .btn {
    width: 100%;
    min-width: 0;
  }

  .booking-copy {
    padding: 8px 0 0;
  }

  .booking-copy h2 {
    font-size: 34px;
  }

  .booking-copy p,
  .app-install p {
    font-size: 16px;
  }

  .booking-card {
    padding: 24px;
  }

  .contact-list p {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .app-install {
    margin-bottom: 42px;
    padding: 26px;
  }

  .app-install h2,
  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .reviews {
    display: flex;
    gap: 14px;
    scroll-padding-right: 54px;
    padding-bottom: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .review-card {
    min-height: 282px;
    flex: 0 0 calc(100% - 54px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .topbar {
    padding-right: var(--page-gutter);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .topbar__track {
    animation: none;
    will-change: auto;
  }

  .topbar__group--duplicate {
    display: none;
  }
}
