@font-face {
  font-family: "Archivo Expanded";
  src: url("assets/fonts/Archivo_Expanded-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Expanded";
  src: url("assets/fonts/Archivo_Expanded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Expanded";
  src: url("assets/fonts/Archivo_Expanded-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Expanded";
  src: url("assets/fonts/Archivo_Expanded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1d50b7;
  --orange: #fbb03b;
  --white: #ffffff;
  --blue-soft: rgba(29, 80, 183, 0.08);
  --blue-mid: rgba(29, 80, 183, 0.2);
  --blue-strong: rgba(29, 80, 183, 0.84);
  --space-eyebrow-headline: 0.5rem;
  --space-headline-copy: 0.85rem;
  --space-copy-actions: 1.05rem;
  --mobile-header-offset: 98px;
  --container: min(1140px, 92vw);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 10px 30px rgba(29, 80, 183, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo Expanded", "Archivo", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--blue);
  background: var(--white);
  line-height: 1.62;
  overflow-x: hidden;
}

body.menu-open,
body.team-dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.3rem 0;
}

.section-alt {
  background: var(--blue-soft);
}

.eyebrow {
  margin: 0 0 var(--space-eyebrow-headline);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.24;
}

h1 {
  font-size: clamp(2.05rem, 4vw, 3.9rem);
  margin-bottom: 0.95rem;
}

h2 {
  font-size: clamp(1.52rem, 2.3vw, 2.35rem);
}

h3 {
  font-size: clamp(1rem, 1.4vw, 1.24rem);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--blue);
  border-bottom: 0;
}

.site-header.is-scrolled {
  box-shadow: 0 5px 20px rgba(13, 35, 81, 0.25);
}

body.menu-open .site-header {
  box-shadow: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.26rem 0;
}

.brand {
  display: inline-flex;
}

.brand img {
  width: min(270px, 58vw);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.main-nav a.btn {
  color: var(--blue);
}

.main-nav a.btn.btn-outline,
.main-nav a.btn.btn-outline-light {
  color: var(--white);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(6, 16, 40, 0.54);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  padding: 0.15rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    width 0.2s ease;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.74rem 1.18rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #eda22f;
  border-color: #eda22f;
}

.btn:focus-visible {
  outline: 2px solid rgba(29, 80, 183, 0.45);
  outline-offset: 2px;
}

.btn-small {
  font-size: 0.8rem;
  padding: 0.58rem 0.95rem;
}

.btn-outline {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 500;
}

.btn-outline-light {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 500;
}

.btn-outline:hover,
.btn-outline-light:hover,
.btn-outline:focus-visible,
.btn-outline-light:focus-visible {
  transform: translateY(-1px);
  background: #18459f;
  border-color: #18459f;
  color: var(--white);
}

.btn-outline:focus-visible,
.btn-outline-light:focus-visible {
  outline: 2px solid rgba(29, 80, 183, 0.35);
  outline-offset: 2px;
}

.hero-banner {
  position: relative;
  min-height: calc(100dvh - var(--mobile-header-offset) + 2.5rem);
  display: flex;
  align-items: flex-end;
  padding: 5.2rem 0 3.6rem;
  overflow: hidden;
}

.hero-image,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tint {
  background: rgba(12, 37, 90, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: var(--container);
}

.hero-content h1 {
  font-size: clamp(1.85rem, 3.35vw, 3.2rem);
  max-width: 16.5ch;
  text-wrap: balance;
  margin-bottom: var(--space-headline-copy);
}

.hero-content p {
  max-width: 56ch;
  font-size: clamp(0.95rem, 1.12vw, 1.08rem);
}

.hero-actions {
  margin-top: var(--space-copy-actions);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 761px) {
  .hero-banner {
    align-items: center;
    padding: 3.6rem 0;
  }
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

@media (min-width: 1081px) {
  .model-grid {
    gap: 3.2rem;
  }

  .about-copy {
    margin-left: auto;
    justify-self: end;
  }
}

.feature-image {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--blue-mid);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 620px;
}

.about-visuals {
  display: grid;
  gap: 1rem;
  align-content: start;
  order: 1;
}

.about-copy {
  display: block;
  max-width: 43ch;
  order: 2;
}

.about-copy > .eyebrow {
  margin-bottom: 0.35rem;
}

.about-copy h2 {
  margin-bottom: 0;
  text-wrap: balance;
}

.about-copy > p {
  margin-bottom: var(--space-headline-copy);
}

.about-space-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-space-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 0;
  box-shadow: none;
}

.about-copy .check-list {
  margin: 0 0 var(--space-copy-actions);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: 0.56rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: var(--orange);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-head > .eyebrow {
  margin-bottom: var(--space-eyebrow-headline);
}

.section-head > h2 + p {
  margin-top: var(--space-headline-copy);
}

.section h2 + p {
  margin-top: var(--space-headline-copy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: clip;
  background: var(--white);
  border: 1px solid var(--blue-mid);
  box-shadow: var(--shadow);
}

#trainer-rental {
  scroll-margin-top: 8.6rem;
}

.service-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.service-card img.service-image-face {
  object-position: center 28%;
}

.service-card img.service-image-dropin {
  object-position: center 20%;
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem;
}

.service-body h3 {
  margin-bottom: 0.5rem;
}

.service-body p {
  margin-bottom: var(--space-copy-actions);
}

.service-prices {
  margin: 0 0 var(--space-copy-actions);
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
  line-height: 1.45;
}

.service-prices li {
  font-size: 0.9rem;
}

.service-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

#team {
  scroll-margin-top: 8.6rem;
}

.team-section {
  position: relative;
  overflow: clip;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(32rem, 46vw);
  height: min(32rem, 46vw);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(251, 176, 59, 0.22), rgba(251, 176, 59, 0) 62%);
  transform: translate(-8%, -24%);
  pointer-events: none;
}

.team-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  pointer-events: none;
}

.team-head {
  max-width: none;
}

.team-head h2 {
  white-space: nowrap;
}

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

.team-rail {
  overflow: visible;
}

.team-mobile-hint {
  display: none;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(29, 80, 183, 0.68);
}

.team-card {
  --team-image-position: center 18%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(29, 80, 183, 0.16);
  box-shadow: 0 18px 42px rgba(29, 80, 183, 0.12);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: var(--team-image-position);
  background: linear-gradient(180deg, rgba(29, 80, 183, 0.1), rgba(29, 80, 183, 0));
}

.team-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(29, 80, 183, 0.82));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.team-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.1rem;
}

