:root {
  color-scheme: light;
  --ink: #25181a;
  --muted: #6f5b60;
  --soft: #9c8186;
  --line: rgba(128, 35, 48, 0.14);
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --red: #b51f35;
  --red-deep: #761326;
  --rose: #d96d7b;
  --rose-soft: #fff1f3;
  --gold: #b78342;
  --cream: #fff8f5;
  --paper: #fffaf8;
  --shadow: 0 20px 58px rgba(104, 34, 44, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(181, 31, 53, 0.13), transparent 26rem),
    linear-gradient(180deg, #fff7f6 0%, #fffdfb 44%, #fff5f2 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(118, 19, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--red-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(181, 31, 53, 0.34);
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  max-width: 230px;
  line-height: 1.05;
}

.brand small {
  color: var(--soft);
  font-size: 11px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  color: #5c464b;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--red);
  border-color: var(--red);
}

.header-cta {
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 14px 34px rgba(181, 31, 53, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--red-deep);
  box-shadow: 0 10px 26px rgba(104, 34, 44, 0.08);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: clamp(58px, 8vw, 116px) clamp(18px, 8vw, 132px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 248, 0.98) 0%, rgba(255, 250, 248, 0.92) 36%, rgba(255, 250, 248, 0.32) 58%, rgba(255, 250, 248, 0.04) 100%),
    url("assets/optimized/sala-jacuzzi-referencia.jpg");
  background-size: cover;
  background-position: 76% center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(255, 247, 246, 0.96));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--red-deep);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--red-deep);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 610px;
  color: #3e2a2e;
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 18px 44px rgba(181, 31, 53, 0.2);
}

.btn.ghost {
  background: #fff;
  color: var(--red-deep);
}

.btn.full {
  width: 100%;
}

.hero-audio {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(181, 31, 53, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(104, 34, 44, 0.08);
  backdrop-filter: blur(10px);
}

.hero-audio span {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-audio strong {
  display: block;
  margin-top: 3px;
  color: var(--red-deep);
  font-size: 14px;
}

.hero-audio audio {
  width: 100%;
  height: 38px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--red-deep);
  box-shadow: 0 10px 26px rgba(104, 34, 44, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 92px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-text {
  display: grid;
  gap: 12px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 580px;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 241, 243, 0.72), rgba(255, 255, 255, 0.86)),
    #fff;
}

.services-copy-block {
  max-width: 910px;
  margin: 26px auto 0;
  padding: 26px clamp(18px, 3vw, 36px);
  border: 1px solid rgba(181, 31, 53, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.services-copy-block p {
  margin-bottom: 18px;
  color: #4d393e;
  font-size: 16px;
  line-height: 1.72;
}

.services-copy-block p:last-child {
  margin-bottom: 0;
}

.services-copy-block .services-signature {
  color: var(--red-deep);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: -14px auto 34px;
}

.service-audience article {
  padding: 22px;
  border: 1px solid rgba(181, 31, 53, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-audience span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-audience p {
  margin-bottom: 0;
  color: #5f4b50;
  font-size: 14px;
  line-height: 1.65;
}

.service-grid,
.price-grid,
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.price-card,
.tech-grid article,
.coming-card,
.therapist-card,
.booking-form {
  border: 1px solid rgba(181, 31, 53, 0.13);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.service-card.featured {
  border-color: rgba(181, 31, 53, 0.36);
  box-shadow:
    0 22px 60px rgba(181, 31, 53, 0.15),
    inset 0 3px 0 var(--red);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-top span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p {
  color: #5b474c;
  font-size: 14px;
}

.service-notice {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(181, 31, 53, 0.2);
  border-radius: 14px;
  background: rgba(181, 31, 53, 0.08);
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.service-audio {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(181, 31, 53, 0.13);
  border-radius: 16px;
  background: rgba(255, 250, 248, 0.86);
}

.service-audio span {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-audio strong {
  display: block;
  margin-top: 3px;
  color: var(--red-deep);
  font-size: 13px;
}

.service-audio audio {
  width: 100%;
  height: 38px;
  border-radius: 999px;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 20px;
  padding-top: 20px;
}

.service-meta span,
.currency-pill {
  padding: 8px 10px;
  border: 1px solid rgba(181, 31, 53, 0.16);
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--red-deep);
  font-size: 12px;
}

.service-card .btn {
  min-height: 42px;
}

.techniques {
  background: #fff;
  border-block: 1px solid var(--line);
}

.tech-grid article {
  padding: 28px;
}

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

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(181, 31, 53, 0.28);
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--red);
  font-size: 24px;
}

.therapists {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
  background: linear-gradient(180deg, #fffaf8, #fff);
}

.therapists-copy {
  align-self: center;
}

.coming-card {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(118, 19, 38, 0.72)),
    url("assets/optimized/ritual-buda.jpg");
  background-size: cover;
  background-position: center;
}

.coming-card span {
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
}

.coming-card strong {
  margin: 12px 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

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

.therapist-card {
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.therapist-card::before,
.therapist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.therapist-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(118, 19, 38, 0.78)),
    url("assets/optimized/terapeuta-roja-carousel.jpeg");
  background-size: cover;
  background-position: center;
  animation: therapistPrimary 10s ease-in-out infinite;
}

.therapist-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(118, 19, 38, 0.8)),
    url("assets/optimized/presencia-chacra.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0;
  animation: therapistSecondary 10s ease-in-out infinite;
}

.therapist-card.male::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(118, 19, 38, 0.82)),
    url("assets/optimized/camilla-ritual.jpg");
  background-size: cover;
  background-position: center;
}

.therapist-card:hover::before,
.therapist-card:hover::after {
  filter: saturate(1.1) brightness(1.06);
  transform: scale(1.075);
}

@keyframes therapistPrimary {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes therapistSecondary {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .therapist-card::before,
  .therapist-card::after {
    animation: none;
  }

  .therapist-card::after {
    opacity: 0;
  }
}

.therapist-card span,
.therapist-card strong,
.therapist-card p {
  position: relative;
  z-index: 1;
}

.therapist-card span {
  color: #ffe1e5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.therapist-card strong {
  margin: 12px 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.therapist-card p {
  margin-bottom: 0;
  color: #fff4f1;
}

.gallery-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 243, 0.88)),
    url("assets/optimized/fondo-velas-rojas.jpg");
  background-size: cover;
  background-position: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(181, 31, 53, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item:hover {
  border-color: rgba(181, 31, 53, 0.34);
  box-shadow:
    0 24px 72px rgba(104, 34, 44, 0.18),
    0 0 42px rgba(181, 31, 53, 0.12);
}

.gallery-item.feature,
.gallery-item.tall,
.gallery-item.wide,
.gallery-item.square {
  grid-column: span 1;
  aspect-ratio: 4 / 5;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.98) brightness(0.96);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.045);
  filter: contrast(1.07) saturate(1.12) brightness(1.02);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(68, 11, 24, 0.72));
  pointer-events: none;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) - 2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item.soft img {
  filter: sepia(0.08) contrast(1.02) saturate(0.94) brightness(0.98);
}

.gallery-item.noir img {
  filter: grayscale(0.72) contrast(1.09) brightness(0.98);
}

.gallery-item.warm img {
  filter: sepia(0.12) contrast(1.04) saturate(1.12) brightness(0.98);
}

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--delay, 0ms) + 130ms);
}

