:root {
  --ink: #1c2929;
  --muted: #657270;
  --teal-950: #092b2d;
  --teal-900: #103a3c;
  --teal-800: #16494c;
  --teal-700: #286266;
  --accent: #c5d452;
  --accent-soft: #d8e286;
  --cream: #f3f0e8;
  --paper: #fbfaf6;
  --line: rgba(21, 59, 60, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 47, 49, 0.14);
  --header-height: 86px;
  --radius: 4px;
  --container: 1220px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

::selection {
  color: var(--teal-950);
  background: var(--accent-soft);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

h1, h2, h3 {
  text-wrap: balance;
}

h1, h2 {
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.45rem, 4.2vw, 4.6rem);
}

h2 em {
  color: var(--teal-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--accent-soft);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s var(--ease);
}

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

.button span {
  font-size: 1rem;
  transition: transform .3s ease;
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-sm {
  min-height: 44px;
  padding: 10px 17px;
  font-size: .68rem;
}

.button-primary {
  color: var(--teal-950);
  background: var(--accent);
}

.button-primary:hover {
  background: #d3df68;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.button-dark {
  color: var(--white);
  background: var(--teal-900);
}

.button-dark:hover {
  background: var(--teal-800);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.button-outline-light:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--teal-700);
  color: var(--teal-800);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform .3s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: height .35s ease, color .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  height: 74px;
  color: var(--ink);
  border-color: transparent;
  background: rgba(251, 250, 246, .96);
  box-shadow: 0 10px 40px rgba(12, 42, 43, .08);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-name {
  font-size: 1.48rem;
  font-weight: 560;
  letter-spacing: -.065em;
}

.brand-name > span {
  color: var(--accent);
}

.brand-subtitle {
  margin-top: 7px;
  font-size: .46rem;
  font-weight: 650;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.35vw, 23px);
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 5px;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px 8px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-950);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/fachada-principal.jpg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.015);
  animation: heroZoom 14s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 28, 30, .92) 0%, rgba(6, 32, 34, .7) 45%, rgba(7, 27, 29, .22) 76%),
    linear-gradient(0deg, rgba(4, 29, 31, .94) 0%, transparent 43%),
    linear-gradient(180deg, rgba(5, 25, 27, .58) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .48fr);
  align-items: end;
  gap: 70px;
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: 92px;
}

.hero-copy {
  max-width: 830px;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 5.9vw, 6.6rem);
  font-weight: 490;
  letter-spacing: -.06em;
  line-height: .95;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 13px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-support {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-left: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.trust-item {
  min-height: 138px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  background: rgba(6, 36, 38, .38);
}

.trust-index {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-soft);
  font-size: .62rem;
  letter-spacing: .12em;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: .88rem;
  font-weight: 650;
}

.trust-item small {
  color: rgba(255, 255, 255, .64);
  font-size: .73rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .66);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 42px;
  background: var(--accent);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

/* About */
.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(197, 212, 82, .09), transparent 24%),
    var(--paper);
}

.about::after {
  position: absolute;
  z-index: 0;
  top: 90px;
  right: -90px;
  width: 270px;
  height: 270px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 145px);
}

.about-visual {
  position: relative;
  max-width: 520px;
  padding: 0 52px 48px 0;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -34px;
  width: 80%;
  height: 100%;
  background: var(--teal-900);
  content: "";
}

.about-photo-wrap img {
  height: 610px;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.83) contrast(1.02);
}

.experience-mark {
  position: absolute;
  right: -8px;
  bottom: 0;
  display: flex;
  width: 176px;
  height: 176px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--teal-950);
  background: var(--accent);
}

.experience-mark strong {
  font-size: 4.15rem;
  font-weight: 450;
  letter-spacing: -.08em;
  line-height: 1;
}

.experience-mark span {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vertical-caption {
  position: absolute;
  bottom: 47px;
  left: -40px;
  margin: 0;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
}

.about-copy .lead-text {
  color: var(--ink) !important;
  font-size: 1.12rem;
  line-height: 1.75;
}

.care-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 35px 0 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.care-list span {
  position: relative;
  padding: 17px 16px 17px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 650;
}

.care-list span::before {
  position: absolute;
  top: 23px;
  left: 17px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal-700);
  border-radius: 50%;
  content: "";
}