.team-card h3 {
  text-wrap: balance;
  margin-bottom: 0.05rem;
}

.team-role {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(29, 80, 183, 0.68);
}

.team-specialty-label {
  margin: 0.2rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
}

.team-specialties {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.team-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.team-card-link::after {
  content: ">";
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.team-card-link:hover::after,
.team-card-link:focus-visible::after {
  transform: translateX(3px);
}

.team-card-link:focus-visible {
  outline: 2px solid rgba(29, 80, 183, 0.35);
  outline-offset: 4px;
  border-radius: 6px;
}

.team-card:hover::after,
.team-card:focus-within::after {
  opacity: 1;
}

.team-dialog {
  width: min(980px, calc(100vw - 2rem));
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  overflow: hidden;
  overscroll-behavior: contain;
}

.team-dialog:not([open]) {
  display: none;
}

.team-dialog::backdrop {
  background: rgba(6, 16, 40, 0.62);
  backdrop-filter: blur(4px);
}

.team-dialog-shell {
  position: relative;
  overflow: clip;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96));
  border: 1px solid rgba(29, 80, 183, 0.16);
  box-shadow: 0 32px 96px rgba(6, 16, 40, 0.28);
}

.team-dialog-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.team-dialog-media {
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(251, 176, 59, 0.2), rgba(251, 176, 59, 0) 55%),
    linear-gradient(180deg, rgba(29, 80, 183, 0.08), rgba(29, 80, 183, 0));
}

.team-dialog-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--team-image-position, center 18%);
  aspect-ratio: 4 / 5;
}

.team-dialog-copy {
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.team-dialog-role {
  margin: 0.45rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--orange);
}

.team-dialog-copy h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  margin: 0;
}

.team-dialog-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  max-width: 55ch;
}

.team-dialog-body p {
  margin: 0;
}

.team-dialog-body p:first-child {
  font-size: 1.03rem;
  line-height: 1.58;
}

.team-dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 80, 183, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(29, 80, 183, 0.12);
}

.team-dialog-close span {
  display: none;
}

.team-dialog-close::before,
.team-dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.team-dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.team-dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.team-dialog-close:hover,
.team-dialog-close:focus-visible {
  background: var(--white);
}

.team-dialog-close:focus-visible {
  outline: 2px solid rgba(29, 80, 183, 0.35);
  outline-offset: 2px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  align-items: center;
}

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