.gallery-item.is-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.gallery-caption span {
  color: #ffd6dc;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .gallery-caption,
  .gallery-item img,
  .gallery-item video,
  .gallery-item::before {
    transition: none;
  }

  .gallery-item,
  .gallery-caption {
    opacity: 1;
    transform: none;
  }
}

.price-band {
  background: linear-gradient(180deg, #fff, #fff1f3);
  border-block: 1px solid var(--line);
}

.price-card {
  padding: 26px;
}

.price-card strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.price-card small {
  color: var(--soft);
}

.booking {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #fff;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-notes {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--red-deep);
}

.booking-notes li {
  padding-left: 22px;
  position: relative;
}

.booking-notes li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--red);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: var(--radius);
  background: #fffaf8;
  color: var(--ink);
  outline: none;
  padding: 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(181, 31, 53, 0.72);
  box-shadow: 0 0 0 3px rgba(181, 31, 53, 0.12);
}

input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  background: #f1e8e5;
  color: rgba(47, 27, 28, 0.52);
}

.summary-box {
  padding: 16px;
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: var(--radius);
  background: var(--rose-soft);
  color: var(--red-deep);
  line-height: 1.6;
}

.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

.check-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.calendar-lock {
  padding: 12px 14px;
  border: 1px dashed rgba(181, 31, 53, 0.28);
  border-radius: var(--radius);
  background: rgba(181, 31, 53, 0.07);
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-align: center;
}

.calendar-lock.unlocked {
  border-style: solid;
  background: rgba(58, 125, 83, 0.1);
  color: #2d6844;
}

.booking-calendar {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(181, 31, 53, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 244, 0.78)),
    var(--rose-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-calendar[aria-disabled="true"] {
  opacity: 0.62;
}

.calendar-head,
.time-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

.calendar-head span,
.time-head span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-head strong {
  display: block;
  margin-top: 3px;
  color: var(--red-deep);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.calendar-head small,
.time-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

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

.date-chip,
.time-chip {
  border: 1px solid rgba(181, 31, 53, 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--red-deep);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.date-chip {
  display: grid;
  gap: 3px;
  min-height: 62px;
  padding: 10px 6px;
  place-items: center;
}

.date-chip span,
.time-chip span {
  font-weight: 900;
}

.date-chip small,
.time-chip small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.date-chip:hover,
.time-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 31, 53, 0.42);
  box-shadow: 0 12px 24px rgba(78, 21, 30, 0.08);
}

.date-chip.selected,
.time-chip.selected {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 16px 34px rgba(181, 31, 53, 0.22);
}

.date-chip.selected small,
.time-chip.selected small {
  color: rgba(255, 255, 255, 0.76);
}

.date-chip:disabled,
.time-chip:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.time-chip {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 10px;
  text-align: center;
}

.time-chip.reserved {
  border-color: rgba(47, 27, 28, 0.08);
  background: #efe5e2;
  color: rgba(47, 27, 28, 0.46);
}

.time-chip.reserved small {
  color: rgba(47, 27, 28, 0.42);
}

.calendar-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.form-foot {
  margin: -2px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--soft);
}