/* Services */
.services {
  color: var(--white);
  background: var(--teal-950);
}

.services::before {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
}

.services .container {
  position: relative;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.services-heading > p {
  color: rgba(255, 255, 255, .58);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.service-group {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 35px 32px 30px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .018);
  transition: background-color .35s ease;
}

.service-group:hover {
  background: rgba(255, 255, 255, .06);
}

.service-featured {
  grid-row: span 2;
  min-height: 700px;
  justify-content: flex-end;
  background:
    linear-gradient(0deg, rgba(5, 35, 37, .95) 0%, rgba(6, 38, 40, .32) 60%),
    url("../images/piscina-hidroterapia.jpg") center / cover;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: var(--accent-soft);
  font-size: .62rem;
  letter-spacing: .12em;
}

.service-kicker {
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-group h3 {
  max-width: 330px;
  margin-bottom: 16px;
  font-size: 1.58rem;
  font-weight: 520;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.service-group > p:not(.service-kicker) {
  max-width: 390px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, .65);
  font-size: .87rem;
}

.service-group ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding: 10px 20px 10px 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .85);
  font-size: .8rem;
}

.service-group li::after {
  position: absolute;
  right: 1px;
  color: var(--accent);
  content: "+";
}

.service-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: .76rem;
}

.service-note span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

/* Structure */
.structure {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr .9fr;
  grid-template-rows: 300px 250px 285px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--teal-900);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84);
  transition: filter .6s ease, transform .8s var(--ease);
}

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

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(5, 30, 32, .76));
  content: "";
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-item figcaption span {
  color: var(--accent-soft);
  font-size: .58rem;
  letter-spacing: .12em;
}

.gallery-main { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-pool { grid-column: 3; grid-row: 1; }
.gallery-pilates { grid-column: 3; grid-row: 2; }
.gallery-reception { grid-column: 1; grid-row: 3; }
.gallery-functional { grid-column: 2; grid-row: 3; }
.gallery-training { grid-column: 3; grid-row: 3; }
.gallery-reception img { object-position: center 42%; }

/* Facade image break */
.facade-break {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.5fr) minmax(390px, .7fr);
  background: var(--teal-900);
}

.facade-image {
  min-height: 620px;
  background:
    linear-gradient(90deg, transparent 70%, rgba(8, 42, 44, .25)),
    url("../images/fachada-principal.jpg") center / cover;
}

.facade-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 105px);
  color: var(--white);
  background: var(--teal-900);
}

.facade-panel h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 3.9vw, 4.3rem);
}

.facade-panel > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, .63);
}

.facade-panel .button {
  align-self: flex-start;
}

/* Differences */
.differences {
  background: var(--paper);
}

.differences-grid {
  display: grid;
  grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 150px);
}

.differences-intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.differences-intro h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.45rem);
}

.differences-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.difference-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.difference-list li {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.difference-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.difference-list li > span {
  grid-row: 1 / 3;
  color: var(--teal-700);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.difference-list strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.difference-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

/* Reviews */
.reviews {
  overflow: hidden;
  color: var(--white);
  background: var(--teal-950);
}

.reviews::after {
  position: absolute;
  top: -250px;
  right: -160px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012);
  content: "";
}

.reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.reviews-top h2 {
  margin-bottom: 0;
}

.reviews-top > p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .58);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  margin: 0;
  padding: 28px 30px 32px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.quote-mark {
  height: 78px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 6.5rem;
  line-height: 1;
}

.review-card > p {
  margin: 18px 0 45px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.review-card footer strong {
  font-size: .74rem;
  font-weight: 650;
  text-transform: capitalize;
}

.review-card footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .47);
  font-size: .65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.reviews-link {
  margin-top: 35px;
  text-align: right;
}

/* Location */
.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(340px, .65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.location-copy h2 {
  max-width: 560px;
  font-size: clamp(2.45rem, 4.1vw, 4.45rem);
}

.location-copy address {
  display: flex;
  flex-direction: column;
  margin: 34px 0 35px;
  color: var(--muted);
  font-style: normal;
}

.location-copy address strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.05rem;
}