.compact-cta {
  position: relative;
  overflow: clip;
  background: var(--orange);
  padding-top: 3.9rem;
  padding-bottom: 3.9rem;
}

.compact-cta-wrap {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  text-align: center;
}

.compact-cta-wrap h2 {
  color: var(--blue);
  margin-bottom: var(--space-headline-copy);
}

.compact-cta-wrap p {
  color: var(--blue);
  margin-bottom: var(--space-copy-actions);
}

.compact-cta-wrap .inline-actions {
  justify-content: center;
  gap: 0.9rem;
}

.compact-cta-wrap .btn {
  min-width: 11.5rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  background: var(--white);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.65rem;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 2.8rem 0 1.6rem;
}

.footer-main {
  display: block;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 4.6vw, 4.6rem);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.footer-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.85rem, 2.25vw, 2.45rem);
  line-height: 1.12;
}

.footer-contact-links {
  display: grid;
  gap: 0.35rem;
}

.site-footer .footer-contact-links a {
  width: fit-content;
}

.footer-address {
  line-height: 1.4;
}

.footer-maps {
  margin-top: 0.2rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--blue);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  background: #eda22f;
  border-color: #eda22f;
  color: var(--blue);
}

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

.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer .social-link {
  color: var(--blue);
  text-decoration: none;
}

.site-footer a.footer-phone {
  text-decoration: none;
}

.site-footer a.footer-phone:hover,
.site-footer a.footer-phone:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.4rem;
  border-top: 0;
  padding-top: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 36;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.whatsapp-float img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 0;
  display: block;
  transition: transform 0.2s ease;
  transform-origin: center;
}

