@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #0e1826;
  --ink-soft: #334254;
  --navy: #143b52;
  --teal: #4d8fa9;
  --teal-dark: #326f88;
  --aqua: #dff4f5;
  --lime: #dcefb9;
  --lime-strong: #c9e891;
  --whatsapp: #25d366;
  --whatsapp-white: #ffffff;
  --white: #ffffff;
  --cloud: #f5f8f8;
  --line: #dce5e7;
  --shadow: 0 24px 60px rgba(14, 24, 38, 0.12);
  --shadow-soft: 0 12px 30px rgba(14, 24, 38, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  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(--lime-strong);
  outline-offset: 4px;
}

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

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

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

.section {
  padding: 104px 0;
}

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

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(77, 143, 169, 0.38), transparent 32%),
    var(--ink);
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--teal);
  content: '';
}

.section--dark .section-label {
  color: var(--lime);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading .lead {
  max-width: 460px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 23px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(20, 59, 82, 0.2);
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(20, 59, 82, 0.26);
  transform: translateY(-2px);
}

.button--lime {
  color: var(--ink);
  background: var(--lime-strong);
  border-color: var(--lime-strong);
  box-shadow: 0 9px 24px rgba(201, 232, 145, 0.2);
}

.button--lime:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--white);
  background: var(--navy);
}

.button--small {
  min-height: 46px;
  padding-inline: 19px;
  font-size: 0.94rem;
}

/* WhatsApp CTA using the color SVG supplied by the client. */
a[href^='https://wa.me/'].button,
.whatsapp-float {
  color: var(--whatsapp-white);
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
}

a[href^='https://wa.me/'].button::before,
.whatsapp-float::before {
  width: 28px;
  height: 28px;
  background: var(--white) url('../images/whatsapp-color-svgrepo-com.svg?v=20260831-2') center / 20px 20px no-repeat;
  border: 1px solid rgba(14, 24, 38, .06);
  border-radius: 50%;
  content: '';
  flex: 0 0 auto;
}

a[href^='https://wa.me/'].button:hover,
.whatsapp-float:hover {
  color: var(--whatsapp-white);
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 13px 30px rgba(37, 211, 102, 0.36);
  filter: brightness(.94);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.topbar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.84rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 38px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__hours {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 231, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
}

.brand {
  width: 226px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: 29px 0 27px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: '';
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link[aria-current='page'] {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link[aria-current='page']::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--cloud);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: '';
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.menu-toggle[aria-expanded='true']::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true']::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: calc(100svh - 122px);
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(130deg, #fff 0%, #f6faf9 52%, #e9f4f3 100%);
}

.hero::before {
  position: absolute;
  top: 70px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: rgba(220, 239, 185, 0.38);
  border-radius: 50%;
  content: '';
  filter: blur(70px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  height: 100%;
  min-height: 0;
  padding: clamp(38px, 7vh, 72px) 0;
}

.hero__content {
  max-width: 620px;
}

.hero__content h1 {
  margin-bottom: 24px;
}

.hero__content .lead {
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 520px;
  margin: -10px 0 24px;
  padding: 15px 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(77, 143, 169, .3);
  border-left: 4px solid var(--lime-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-offer__copy {
  display: grid;
  gap: 4px;
}

.hero-offer__badge {
  color: var(--teal-dark);
  font-family: 'Manrope', sans-serif;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-offer__label {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
}

.hero-offer__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.hero-offer__price del {
  color: var(--ink-soft);
  font-size: .92rem;
}

.hero-offer__price strong {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 59%;
  margin: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 10%, #000 30%);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.26), transparent 30%);
  content: '';
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center center);
}

.hero__key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

.hero__key-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__key-points li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--navy);
  background: var(--lime-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 232, 145, 0.2);
  content: '✓';
  flex: 0 0 auto;
  font-size: .72rem;
  font-weight: 800;
}

.service-hero {
  min-height: 0;
}

.service-hero .hero__inner {
  min-height: 0;
}

.service-hero h1 {
  font-size: clamp(2.55rem, 4.3vw, 4rem);
}

/* InBody analysis */
.inbody-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 78px);
}

.inbody-visual {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inbody-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.inbody-content {
  align-self: center;
}

.inbody-content h2 {
  margin-bottom: 20px;
}

.inbody-content > p:not(.section-label):not(.inbody-included) {
  color: var(--ink-soft);
}

.inbody-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.inbody-metrics > div {
  min-height: 104px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 6px;
}

.inbody-metrics strong,
.inbody-metrics span {
  display: block;
}

.inbody-metrics strong {
  margin-bottom: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
}

.inbody-metrics span {
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.4;
}

.inbody-included {
  padding: 16px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: .9rem;
}

.inbody-included strong {
  color: var(--lime);
}

/* Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-card__image,
.service-card__image::after {
  position: absolute;
  inset: 0;
}

.service-card__image::after {
  background: linear-gradient(180deg, transparent 20%, rgba(14, 24, 38, 0.92) 88%);
  content: '';
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--card-focus, center center);
}

.service-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px;
}

.service-card__number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--lime-strong);
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.service-card p {
  max-width: 500px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.76);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-weight: 700;
}

.service-card__link span {
  transition: transform 180ms ease;
}

.service-card__link:hover span {
  transform: translateX(5px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.feature-card__icon,
.condition-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--navy);
  background: var(--aqua);
  border-radius: 16px;
  place-items: center;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.split__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split__content h2 {
  margin-bottom: 23px;
}

.split__content > p:not(.section-label) {
  margin-bottom: 27px;
  color: var(--ink-soft);
}

/* Real clinic photography */
.photo-gallery {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 270px);
  gap: 14px;
}

.photo-gallery__item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
}