.location-photo {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,30,32,.62), transparent 43%);
  content: "";
}

.location-photo > img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.location-photo:hover > img {
  transform: scale(1.025);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 51%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, .4);
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(8, 37, 39, .25);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.map-pin i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-950);
}

.location-badge {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 25px;
  left: 25px;
  padding: 20px 23px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(10px);
}

.location-badge small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 500;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: var(--white);
  background: var(--teal-800);
}

.contact::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7vw;
  width: 1px;
  background: rgba(255,255,255,.1);
  content: "";
}

.contact-decoration {
  position: absolute;
  right: -3vw;
  bottom: -34px;
  color: rgba(255,255,255,.035);
  font-size: clamp(7rem, 17vw, 17rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
  pointer-events: none;
  white-space: nowrap;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.contact-inner .eyebrow {
  justify-content: center;
}

.contact-inner h2 {
  margin-inline: auto;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
}

.contact-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 80px 0 0;
  color: rgba(255, 255, 255, .72);
  background: #071f21;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr .8fr;
  gap: 55px;
  padding-bottom: 65px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 260px;
  margin-top: 25px;
  color: rgba(255,255,255,.5);
  font-size: .83rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column > a:not(.button) {
  margin-bottom: 0;
  color: rgba(255,255,255,.52);
  font-size: .78rem;
  line-height: 1.8;
}

.footer-column > a:not(.button):hover {
  color: var(--accent-soft);
}

.footer-column .footer-link {
  margin-top: 8px;
  color: var(--accent-soft) !important;
}

.footer-contact .button {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.35);
  font-size: .65rem;
}

/* WhatsApp actions */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  color: var(--white);
  background: #1f7a57;
  box-shadow: 0 12px 32px rgba(9, 43, 35, .24);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .3s var(--ease), background-color .3s ease;
}

.whatsapp-float:hover {
  background: #248b64;
  transform: translateY(-3px);
}

.wa-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
}

.whatsapp-mobile {
  display: none;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.service-grid [data-reveal]:nth-child(2),
.review-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.service-grid [data-reveal]:nth-child(3),
.review-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }
.service-grid [data-reveal]:nth-child(4) { transition-delay: .24s; }

/* Tablet */
@media (max-width: 1120px) {
  :root { --header-height: 76px; }

  .main-nav { gap: 14px; }
  .main-nav > a:not(.button) { font-size: .65rem; }
  .main-nav .nav-cta { display: none; }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
  }

  .hero h1 { font-size: clamp(3.7rem, 7vw, 5.7rem); }
  .about-grid { gap: 70px; }
  .about-photo-wrap img { height: 560px; }

  .facade-break { grid-template-columns: 1.25fr .75fr; }
  .facade-panel { padding: 60px 48px; }

  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
  .footer-contact { grid-column: 3; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 95px 0; }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 90px 32px 50px;
    color: var(--white);
    background: var(--teal-950);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav > a:not(.button) {
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    font-weight: 450;
    letter-spacing: -.02em;
  }

  .main-nav .nav-cta {
    display: inline-flex;
    margin: 17px 0 0;
  }

  .site-header:has(.main-nav.is-open) {
    color: var(--white);
  }

  .hero {
    min-height: 900px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4,28,30,.9), rgba(5,30,32,.48)), linear-gradient(0deg, rgba(4,29,31,.96), transparent 60%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 150px;
    padding-bottom: 75px;
  }

  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(3.45rem, 10vw, 5.8rem); }
  .hero-support { max-width: 600px; }
  .hero-trust { max-width: 580px; }
  .scroll-cue { display: none; }

  .about-grid,
  .differences-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-grid { gap: 80px; }
  .about-visual { width: min(100%, 520px); margin-inline: auto; }

  .section-heading,
  .reviews-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-featured { min-height: 520px; grid-row: span 1; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 260px 260px;
  }

  .gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .gallery-pool { grid-column: 1; grid-row: 2; }
  .gallery-pilates { grid-column: 2; grid-row: 2; }
  .gallery-reception { display: none; }
  .gallery-functional { grid-column: 1; grid-row: 3; }
  .gallery-training { grid-column: 2; grid-row: 3; }

  .facade-break { grid-template-columns: 1fr; }
  .facade-image { min-height: 520px; }
  .facade-panel { min-height: 500px; }

  .differences-grid { gap: 45px; }
  .differences-intro { position: static; }

  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 290px; }
  .review-card > p { max-width: 680px; }

  .location-grid { gap: 55px; }
  .location-photo,
  .location-photo > img { min-height: 0; height: 500px; }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
  }

  .footer-contact { grid-column: auto; }
}

