:root {
  --page: #f7f1e8;
  --surface: #fffaf4;
  --ink: #351b16;
  --text: #554c46;
  --muted: #806b5d;
  --line: #cdbba8;
  --clay: #754835;
  --clay-dark: #5e3728;
  --olive: #9ca080;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', 'Segoe UI', sans-serif;
  --container: 1792px;
  --gutter: clamp(32px, 4.65vw, 84px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-color: var(--clay) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: var(--clay);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clay-dark);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .86), transparent 30%),
    linear-gradient(112deg, #f9f5ee 0%, #f1e7da 58%, #f8f2ea 100%);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible, a:focus-visible, input:focus-visible + .massage-option__control {
  outline: 3px solid rgba(61, 101, 84, .35);
  outline-offset: 4px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.header {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 30;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.header--scrolled {
  position: fixed;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), 78vw, 1320px);
  min-height: 50px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(255, 250, 244, .75);
  border-radius: 999px;
  background: rgba(255, 250, 244, .95);
  box-shadow: 0 16px 40px rgba(55, 33, 23, .12);
  backdrop-filter: blur(14px);
}

.header--scrolled .nav {
  background: rgba(117, 72, 53, .96);
  border-color: rgba(255, 250, 244, .18);
}

.nav__logo, .footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.serena-logo {
  display: block;
  width: 132px;
  height: auto;
}

.serena-leaf-mark {
  width: 18px;
  height: 18px;
  margin-left: 7px;
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 26px);
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #2f2926;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease;
}

.nav__link:hover, .nav__link--active {
  background: var(--clay);
  color: #fffaf4;
}

.header--scrolled .nav__link {
  color: #fffaf4;
}

.header--scrolled .serena-logo {
  filter: brightness(0) invert(1);
}