.whatsapp-float:hover img,
.whatsapp-float:focus-visible img {
  transform: scale(1.06);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

@media (max-width: 1080px) {
  .brand {
    position: relative;
    z-index: 61;
  }

  .menu-backdrop {
    top: 0;
    background: rgba(6, 16, 40, 0.42);
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 62;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 55;
    width: min(360px, 88vw);
    height: 100dvh;
    padding: calc(var(--mobile-header-offset) + 1.2rem) 1.4rem 1.5rem;
    border-left: 0;
    background: var(--blue);
    box-shadow: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    transform: translateX(108%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0.28s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    color: var(--white);
    font-size: 1.13rem;
    padding: 0.58rem 0.2rem;
    transform: translateY(6px);
    opacity: 0;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease;
  }

  .main-nav.is-open a {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav.is-open a:nth-of-type(1) {
    transition-delay: 0.06s;
  }

  .main-nav.is-open a:nth-of-type(2) {
    transition-delay: 0.09s;
  }

  .main-nav.is-open a:nth-of-type(3) {
    transition-delay: 0.12s;
  }

  .main-nav.is-open a:nth-of-type(4) {
    transition-delay: 0.15s;
  }

  .main-nav.is-open a:nth-of-type(5) {
    transition-delay: 0.18s;
  }

  .main-nav.is-open a:nth-of-type(6) {
    transition-delay: 0.21s;
  }

  .main-nav.is-open a:nth-of-type(7) {
    transition-delay: 0.24s;
  }

  .main-nav .btn {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.76rem 1.2rem;
  }

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

  .about-copy {
    max-width: none;
    order: 1;
  }

  .about-visuals {
    order: 2;
  }

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

  .service-card img {
    height: 360px;
  }

  .team-head {
    max-width: 620px;
  }

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

  .team-dialog-grid {
    grid-template-columns: 1fr;
  }

  .team-dialog-media img {
    max-height: 360px;
  }

  .footer-main {
    display: block;
  }

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

  .about-space-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-space-grid img {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.2rem 0;
  }

  .team-section {
    padding-bottom: 0;
    overflow: visible;
    background:
      radial-gradient(circle at 74% 16%, rgba(251, 176, 59, 0.16), rgba(251, 176, 59, 0) 23%),
      linear-gradient(180deg, #ffffff 0%, rgba(247, 250, 255, 0.98) 22%, rgba(245, 248, 255, 0.97) 100%);
  }

  .team-section::after {
    display: none;
  }

  .team-section > .container {
    position: relative;
    z-index: 1;
  }

  .team-section .reveal,
  .team-section .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-banner {
    min-height: calc(100dvh - var(--mobile-header-offset) + 3rem);
    padding: 4.2rem 0 3rem;
  }

  .hero-actions {
    width: auto;
    align-items: flex-start;
  }

  .inline-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 11.5rem;
  }

  .inline-actions .btn,
  .compact-cta-wrap .btn {
    width: 100%;
  }

  .compact-cta-wrap .btn {
    width: auto;
    min-width: 10.5rem;
  }

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

  .team-mobile-hint {
    display: block;
  }

  .team-grid {
    display: flex;
    position: relative;
    width: max-content;
    min-width: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
    gap: 0.85rem;
  }

  .team-rail {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 11vw 4.2rem;
    margin: 0 -4vw 0;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 11vw;
    overscroll-behavior-x: contain;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .team-rail::-webkit-scrollbar {
    display: none;
  }

  #trainer-rental {
    scroll-margin-top: calc(var(--mobile-header-offset) + 1.1rem);
  }

  #team {
    scroll-margin-top: calc(var(--mobile-header-offset) + 1.1rem);
  }

  .service-card img {
    height: 360px;
  }

  .team-card img {
    height: 320px;
    aspect-ratio: auto;
  }

  .team-head h2 {
    white-space: normal;
  }

  .team-card {
    flex: 0 0 78vw;
    scroll-snap-align: center;
    min-height: 0;
    height: auto;
    background: var(--white);
    border: 1px solid var(--blue-mid);
    box-shadow: 0 8px 22px rgba(13, 35, 81, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
  }

  .team-rail.is-mobile-carousel .team-card.is-current {
    box-shadow: 0 12px 28px rgba(13, 35, 81, 0.14);
  }

  .team-card img,
  .team-card-body {
    transition: opacity 0.24s ease, filter 0.24s ease;
  }

  .team-rail.is-mobile-carousel .team-card {
    opacity: 1;
    filter: none;
  }

  .team-rail.is-mobile-carousel .team-card img,
  .team-rail.is-mobile-carousel .team-card .team-card-body {
    opacity: 1;
    filter: none;
  }

  .team-rail.is-mobile-carousel .team-card.is-dimmed img {
    opacity: 0.42;
    filter: saturate(0.52) brightness(1.04);
  }

  .team-rail.is-mobile-carousel .team-card.is-dimmed .team-card-body {
    opacity: 0.42;
  }

  .team-card-body {
    padding: 1rem;
  }

  .team-card::after {
    display: block;
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0 26%, rgba(29, 80, 183, 0.9) 100%);
    opacity: 0;
  }

  .team-rail.is-mobile-carousel .team-card.is-current::after {
    opacity: 1;
  }

  .compact-cta {
    padding-top: 2.4rem;
    background: var(--orange);
  }

  .compact-cta::before {
    display: none;
  }

  .team-dialog {
    inset: 0;
    width: auto;
    max-width: none;
    max-height: none;
    margin: 0;
    min-height: 100dvh;
    padding: max(1rem, env(safe-area-inset-top)) 0.625rem max(1rem, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }

  .team-dialog-shell {
    width: min(100%, calc(100vw - 1.25rem));
    border-radius: 22px;
    margin: 0;
    max-height: calc(100svh - 3rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-x: clip;
    overflow-y: auto;
    border: 0;
    box-shadow: 0 14px 28px rgba(6, 16, 40, 0.12);
  }

  .team-dialog-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-height: none;
  }

  .team-dialog-media {
    display: block;
    background:
      radial-gradient(circle at top, rgba(251, 176, 59, 0.14), rgba(251, 176, 59, 0) 52%),
      linear-gradient(180deg, rgba(29, 80, 183, 0.14), rgba(29, 80, 183, 0.03));
  }

  .team-dialog-copy {
    padding: 0.85rem 0.95rem calc(0.9rem + env(safe-area-inset-bottom));
    min-height: 0;
    overflow: visible;
  }

  .team-dialog-copy h3 {
    font-size: clamp(1.12rem, 5.2vw, 1.55rem);
  }

  .team-dialog-role {
    margin-top: 0.28rem;
    font-size: 0.62rem;
  }

  .team-dialog-body {
    margin-top: 0.6rem;
    gap: 0.58rem;
  }

  .team-dialog-body p,
  .team-dialog-body p:first-child {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .team-dialog-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .team-dialog-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(42svh, 340px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 22%;
  }

  .about-space-grid {
    grid-template-columns: 1fr;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-title {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .about-space-grid img {
    height: 300px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    z-index: 120;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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