/* Mobile */
@media (max-width: 620px) {
  :root { --header-height: 70px; }

  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }

  h2 { font-size: clamp(2.25rem, 11vw, 3.25rem); }

  .eyebrow {
    margin-bottom: 20px;
    font-size: .63rem;
  }

  .site-header { background: linear-gradient(rgba(5,26,28,.65), transparent); }
  .site-header.is-scrolled { background: rgba(251,250,246,.98); }
  .brand-name { font-size: 1.32rem; }

  .hero {
    min-height: 860px;
    align-items: stretch;
  }

  .hero-media { background-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,27,29,.88), rgba(5,28,30,.35)), linear-gradient(0deg, rgba(4,29,31,.98) 5%, rgba(4,29,31,.62) 66%, rgba(4,29,31,.3)); }

  .hero-content {
    align-content: end;
    gap: 38px;
    padding-top: 120px;
    padding-bottom: 38px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.95rem, 14.5vw, 4.3rem);
    line-height: .96;
  }

  .hero-lead { font-size: 1rem; }
  .hero-support { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }

  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 105px; padding: 14px; }
  .trust-index { margin-bottom: 12px; }

  .about-grid { gap: 65px; }
  .about-visual { padding: 0 32px 38px 0; }
  .about-photo-wrap img { height: 470px; }
  .about-photo-wrap::before { top: 25px; right: -22px; }
  .experience-mark { right: -2px; width: 138px; height: 138px; }
  .experience-mark strong { font-size: 3.3rem; }
  .vertical-caption { display: none; }
  .care-list { grid-template-columns: 1fr; }

  .section-heading { margin-bottom: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-group { min-height: 320px; padding: 30px 25px 25px; }
  .service-featured { min-height: 500px; }
  .service-note { align-items: flex-start; }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 340px repeat(4, 240px);
    gap: 9px;
  }

  .gallery-main,
  .gallery-pool,
  .gallery-pilates,
  .gallery-functional,
  .gallery-training {
    grid-column: 1;
  }

  .gallery-main { grid-row: 1; }
  .gallery-pool { grid-row: 2; }
  .gallery-pilates { grid-row: 3; }
  .gallery-functional { grid-row: 4; }
  .gallery-training { grid-row: 5; }

  .facade-image { min-height: 400px; background-position: 57% center; }
  .facade-panel { min-height: 460px; padding: 65px 24px; }
  .facade-panel h2 { font-size: 2.75rem; }

  .difference-list li { grid-template-columns: 43px 1fr; padding: 27px 0; }

  .reviews-top { margin-bottom: 42px; }
  .review-card { min-height: 315px; padding: 24px; }
  .review-card > p { font-size: 1.18rem; }
  .reviews-link { text-align: left; }

  .location-photo,
  .location-photo > img { height: 400px; }
  .location-photo > img { object-position: 58% center; }
  .location-badge { right: 14px; bottom: 14px; left: 14px; }
  .map-pin { width: 50px; height: 50px; }

  .contact { padding: 85px 0; }
  .contact-inner { text-align: left; }
  .contact-inner .eyebrow,
  .contact-actions { justify-content: flex-start; }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .contact-actions .button { width: 100%; }

  .site-footer { padding-top: 65px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-column { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-bottom { min-height: 100px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }

  .whatsapp-float { display: none; }
  .whatsapp-mobile {
    position: fixed;
    z-index: 1100;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 3px;
    color: var(--white);
    background: #1f7a57;
    box-shadow: 0 8px 25px rgba(7,35,29,.25);
    font-size: .77rem;
    font-weight: 750;
    letter-spacing: .045em;
    text-transform: uppercase;
  }

  .whatsapp-mobile .wa-symbol {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