.photo-gallery__item--primary {
  grid-row: 1 / 3;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 260ms ease;
}

.photo-gallery__item:hover img,
.photo-gallery__item:focus-visible img {
  transform: scale(1.025);
}

.photo-gallery__item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(14, 24, 38, 0.88);
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-location {
  margin-top: clamp(28px, 4vw, 48px);
}

.hero__mobile-location {
  display: none;
}

/* Patient reviews and documented results */
.reviews-summary {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-summary strong {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 1.18rem;
}

.reviews-summary span:last-child {
  color: var(--ink-soft);
  font-size: .9rem;
}

.review-stars {
  color: #efaa19;
  font-size: 1.22rem;
  letter-spacing: 0;
  line-height: 1;
}

.testimonial-image-grid {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-image-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-image {
  display: block;
  overflow: hidden;
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.testimonial-image:hover img,
.testimonial-image:focus-visible img {
  transform: scale(1.015);
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-carousel__button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  place-items: center;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-carousel__button:hover,
.testimonial-carousel__button:focus-visible {
  color: var(--teal-dark);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.testimonial-carousel__button:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}

.testimonial-carousel__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.testimonial-carousel__play-icon {
  display: none;
}

.testimonial-carousel__button.is-paused .testimonial-carousel__pause-icon {
  display: none;
}

.testimonial-carousel__button.is-paused .testimonial-carousel__play-icon {
  display: block;
}

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

.success-case {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.success-case img {
  width: 100%;
  height: auto;
  aspect-ratio: 1306 / 544;
  object-fit: cover;
}

.success-case figcaption {
  padding: 16px 20px 18px;
  color: var(--ink-soft);
  font-size: .9rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--ink);
  background: var(--lime-strong);
  border-radius: 50%;
  content: '✓';
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 900;
  place-items: center;
}

/* Service details */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.condition-card {
  display: block;
  padding: 28px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.condition-card:hover,
.condition-card:focus-visible {
  border-color: rgba(77, 143, 169, .52);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.condition-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.condition-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.condition-card::after {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal-dark);
  content: 'Consultar por WhatsApp →';
  font-size: .82rem;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
}

.process-step {
  min-height: 320px;
  padding: 38px;
  background: rgba(255,255,255,.04);
}

.process-step__number {
  display: block;
  margin-bottom: 76px;
  color: var(--lime);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.process-step h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.process-step p {
  color: rgba(255,255,255,.66);
  font-size: 0.95rem;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.method-list li::before {
  position: absolute;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--aqua);
  content: '';
  flex: 0 0 auto;
}

.method-list li:hover,
.method-list li:focus-within {
  border-color: rgba(77, 143, 169, .52);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.method-list a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 14px 18px 14px 48px;
}

.method-list a::after {
  margin-left: auto;
  color: var(--teal-dark);
  content: '→';
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 26px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  width: 30px;
  height: 30px;
  color: var(--navy);
  background: var(--aqua);
  border-radius: 50%;
  content: '+';
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 28px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 26px 24px;
  color: var(--ink-soft);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.location__content {
  padding: clamp(34px, 5vw, 62px);
}

.location__content h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.location__details {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.location__detail {
  display: flex;
  gap: 13px;
}

.location__detail .icon {
  margin-top: 4px;
  color: var(--teal-dark);
}

.location__detail strong {
  display: block;
  margin-bottom: 2px;
  font-family: 'Manrope', sans-serif;
}

.location__detail span {
  color: var(--ink-soft);
}

.location__map {
  min-height: 510px;
  background: var(--cloud);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 15%, rgba(220, 239, 185, .26), transparent 32%),
    linear-gradient(120deg, var(--navy), var(--teal-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.cta-banner p {
  color: rgba(255,255,255,.72);
}

/* Footer */
.site-footer {
  padding-top: 76px;
  color: rgba(255,255,255,.72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr 1fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand {
  width: 250px;
  height: auto;
  margin-bottom: 22px;
}

.footer-about {
  max-width: 420px;
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer-contact .icon {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .84rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float::before {
  width: 60px;
  height: 60px;
  background: url('../images/whatsapp-color-svgrepo-com.svg?v=20260831-2') center / contain no-repeat;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 10px 12px rgba(14, 24, 38, .2));
}

.whatsapp-float:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  filter: none;
  transform: translateY(-3px);
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* Motion */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1050px) {
  .nav__links {
    gap: 20px;
  }

  .nav__cta {
    display: none;
  }

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

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

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

  .topbar__hours {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    width: 202px;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: calc(100vh - 110px);
    padding: 28px 20px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
  }

  .nav__link::after {
    display: none;
  }

  .hero,
  .service-hero {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: calc(100svh - 110px);
    min-height: 0;
  }

  .hero__inner,
  .service-hero .hero__inner {
    display: block;
    height: auto;
    min-height: auto;
    padding: 40px 0 28px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
  }

  .hero__visual::after {
    background: linear-gradient(180deg, rgba(255,255,255,.36), transparent 32%);
  }

  .section-heading {
    display: block;
  }

  .section-heading .lead {
    margin-top: 20px;
  }

  .service-grid,
  .split,
  .location-grid,
  .inbody-layout {
    grid-template-columns: 1fr;
  }

  .inbody-visual {
    min-height: 400px;
  }

  .testimonial-image-grid {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 420px repeat(2, 250px);
  }

  .photo-gallery__item--primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-card {
    min-height: 470px;
  }

  .split__media,
  .split__media img {
    min-height: 430px;
  }

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

  .process-step {
    min-height: auto;
  }

  .process-step__number {
    margin-bottom: 38px;
  }

  .location__map,
  .location__map iframe {
    min-height: 420px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 42px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

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

  .topbar {
    display: none;
  }

  .nav__links {
    height: calc(100vh - 72px);
  }

  .brand {
    width: 185px;
  }

  .hero__inner,
  .service-hero .hero__inner {
    padding: 28px 0 18px;
  }

  .hero,
  .service-hero {
    height: calc(100svh - 72px);
  }

  .hero__visual {
    height: 100%;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%);
  }

  .hero__content h1,
  .service-hero .hero__content h1 {
    margin-bottom: 14px;
    font-size: clamp(2.18rem, 10.5vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -.05em;
  }

  .hero__content .eyebrow {
    margin-bottom: 12px;
    font-size: .7rem;
  }

  .hero__content .lead {
    margin-bottom: 18px;
    font-size: .98rem;
    line-height: 1.48;
  }

  .hero-offer {
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 13px;
  }

  .hero-offer__badge {
    font-size: .61rem;
  }

  .hero-offer__label {
    font-size: .78rem;
  }

  .hero-offer__price {
    display: grid;
    justify-items: end;
    gap: 2px;
  }

  .hero-offer__price del {
    font-size: .76rem;
  }

  .hero-offer__price strong {
    font-size: 1.65rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .button-row .button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: .84rem;
  }

  .hero__key-points {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    font-size: .78rem;
    line-height: 1.2;
  }

  .hero__key-points li::before {
    width: 17px;
    height: 17px;
    box-shadow: none;
    font-size: .62rem;
  }

  .hero__mobile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -2px 0 12px;
    color: var(--teal-dark);
    font-family: 'Manrope', sans-serif;
    font-size: .78rem;
    font-weight: 800;
  }

  .hero__mobile-location::before {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    content: '';
    flex: 0 0 auto;
  }

  .physio-hero .hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    column-gap: 12px;
  }

  .physio-hero .hero__content > :not(.button-row):not(.hero__key-points) {
    grid-column: 1 / -1;
  }

  .physio-hero .button-row {
    grid-column: 1;
    grid-template-columns: 1fr;
    align-self: start;
    gap: 7px;
  }

  .physio-hero .hero__key-points {
    display: grid;
    grid-column: 2;
    align-self: start;
    gap: 8px;
    margin: 0;
  }

  .physio-hero .button-row .button {
    min-height: 44px;
    padding-inline: 9px;
    font-size: .76rem;
    line-height: 1.1;
  }

  .physio-hero .hero__visual img {
    object-position: 50% 43%;
  }

  .physio-hero .hero__visual {
    mask-image: linear-gradient(180deg, transparent 0%, #000 3%);
  }

  .physio-hero .hero__visual::after {
    background: linear-gradient(180deg, rgba(255,255,255,.12), transparent 8%);
  }

  .feature-grid,
  .condition-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .inbody-visual {
    min-height: 360px;
  }

  .inbody-metrics {
    grid-template-columns: 1fr;
  }

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

  .testimonial-image-grid {
    grid-auto-columns: 88%;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 360px repeat(4, 260px);
  }

  .photo-gallery__item--primary {
    grid-column: auto;
  }

  .service-card {
    min-height: 500px;
  }

  .service-card__content {
    padding: 28px;
  }

  .split__media,
  .split__media img {
    min-height: 340px;
  }

  .cta-banner {
    padding: 34px 26px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-brand {
    width: 220px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float::before {
    width: 54px;
    height: 54px;
    background-size: contain;
  }
}

@media (max-width: 600px) and (max-height: 760px) {
  .hero__inner,
  .service-hero .hero__inner {
    padding: 16px 0 10px;
  }

  .hero__content h1,
  .service-hero .hero__content h1 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 8.5vw, 2.05rem);
    line-height: 1.02;
  }

  .hero__content .eyebrow {
    margin-bottom: 8px;
    font-size: .62rem;
  }

  .hero__mobile-location {
    margin-bottom: 8px;
    font-size: .7rem;
  }

  .hero__content .lead {
    margin-bottom: 10px;
    font-size: .86rem;
    line-height: 1.32;
  }

  .hero-offer {
    margin-bottom: 10px;
    padding: 8px 10px;
  }

  .hero-offer__badge {
    font-size: .56rem;
  }

  .hero-offer__label {
    font-size: .7rem;
  }

  .hero-offer__price strong {
    font-size: 1.45rem;
  }

  .button-row .button {
    min-height: 44px;
    font-size: .75rem;
  }

  .hero__key-points {
    display: flex;
    gap: 6px 12px;
    margin-top: 10px;
    font-size: .68rem;
  }
}