.reservations-panel {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 32px;
  background: #fffaf8;
  border-top: 1px solid var(--line);
}

.reservation-list {
  display: grid;
  gap: 12px;
}

.reservation-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.reservation-item button {
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--red);
  cursor: pointer;
  padding: 9px 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--red-deep);
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
  color: #ffe2e6;
}

.site-footer small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 226, 230, 0.82);
  font-size: 12px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.footer-actions a {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 76;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f8f4d, #16733f);
  color: #fff;
  box-shadow: 0 18px 46px rgba(27, 113, 63, 0.3);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #22a65a, #16733f);
  box-shadow: 0 22px 54px rgba(27, 113, 63, 0.38);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  width: min(440px, calc(100vw - 36px));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(77, 21, 31, 0.18);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn,
.cookie-banner a {
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--red-deep);
  cursor: pointer;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-btn.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 12%, rgba(181, 31, 53, 0.11), transparent 25rem),
    linear-gradient(180deg, #fff7f6, #fffdfb 42%, #fff4f3);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.legal-document {
  width: min(900px, calc(100% - 36px));
  margin: clamp(34px, 7vw, 82px) auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(181, 31, 53, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.legal-document h1,
.legal-document h2 {
  text-align: left;
}

.legal-document h1 {
  margin-bottom: 20px;
}

.legal-document h2 {
  margin: 28px 0 10px;
  color: var(--red-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 850;
}

.legal-document p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-back {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(39, 16, 20, 0.46);
  backdrop-filter: blur(16px);
}

.age-gate.visible {
  display: grid;
}

.age-card {
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(181, 31, 53, 0.2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(181, 31, 53, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--red-deep);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1080px) {
  .service-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-audience {
    grid-template-columns: 1fr;
  }

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

  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    align-items: end;
    padding-top: 390px;
    padding-bottom: 54px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(255, 250, 248, 0.06) 0%, rgba(255, 250, 248, 0.2) 36%, rgba(255, 250, 248, 0.96) 72%, #fff7f6 100%),
      url("assets/optimized/sala-jacuzzi-referencia.jpg");
    background-size: cover;
    background-position: center top;
  }

  .intro,
  .booking,
  .therapists,
  .reservations-panel {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .therapist-list {
    grid-template-columns: 1fr;
  }

  .therapist-card {
    min-height: 260px;
  }

  .booking-copy {
    position: static;
  }

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

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

  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.square {
    grid-column: span 1;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 170px;
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

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

  .service-grid,
  .price-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .calendar-head,
  .time-head {
    align-items: start;
    display: grid;
  }

  .calendar-head small,
  .time-head small {
    text-align: left;
  }

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

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

  .hero {
    padding: 330px 18px 44px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.04;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  h3 {
    font-size: 18px;
  }

  p {
    line-height: 1.62;
  }

  .hero-copy {
    font-size: 15px;
  }

  .section-pad {
    padding: 48px 18px;
  }

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

  .service-audience {
    gap: 10px;
    margin: -6px auto 28px;
  }

  .services-copy-block {
    margin-top: 20px;
    padding: 18px;
  }

  .service-audience article {
    padding: 18px;
  }

  .services-copy-block p {
    font-size: 14px;
    line-height: 1.62;
  }

  .services-copy-block .services-signature {
    font-size: 12px;
    line-height: 1.6;
  }

  .service-audience p {
    font-size: 13px;
    line-height: 1.58;
  }

  .service-card,
  .price-card,
  .tech-grid article,
  .booking-form,
  .therapist-card {
    padding: 20px;
  }

  .service-top {
    display: grid;
  }

  .service-meta {
    margin-top: 10px;
  }

  .price-card strong {
    font-size: 28px;
  }

  .therapist-card strong {
    font-size: 26px;
  }

  .hero-actions,
  .age-actions,
  .site-footer {
    flex-direction: column;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }

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

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    white-space: normal;
    text-align: center;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.square {
    aspect-ratio: 5 / 6;
  }

  .gallery-caption strong {
    font-size: 18px;
  }

  .age-card {
    max-height: calc(100vh - 32px);
    overflow: auto;
  }
}