.header--scrolled .serena-leaf-mark { stroke: #fffaf4; }

.nav__cta, .btn, .booking-modal__submit {
  border: 0;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav__cta {
  justify-self: end;
  width: 122px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--clay);
  color: #fffaf4;
  font-size: 12px;
  font-weight: 700;
}

.nav__cta:hover, .btn--primary:hover, .booking-modal__submit:hover:not(:disabled) { background: var(--clay-dark); }

.header--scrolled .nav__cta {
  background: #fffaf4;
  color: var(--clay);
}

.header--scrolled .nav__cta:hover {
  background: #efe2d5;
}

.nav__toggle {
  display: none;
  justify-self: end;
  width: 42px;
  min-height: 42px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.header--scrolled .nav__toggle span {
  background: #fffaf4;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #eadfd1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(250, 247, 241, .28) 0%, rgba(250, 247, 241, .08) 36%, transparent 52%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 10%;
  right: -1.5%;
  width: min(48vw, 610px);
  aspect-ratio: 1;
  border: 1.4px solid rgba(255, 250, 244, .86);
  border-radius: 50%;
  pointer-events: none;
}

.hero__container {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(134px, 21.5vh, 216px);
  padding-bottom: 156px;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(39vw, 500px);
  margin-top: 0;
}

.hero__eyebrow, .section-eyebrow, .booking-modal__eyebrow {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .44em;
}

.hero__title {
  margin: 10px 0 22px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: 0;
}

.hero__description {
  max-width: 390px;
  margin: 0 0 26px;
  color: #514b47;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
}

.btn--primary { gap: 18px; background: var(--clay); color: #fffaf4; }

.btn--primary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__visual {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.about {
  --section-fill: #ece1d4;
  position: relative;
  padding: 100px 0;
  background: var(--section-fill);
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  align-items: center;
  gap: clamp(70px, 8vw, 140px);
}

.about__media {
  height: min(580px, 42vw);
  min-height: 470px;
  overflow: hidden;
  border-radius: 0 42% 0 36% / 0 24% 0 28%;
}

.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about__content { max-width: 585px; }
.section-eyebrow { margin-bottom: 16px; }

.about h2 {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(48px, 4vw, 70px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}

.about__content > p { max-width: 555px; margin: 0; font-size: 18px; line-height: 1.75; }

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 38px 0;
}

.about__values div { padding-top: 16px; border-top: 1px solid var(--line); }
.about__values strong, .about__values span { display: block; }
.about__values strong { margin-bottom: 6px; color: var(--clay); font-family: var(--heading); font-size: 24px; font-weight: 600; }
.about__values span { font-size: 13px; line-height: 1.4; }
.about__cta { padding-inline: 34px; }

.footer {
  padding: 30px 0;
  background: var(--clay);
  color: #fffaf4;
}

.footer__container {
  display: grid;
  grid-template-columns: minmax(180px, .75fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(32px, 4.5vw, 82px);
}

.footer__brand { padding-top: 2px; }

.footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer__logo .serena-logo {
  width: 156px;
  filter: brightness(0) invert(1);
}

.footer__logo .serena-leaf-mark { stroke: #fffaf4; }

.legal-header__logo {
  display: inline-flex;
  align-items: center;
}

.footer__column p,
.footer__links a {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 250, 244, .78);
  font-size: 14px;
  line-height: 1.5;
}

.footer__links {
  display: grid;
  gap: 6px;
}

.footer__column h3 {
  margin: 0 0 3px;
  color: #fffaf4;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.footer__links a {
  width: fit-content;
  transition: color .2s ease;
}

.footer__links a:hover {
  color: #fffaf4;
}

.footer__note {
  margin-top: 6px !important;
  font-size: 12px !important;
}

.footer__contact strong {
  color: #fffaf4;
}

/* Página legal enlazada desde el footer. */
.legal-page {
  background: #f8f3ec;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container));
  min-height: 84px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  border-bottom: 1px solid rgba(117, 72, 53, .16);
}

.legal-header__logo .serena-logo { width: 150px; }

.legal-header__back {
  color: var(--clay);
  font-size: 14px;
  font-weight: 700;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 130px);
  padding-top: 84px;
  padding-bottom: 96px;
}

.legal-content__intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.legal-content__intro h1,
.legal-section h2,
.legal-section h3 {
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 600;
}

.legal-content__intro h1 {
  margin: 10px 0 18px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .95;
}

.legal-content__intro p,
.legal-section p {
  color: var(--text);
}

.legal-meta {
  margin-top: 22px;
  color: var(--clay) !important;
  font-size: 12px;
  font-weight: 700;
}

.legal-toc {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(117, 72, 53, .18);
}

.legal-toc a {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.legal-toc a:hover { color: var(--clay); }

.legal-document { min-width: 0; }

.legal-section {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(117, 72, 53, .18);
}

.legal-section h2 { margin: 0 0 28px; font-size: 42px; }
.legal-section h3 { margin: 24px 0 6px; font-size: 23px; }
.legal-section p { max-width: 780px; margin: 0 0 16px; line-height: 1.75; }
.legal-section p:last-child { margin-bottom: 0; }

.legal-callout {
  max-width: 780px;
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 3px solid var(--clay);
  background: rgba(255, 250, 244, .72);
}

.legal-callout strong { color: var(--ink); }
.legal-callout p { margin: 6px 0 0; }
.legal-callout a { color: var(--clay); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.legal-footer { padding: 24px 0; background: var(--clay); color: #fffaf4; font-size: 13px; }
.legal-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-footer__inner > a { font-family: var(--heading); font-size: 24px; }
.legal-footer__inner div { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-footer__inner div a { color: rgba(255, 250, 244, .82); }

.booking-modal[hidden] { display: none; }

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49, 31, 24, .58);
  backdrop-filter: blur(5px);
  animation: fade-in .22s ease both;
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(48, 27, 20, .28);
  animation: modal-in .28s cubic-bezier(.2, .8, .2, 1) both;
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eee3d6;
  color: var(--ink);
  cursor: pointer;
}

.booking-modal__close svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.booking-modal__eyebrow { margin-bottom: 10px; font-size: 11px; }

.booking-modal h2 {
  margin: 0 52px 10px 0;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.booking-modal__intro { max-width: 470px; margin: 0 0 28px; color: #6b615a; }
.booking-modal fieldset { display: grid; gap: 12px; margin: 0; padding: 0; border: 0; }

.massage-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid #d8c8b6;
  border-radius: 7px;
  background: #fffdf9;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.massage-option:hover { border-color: #b18b74; }
.massage-option:has(input:checked) { border-color: var(--clay); background: #f5ebe0; box-shadow: 0 0 0 1px var(--clay); }
.massage-option input { position: absolute; opacity: 0; pointer-events: none; }

.massage-option__control {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid #a88f7f;
  border-radius: 50%;
}

.massage-option__control::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  transform: scale(0);
  transition: transform .16s ease;
}

.massage-option input:checked + .massage-option__control { border-color: var(--clay); }
.massage-option input:checked + .massage-option__control::after { transform: scale(1); }
.massage-option__copy strong, .massage-option__copy small { display: block; }
.massage-option__copy strong { color: var(--ink); font-family: var(--heading); font-size: 21px; font-weight: 600; line-height: 1.1; }
.massage-option__copy small { margin-top: 3px; color: #746a63; font-size: 12px; }
.booking-modal__hint { min-height: 21px; margin: 15px 0; color: #7a6c62; font-size: 13px; }

.booking-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  background: var(--clay);
  color: #fffaf4;
  font-weight: 700;
}

.booking-modal__submit:disabled { cursor: not-allowed; background: #c7b7aa; color: #f7f2ed; }
.booking-modal__submit svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@keyframes fade-in { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }

@media (max-width: 1450px) {
  :root { --gutter: clamp(42px, 4vw, 64px); }
  .hero__title { font-size: clamp(52px, 5vw, 74px); }
  .hero__content { width: min(42vw, 470px); }
}

@media (max-width: 1180px) {
  .hero { min-height: 100svh; padding-top: 0; }
  .hero::before {
    background: linear-gradient(90deg, rgba(250, 247, 241, .3) 0%, rgba(250, 247, 241, .1) 42%, transparent 60%);
  }
  .hero::after { top: 11%; right: -8%; width: min(54vw, 500px); }
  .hero__container { min-height: 100svh; padding-top: clamp(128px, 21vh, 190px); padding-bottom: 156px; }
  .hero__content { width: min(43vw, 430px); max-width: 430px; margin-top: 0; }
  .hero__visual img { object-position: 52% center; }
  .about__layout { grid-template-columns: 1fr; gap: 56px; }
  .about__media { height: 620px; min-height: 0; }
  .about__content { max-width: 720px; }
  .footer__container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
}

@media (max-width: 820px) {
  .nav { grid-template-columns: 1fr auto; width: min(calc(100% - 36px), 720px); }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__menu.show {
    position: fixed;
    top: 82px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 8px;
    background: rgba(249, 245, 238, .98);
    box-shadow: 0 18px 45px rgba(57, 34, 25, .16);
  }
  .header--scrolled .nav__menu.show {
    border-color: rgba(255, 250, 244, .22);
    background: rgba(117, 72, 53, .98);
  }
  .nav__link { justify-content: center; }
  .footer__container { grid-template-columns: 1fr; gap: 28px; }
  .footer__column { justify-items: start; }
  .legal-content { grid-template-columns: 1fr; padding-top: 58px; }
  .legal-content__intro { position: static; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; }
  html { scroll-padding-top: 76px; }
  .legal-header { min-height: 72px; }
  .legal-header__logo .serena-logo { width: 125px; }
  .legal-content { gap: 48px; padding-top: 48px; padding-bottom: 72px; }
  .legal-content__intro h1 { font-size: 48px; }
  .legal-section { padding-bottom: 36px; margin-bottom: 36px; }
  .legal-section h2 { font-size: 34px; }
  .legal-footer__inner { align-items: flex-start; flex-direction: column; }
  .header { top: 12px; }
  .nav { min-height: 54px; padding: 0 8px 0 18px; }
  .serena-logo { width: 116px; }
  .nav__menu.show { top: 72px; }
  .hero { min-height: 100svh; padding-top: 0; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(250, 245, 237, .96) 0%, rgba(250, 245, 237, .85) 42%, rgba(250, 245, 237, .34) 74%, rgba(250, 245, 237, .12) 100%),
      linear-gradient(180deg, rgba(250, 245, 237, .62) 0%, transparent 34%, rgba(250, 245, 237, .34) 100%);
  }
  .hero::after { top: 13%; right: -34%; width: 88vw; }
  .hero__container { min-height: 100svh; padding-top: 112px; padding-bottom: 158px; }
  .hero__visual img { object-position: 60% center; transform: none; }
  .hero__content { width: min(100%, 370px); padding-bottom: 0; }
  .hero__eyebrow, .section-eyebrow { font-size: 11px; letter-spacing: .3em; }
  .hero__title { margin-top: 10px; font-size: clamp(42px, 12vw, 52px); line-height: .9; }
  .hero__description { max-width: 315px; font-size: 15.5px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero__actions .btn--primary { width: auto; min-height: 46px; padding-inline: 22px; }
  .about { padding: 68px 0; }
  .about__layout { gap: 42px; }
  .about__media { height: 430px; border-radius: 0 32% 0 24% / 0 16% 0 18%; }
  .about h2 { font-size: 48px; }
  .about__content > p { font-size: 16px; line-height: 1.65; }
  .about__values { grid-template-columns: 1fr; gap: 12px; margin: 30px 0; }
  .about__values div { display: grid; grid-template-columns: 40px 1fr; align-items: center; padding-top: 10px; }
  .about__values strong { margin: 0; }
  .footer { padding: 28px 0; }
  .booking-modal { padding: 12px; align-items: end; }
  .booking-modal__dialog { width: 100%; max-height: calc(100vh - 24px); padding: 34px 20px 24px; border-radius: 8px 8px 0 0; }
  .booking-modal h2 { font-size: 40px; }
  .booking-modal__intro { padding-right: 30px; font-size: 14px; }
  .massage-option { padding: 13px 14px; }
  .massage-option__copy strong { font-size: 19px; }
}

/* ==========================================================================
   NUEVAS SECCIONES: ACCESOS RÁPIDOS, TERAPIAS, JABONERÍA Y GUÍA DE CUTIS
   ========================================================================== */

/* QUICK NAV BAR */
.quick-nav-bar {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 22px;
  left: var(--gutter);
  padding: 0;
}

.quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(570px, 100%);
  gap: 0;
}

.quick-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 60px;
  padding: 0 clamp(22px, 2.4vw, 40px);
  border: 0;
  border-left: 1px solid rgba(53, 27, 22, .2);
  background: transparent;
  transition: transform .2s ease;
}

.quick-nav__item:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.quick-nav__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(247, 239, 229, .88);
  color: var(--clay);
  transition: background-color .2s ease, color .2s ease;
}

.quick-nav__item:hover .quick-nav__icon {
  background: var(--clay);
  color: #fffaf4;
}

.quick-nav__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-nav__text strong {
  display: block;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.quick-nav__text small {
  display: block;
  margin-top: 2px;
  color: #554a43;
  font-size: 11px;
  line-height: 1.25;
}

/* HEADERS DE SECCIÓN */
.section-header {
  max-width: 780px;
  margin: 0 auto 52px;
}

.text-center {
  text-align: center;
}

.section-main-title {
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 600;
  line-height: .96;
}

.section-main-desc {
  max-width: 560px;
  margin: 0 auto;
  color: #5d534c;
  font-size: 16px;
  line-height: 1.55;
}

/* La curva pertenece al fondo de la sección inferior. */
.soap-skin-section::before,
.about::before {
  position: absolute;
  z-index: 2;
  top: -64px;
  left: -4%;
  width: 108%;
  height: 65px;
  border-radius: 52% 48% 0 0 / 88% 76% 0 0;
  background: var(--section-fill);
  pointer-events: none;
  content: '';
}

.soap-skin-section > .container,
.about > .container {
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   MASAJES Y TERAPIAS
   ========================================================================== */
.deep-therapies {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0 88px;
  background: #f8f3ec;
}

.deep-therapies::before,
.deep-therapies::after {
  position: absolute;
  z-index: 0;
  width: clamp(190px, 22vw, 350px);
  aspect-ratio: 231 / 326;
  background: url('img/skin-leaf-corner.png') center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: .09;
  pointer-events: none;
  content: '';
}

.deep-therapies::before {
  top: 96px;
  left: -72px;
  transform: rotate(10deg);
}

.deep-therapies::after {
  right: -68px;
  bottom: -86px;
  transform: rotate(190deg);
}

.deep-therapies > .container {
  position: relative;
  z-index: 1;
}

.deep-therapies .section-header { margin-bottom: 38px; }

.visual-therapies-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 38px;
  width: 100%;
  margin-inline: auto;
}

.visual-therapy-row {
  display: grid;
  grid-template-columns: minmax(210px, .95fr) minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  gap: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(117, 72, 53, .16);
  border-radius: 0;
  background: transparent;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.visual-therapy-row:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 72, 53, .35);
  box-shadow: none;
}

.visual-therapy-row--reverse {
  display: grid;
}

.visual-therapy-row--reverse .visual-therapy__media {
  order: 0;
}

.visual-therapy__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 178px;
  aspect-ratio: 16 / 9;
  border-radius: 42px 8px 42px 8px;
  box-shadow: none;
}

.visual-therapy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.visual-therapy-row:hover .visual-therapy__media img {
  transform: scale(1.03);
}

.visual-therapy__badge {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: auto;
  max-width: calc(100% - 16px);
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(117, 72, 53, .16);
  border-radius: 0 0 0 7px;
  background: rgba(255, 250, 244, .94);
  backdrop-filter: blur(8px);
  color: var(--clay-dark);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(69, 42, 29, .08);
}

.visual-therapy__content {
  display: flex;
  min-width: 0;
  min-height: 178px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 0 10px 24px;
}

.visual-therapy__content h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(24px, 1.75vw, 31px);
  font-weight: 600;
  line-height: 1.02;
}

.visual-therapy__tagline {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.visual-therapy__content .btn {
  min-height: 38px;
  margin-top: auto;
  padding-inline: 18px;
  font-size: 0;
}

.visual-therapy__content .btn::before {
  content: 'Reservar sesión';
  font-size: 12px;
}

.visual-therapy__content .btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   COLECCIONES NATURALES
   ========================================================================== */
/* ==========================================================================
   GUÍA DE PIEL Y JABONERÍA NATURAL
   ========================================================================== */
.soap-skin-section {
  --section-fill: #f4ede4;
  position: relative;
  overflow: hidden;
  padding: 78px 0 112px;
  background: var(--section-fill) url('img/soap-catalog-bg.png') center / cover no-repeat;
}

.soap-skin-section > .container {
  position: relative;
  z-index: 3;
}

.soap-skin-section .section-header {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto 28px;
  text-align: center;
}

.section-eyebrow--ruled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.section-eyebrow--ruled::before,
.section-eyebrow--ruled::after {
  width: 42px;
  height: 1px;
  background: rgba(117, 72, 53, .42);
  content: '';
}

.soap-skin-section .section-main-title {
  margin-top: 12px;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: .98;
}

.soap-skin-section .section-main-desc {
  max-width: 660px;
  margin: 12px auto 0;
  color: #71665e;
}

.soaps-side-note {
  position: absolute;
  z-index: 0;
  margin: 0;
  color: rgba(117, 72, 53, .62);
  font-family: var(--heading);
  font-size: 18px;
  font-style: italic;
  line-height: 1.25;
}

.soaps-side-note::after {
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 14px;
  background: rgba(117, 72, 53, .62);
  content: '';
}

.soaps-side-note--left { top: 126px; left: 8px; }
.soaps-side-note--right { top: 48px; right: 4px; }

.soaps-quick-explorer {
  width: min(1240px, calc(100% - 92px));
  margin: 42px auto 0;
}

.soaps-quick-explorer__header {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.soaps-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 50px auto 0;
  color: rgba(117, 72, 53, .76);
  font-family: var(--heading);
  font-size: 20px;
  font-style: italic;
  text-align: center;
}

.soaps-quote::before,
.soaps-quote::after {
  width: 56px;
  height: 1px;
  background: rgba(117, 72, 53, .45);
  content: '';
}

.soaps-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.soap-tab {
  min-width: 108px;
  min-height: 42px;
  padding: 8px 22px;
  border: 1px solid rgba(117, 72, 53, .42);
  border-radius: 999px;
  background: rgba(255, 252, 247, .7);
  box-shadow: 0 3px 8px rgba(79, 51, 38, .07);
  color: #3f332d;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.soap-tab:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-1px);
}

.soap-tab--active {
  border-color: var(--clay);
  background: var(--clay);
  color: #fffaf4;
}

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

.soap-micro-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 17px;
  background: rgba(255, 252, 247, .76);
  box-shadow: 0 8px 22px rgba(88, 60, 46, .06);
  backdrop-filter: blur(5px);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.soap-micro-card[hidden] {
  display: none;
}

.soap-micro-card:hover {
  border-color: rgba(117, 72, 53, .3);
  box-shadow: 0 10px 26px rgba(88, 60, 46, .1);
  transform: translateY(-1px);
}

.soap-dot {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 252, 247, .86);
  border-radius: 50%;
  background-color: var(--s-color);
  background-position: center;
  background-size: cover;
  box-shadow: 0 3px 10px rgba(66, 44, 33, .12);
}

.soap-micro-card[data-category='arcillas'] .soap-dot { background-image: url('img/soap-clays.jpg'); }
.soap-micro-card[data-category='botanicos'] .soap-dot { background-image: url('img/soap-botanicals.jpg'); }
.soap-micro-card[data-category='mantecas'] .soap-dot { background-image: url('img/soap-butters.jpg'); }
.soap-micro-card:nth-child(3n + 2) .soap-dot { background-position: 35% center; }
.soap-micro-card:nth-child(3n) .soap-dot { background-position: 75% center; }

.soap-micro-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: #2f2723;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.soap-micro-card small {
  display: block;
  margin-top: 2px;
  color: #776b63;
  font-size: 11px;
  line-height: 1.25;
}

.soap-micro-card button {
  min-width: 64px;
  min-height: 38px;
  padding: 6px 14px;
  border: 1px solid var(--clay);
  border-radius: 8px;
  background: rgba(255, 250, 244, .42);
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease;
}

.soap-micro-card button:hover {
  background: var(--clay);
  color: #fffaf4;
}

/* ==========================================================================
   SELECTOR Y RECOMENDACIÓN DINÁMICA POR TIPO DE PIEL
   ========================================================================== */
.skin-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: min(1160px, calc(100% - 92px));
  margin: 0 auto 20px;
}

.skin-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid rgba(117, 72, 53, .28);
  border-radius: 11px;
  background: rgba(255, 252, 247, .8);
  box-shadow: 0 4px 14px rgba(79, 51, 38, .04);
  cursor: pointer;
  text-align: center;
  transition: all .2s ease;
}

.skin-btn:hover {
  background: #fffdfa;
  border-color: var(--clay);
  transform: none;
}

.skin-btn--active {
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 8px 20px rgba(117, 72, 53, .18);
}

.skin-btn strong {
  display: block;
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.skin-btn--active strong { color: #fffaf4; }

/* RESULTADO DINÁMICO DE CUTIS */
.skin-result-card {
  display: grid;
  grid-template-columns: 220px minmax(230px, 1fr) minmax(340px, 1.25fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 60px));
  min-height: 190px;
  padding: 0 24px 0 0;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(117, 72, 53, .2);
  border-radius: 13px;
  background: rgba(255, 253, 249, .86);
  box-shadow: 0 12px 34px rgba(78, 48, 34, .07);
  backdrop-filter: blur(5px);
}

.skin-result-card__media {
  align-self: stretch;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  background: #e9dfd2;
}

.skin-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease;
}

.skin-result-card__tag {
  display: inline-block;
  margin-bottom: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.skin-result-card h3 {
  margin: 4px 0 6px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 600;
}

.skin-result-card__action {
  margin: 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 500;
}

.skin-result-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 4px;
  margin: 0;
}

.skin-result-card__body > div {
  min-height: 104px;
  padding: 10px 22px;
  border-left: 1px solid rgba(117, 72, 53, .18);
}

.skin-result-card__body h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
}

.skin-result-card__body p {
  margin: 0;
  color: #554a43;
  font-size: 12px;
  line-height: 1.45;
}

.skin-result-card__footer {
  display: flex;
  justify-content: flex-end;
}

.skin-result-card__footer .btn { min-height: 46px; padding-inline: 22px; font-size: 12px; white-space: nowrap; }

/* ==========================================================================
   MODAL DE RESERVA / COMPRA (PESTAÑAS Y MULTIFUNCIÓN)
   ========================================================================== */
.modal-category-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 8px;
  background: #eee2d4;
}

.modal-cat-btn {
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #5e5045;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.modal-cat-btn--active {
  background: #fffaf4;
  color: var(--clay);
  box-shadow: 0 2px 8px rgba(66, 40, 27, .12);
}

.modal-fieldset[hidden] {
  display: none !important;
}

/* ==========================================================================
   RESPONSIVIDAD PARA NUEVAS SECCIONES
   ========================================================================== */
@media (max-width: 1180px) {
  .quick-nav-bar { bottom: 8px; }
  .quick-nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .quick-nav__item { gap: 10px; padding-inline: 18px; }
  .quick-nav__item:first-child { padding-left: 0; }
  .visual-therapies-stack { gap: 18px 26px; }
  .visual-therapy-row,
  .visual-therapy-row--reverse { grid-template-columns: minmax(180px, .9fr) minmax(0, 1fr); }
  .visual-therapy__content { padding-left: 18px; }
  .soaps-side-note { display: none; }
  .soaps-quick-explorer { width: min(100%, 900px); }
  .soaps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .skin-selector { width: min(100%, 900px); }
  .skin-result-card { grid-template-columns: 190px minmax(0, .9fr) minmax(0, 1.25fr); width: min(100%, 1000px); }
  .skin-result-card__media { grid-row: 1 / 3; }
  .skin-result-card__footer { grid-column: 2 / -1; padding-bottom: 18px; }
  .skin-result-card__body { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  .visual-therapies-stack { grid-template-columns: 1fr; }
  .visual-therapy-row,
  .visual-therapy-row--reverse { grid-template-columns: minmax(240px, .85fr) minmax(0, 1fr); }
  .skin-selector { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .skin-result-card { grid-template-columns: 210px minmax(0, 1fr); padding-right: 20px; }
  .skin-result-card__media { grid-row: 1 / 2; }
  .skin-result-card__body { grid-column: 1 / -1; }
  .skin-result-card__footer { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .soap-skin-section::before,
  .about::before {
    top: -40px;
    height: 41px;
  }
  .deep-therapies, .soap-skin-section { padding: 48px 0 72px; }
  .visual-therapies-stack { grid-template-columns: 1fr; gap: 16px; }
  .visual-therapy-row,
  .visual-therapy-row--reverse { grid-template-columns: 1fr; padding: 0 0 18px; }
  .visual-therapy__media { min-height: 0; aspect-ratio: 16 / 9; border-radius: 32px 6px 32px 6px; }
  .visual-therapy__content { min-height: 0; padding: 18px 2px 0; }
  .visual-therapy__content h3 { font-size: 26px; }
  .visual-therapy__content .btn { min-height: 44px; }
  .quick-nav-bar { right: auto; bottom: 4px; left: 50%; width: 100vw; padding-inline: 12px; transform: translateX(-50%); }
  .quick-nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; min-width: 0; gap: 0; }
  .quick-nav__item { flex-direction: column; justify-content: center; gap: 4px; min-height: 112px; padding: 8px 6px; text-align: center; }
  .quick-nav__item:first-child { padding-left: 6px; }
  .quick-nav__icon { width: 40px; height: 40px; }
  .quick-nav__text { min-width: 0; }
  .quick-nav__text strong { font-size: 12px; white-space: normal; }
  .quick-nav__text small { display: none; }
  .soap-skin-section { background-position: 43% center; }
  .soap-skin-section .section-header { width: 100%; margin-bottom: 20px; }
  .soap-skin-section .section-main-title { font-size: 40px; }
  .soap-skin-section .section-main-desc { font-size: 14px; }
  .section-eyebrow--ruled { gap: 12px; }
  .section-eyebrow--ruled::before,
  .section-eyebrow--ruled::after { width: 24px; }
  .soaps-quick-explorer { width: 100%; }
  .soaps-controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 8px; }
  .soap-tab { width: 100%; min-width: 0; padding-inline: 12px; }
  .soaps-grid { grid-template-columns: 1fr; }
  .soap-micro-card { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 10px; min-height: 68px; padding: 8px 10px; }
  .soap-dot { width: 48px; height: 48px; }
  .soap-micro-card button { min-width: 60px; padding-inline: 10px; }
  .soaps-quote { gap: 12px; margin-top: 36px; font-size: 17px; }
  .soaps-quote::before, .soaps-quote::after { width: 28px; }
  .skin-selector { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .skin-selector .skin-btn:last-child { grid-column: 1 / -1; }
  .skin-result-card { grid-template-columns: 1fr; width: 100%; padding: 0 18px 22px; }
  .skin-result-card__media { grid-row: auto; min-height: 0; margin-inline: -18px; aspect-ratio: 16 / 8; }
  .skin-result-card__header { padding-top: 2px; }
  .skin-result-card__footer { grid-column: auto; padding-bottom: 0; }
  .skin-result-card__body { grid-template-columns: 1fr; }
  .skin-result-card__body > div { min-height: 0; padding: 14px 0; border-left: 0; border-top: 1px solid rgba(117, 72, 53, .18); }
  .skin-result-card h3 { font-size: 24px; }
  .skin-result-card__footer { justify-content: stretch; }
  .skin-result-card__footer .btn { width: 100%; }
}

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