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

  :root {
    --ciruela: #684353;
    --musgo: #4E665A;
    --rosa: #B58F8E;
    --salvia: #A5C180;
    --lino: #D4D5C0;
    --blanco: #FAF9F6;
    --texto: #2C2825;
    --texto-suave: #5a5550;
    /* Padding nav + logo + borde (~60.5px): si es menor, la página supera 100vh unos píxeles y aparece scroll vacío */
    --nav-h: 61px;
    --fs: 2px;
  }

  html {
    font-size: calc(16px + var(--fs));
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    overflow-x: clip;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #F0EFEA;
    color: var(--texto);
    overflow-x: clip;
  }


  /* ── NAV GLOBAL ── */
  nav {
    background: var(--musgo);
    padding: 12px 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 0.5px solid rgba(212,213,192,0.22);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
  }
  .nav-logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(140px, 27vw);
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.93;
  }
  a.nav-logo { text-decoration: none; }
  .nav-links {
    display: flex;
    gap: 24px;
    margin-left: 28px;
  }
  .nav-links a {
    font-size: calc(12px + var(--fs));
    color: var(--lino);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { color: var(--salvia); }
  .nav-links a.active { border-bottom: 1px solid var(--salvia); padding-bottom: 1px; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
  }
  .nav-lang {
    font-size: calc(11px + var(--fs));
    color: var(--rosa);
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
  }
  .nav-lang:hover {
    opacity: 0.75;
  }
  .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--salvia);
    opacity: 0.92;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    line-height: 0;
  }
  .nav-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .nav-icon:hover { opacity: 1; }

  /* ── HOME ── */
  .home-hero {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-video {
    background: var(--musgo);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-video-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
  }
  .hero-video-inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .hero-video-label {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--salvia);
    display: block;
    margin-bottom: 14px;
    opacity: 0.8;
  }
  .hero-play {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(165,193,128,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--salvia);
    opacity: 0.5;
    font-size: calc(20px + var(--fs));
  }
  .hero-ratio {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: calc(9px + var(--fs));
    color: var(--salvia);
    opacity: 0.35;
    letter-spacing: 0.08em;
  }
  .hero-content {
    background: var(--lino);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 52px;
  }
  .hero-eyebrow {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 18px;
  }
  .hero-h1 {
    font-size: calc(32px + var(--fs));
    font-weight: 400;
    color: var(--ciruela);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .hero-h1--italic {
    font-style: italic;
  }
  .hero-body {
    font-size: calc(14px + var(--fs));
    color: var(--musgo);
    line-height: 1.8;
    margin-bottom: 32px;
  }
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 32px;
  }
  .service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.5);
    border: 0.5px solid rgba(104,67,83,0.2);
    border-radius: 10px;
    padding: 14px 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .service-btn:hover {
    background: rgba(255,255,255,0.8);
    border-color: rgba(104,67,83,0.4);
  }
  .service-name {
    font-size: calc(14px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
    display: block;
  }
  .service-sub {
    font-size: calc(11px + var(--fs));
    color: var(--musgo);
    margin-top: 2px;
    display: block;
  }
  .service-arrow {
    font-size: calc(14px + var(--fs));
    color: var(--rosa);
  }
  .hero-bottom {
    display: flex;
    justify-content: flex-end;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ciruela);
    color: var(--lino);
    font-size: calc(13px + var(--fs));
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 32px;
    letter-spacing: 0.03em;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    width: fit-content;
    align-self: flex-start;
  }
  .btn-primary:hover { opacity: 0.85; }
  .btn-salvia {
    background: var(--salvia);
    color: var(--musgo);
  }

  .inner {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
  }

  /* ── PÁGINAS DE TERAPIA ── */
  .terapia-page {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: calc(100vh - var(--nav-h));
    overflow: visible;
  }
  .terapia-photo {
    position: relative;
    overflow: hidden;
  }
  /* Página con foto (p. ej. Thai): columna imagen llena altura útil en escritorio */
  .terapia-page:has(.terapia-photo-img) {
    grid-template-rows: minmax(0, 1fr);
  }
  .terapia-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    z-index: 0;
  }
  .terapia-photo-img--focus-lower {
    object-position: center bottom;
  }
  .terapia-photo-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(135deg, rgba(0,0,0,0.07) 0, rgba(0,0,0,0.07) 1px, transparent 1px, transparent 14px);
  }
  .terapia-photo-label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 2;
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }
  .terapia-content {
    background: var(--blanco);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 44px;
    overflow: visible;
  }
  .terapia-subnav {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(104,67,83,0.12);
    flex-wrap: wrap;
  }
  .terapia-tab {
    font-size: calc(11px + var(--fs));
    color: var(--rosa);
    padding: 5px 14px;
    border-radius: 20px;
    border: 0.5px solid rgba(104,67,83,0.2);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }
  .terapia-tab:hover { background: rgba(104,67,83,0.06); }
  .terapia-tab.on { background: var(--ciruela); color: var(--lino); border-color: var(--ciruela); }
  .terapia-title {
    font-size: calc(42px + var(--fs));
    font-weight: 400;
    color: var(--ciruela);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .terapia-subtitle {
    font-size: calc(14px + var(--fs));
    color: var(--musgo);
    font-style: italic;
    margin-bottom: 14px;
  }
  .terapia-meta-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .terapia-meta {
    display: flex;
    gap: 24px;
  }
  .meta-item { display: flex; flex-direction: column; gap: 3px; }
  .meta-label {
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rosa);
  }
  .meta-value {
    font-size: calc(16px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
  }
  .terapia-desc {
    font-size: calc(13px + var(--fs));
    color: var(--texto-suave);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .terapia-benefits-label {
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 8px;
  }
  .terapia-benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .terapia-benefit {
    background: var(--lino);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .terapia-benefit > div:first-child {
    flex: 1;
    min-width: 0;
    padding-right: 4px;
  }
  .terapia-benefit-name {
    font-size: calc(12px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
    margin-bottom: 2px;
  }
  .terapia-benefit-body {
    font-size: calc(11px + var(--fs));
    color: var(--musgo);
    line-height: 1.45;
  }
  .terapia-benefit-arrow { font-size: calc(12px + var(--fs)); color: var(--rosa); flex-shrink: 0; }
  .terapia-tools {
    background: rgba(104,67,83,0.06);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 20px;
  }
  .terapia-tools-label {
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 4px;
  }
  .terapia-tools-text {
    font-size: calc(11px + var(--fs));
    color: var(--texto-suave);
    line-height: 1.6;
  }
  .page-eyebrow {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 12px;
  }
  .page-title {
    font-size: calc(28px + var(--fs));
    font-weight: 400;
    color: var(--ciruela);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .page-subtitle {
    font-size: calc(13px + var(--fs));
    color: var(--musgo);
    font-style: italic;
    margin-bottom: 22px;
    line-height: 1.6;
  }

  /* ── CTA FOOTER ── */
  .section-cta {
    background: var(--ciruela);
    padding: 36px 48px;
    display: flex;
    justify-content: center;
  }
  .section-cta-inner {
    max-width: 860px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .section-cta-text {
    font-size: calc(16px + var(--fs));
    color: var(--lino);
    font-weight: 400;
  }


  /* ── MI HISTORIA HERO ── */
  .historia-hero {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: calc(100vh - var(--nav-h));
    overflow: visible;
  }
  .historia-hero-photo {
    position: relative;
    overflow: hidden;
  }
  .historia-hero:has(.historia-hero-photo-img) {
    grid-template-rows: minmax(0, 1fr);
  }
  .historia-hero-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }
  .historia-hero-photo-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(0,0,0,0.07) 0, rgba(0,0,0,0.07) 1px, transparent 1px, transparent 14px);
  }
  .historia-hero-photo-label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(212,213,192,0.35);
  }
  .historia-hero-content {
    background: var(--lino);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 44px 52px;
    overflow: visible;
  }

  /* ── MI HISTORIA TEXTO ── */
  .historia-story {
    background: var(--blanco);
    padding: 52px 48px;
    border-top: 0.5px solid rgba(104,67,83,0.1);
    display: flex;
    justify-content: center;
  }
  .historia-story-inner {
    max-width: 860px;
    width: 100%;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 52px;
    align-items: start;
  }
  .historia-story-label {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rosa);
    padding-top: 6px;
    line-height: 1.6;
  }
  .historia-story-body {
    font-size: calc(15px + var(--fs));
    color: var(--texto-suave);
    line-height: 1.9;
  }
  .historia-story-body p { margin-bottom: 1.4rem; }
  .historia-story-body p:last-child { margin-bottom: 0; }
  .pullquote {
    font-size: calc(19px + var(--fs));
    font-weight: 400;
    color: var(--ciruela);
    line-height: 1.45;
    font-style: italic;
    border-left: 2px solid var(--rosa);
    border-radius: 0;
    padding-left: 24px;
    margin: 2rem 0;
  }
  .formacion-section {
    background: var(--lino);
    padding: 44px 48px;
    border-top: 0.5px solid rgba(104,67,83,0.1);
  }
  .formacion-title {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 28px;
  }
  .formacion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .form-col-title {
    font-size: calc(12px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .form-item {
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(104,67,83,0.15);
  }
  .form-item:last-child { border-bottom: none; }
  .form-item-name {
    font-size: calc(12px + var(--fs));
    font-weight: 500;
    color: var(--musgo);
    line-height: 1.4;
    margin-bottom: 2px;
  }
  .form-item-detail {
    font-size: calc(11px + var(--fs));
    color: var(--ciruela);
    opacity: 0.65;
  }

  /* ── RESEÑAS GOOGLE (carrusel) ── */
  .reviews-section {
    background: var(--blanco);
    padding: 56px 48px 64px;
    border-top: 0.5px solid rgba(104,67,83,0.1);
  }
  .reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }
  .reviews-header {
    text-align: center;
    margin-bottom: 36px;
  }
  .reviews-eyebrow {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 12px;
  }
  .reviews-title {
    font-size: calc(28px + var(--fs));
    font-weight: 400;
    color: var(--ciruela);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }
  .reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: calc(13px + var(--fs));
    color: var(--musgo);
  }
  .reviews-stars {
    color: var(--rosa);
    letter-spacing: 0.08em;
    font-size: calc(14px + var(--fs));
  }
  .reviews-rating-text strong {
    color: var(--ciruela);
    font-weight: 500;
  }
  .reviews-lang-note {
    font-size: calc(11px + var(--fs));
    color: var(--rosa);
    font-style: italic;
    opacity: 0.75;
    margin-top: 10px;
  }
  .reviews-carousel {
    position: relative;
  }
  .reviews-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 8px;
    margin: 0 -2px;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .reviews-track:focus-visible {
    outline: 2px solid var(--rosa);
    outline-offset: 4px;
    border-radius: 12px;
  }
  .review-card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
    background: #fff;
    border: 0.5px solid rgba(104,67,83,0.15);
    border-radius: 14px;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .review-card:hover {
    border-color: rgba(104,67,83,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px -10px rgba(104,67,83,0.25);
  }
  .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lino);
    color: var(--ciruela);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(14px + var(--fs));
    font-weight: 500;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .review-author {
    font-size: calc(13px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .review-badge {
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--musgo);
    background: rgba(165,193,128,0.18);
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 500;
  }
  .review-date {
    font-size: calc(11px + var(--fs));
    color: var(--texto-suave);
    opacity: 0.75;
  }
  .review-stars {
    color: var(--rosa);
    font-size: calc(13px + var(--fs));
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .review-text {
    font-size: calc(13px + var(--fs));
    color: var(--texto-suave);
    line-height: 1.65;
    margin-bottom: 14px;
    flex-grow: 1;
  }
  .review-link {
    align-self: flex-start;
    font-size: calc(11px + var(--fs));
    color: var(--ciruela);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(104,67,83,0.4);
    padding-bottom: 1px;
    transition: opacity 0.2s;
  }
  .review-link:hover { opacity: 0.65; }
  .reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid rgba(104,67,83,0.18);
    color: var(--ciruela);
    font-size: calc(22px + var(--fs));
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 14px -8px rgba(104,67,83,0.35);
    transition: opacity 0.2s, background 0.2s, transform 0.15s;
    font-family: inherit;
    padding: 0 0 3px;
  }
  .reviews-arrow:hover {
    background: var(--lino);
    transform: translateY(-50%) scale(1.05);
  }
  .reviews-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }
  .reviews-arrow-prev { left: -18px; }
  .reviews-arrow-next { right: -18px; }
  .reviews-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
  }
  .reviews-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(104,67,83,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .reviews-dot:hover { background: rgba(104,67,83,0.4); }
  .reviews-dot.is-active {
    background: var(--rosa);
    transform: scale(1.25);
  }
  .reviews-cta {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: calc(12px + var(--fs));
    color: var(--ciruela);
    text-decoration: none;
    letter-spacing: 0.02em;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .reviews-cta:hover { opacity: 1; }

  @media (max-width: 1024px) and (min-width: 769px) {
    .review-card { flex: 0 0 calc((100% - 16px) / 2); }
  }

  /* ── DÓNDE ── */
  .donde-header {
    background: var(--lino);
    padding: 52px 48px 44px;
  }
  .donde-body {
    background: var(--blanco);
    padding: 40px 48px;
    border-top: 0.5px solid rgba(104,67,83,0.1);
  }
  .centros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .centro-card {
    border: 0.5px solid rgba(104,67,83,0.15);
    border-radius: 14px;
    overflow: hidden;
  }
  .centro-map-area {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #e8e4df;
  }
  .centro-map-link {
    position: absolute;
    inset: 0;
    display: block;
    line-height: 0;
    cursor: pointer;
  }
  .centro-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .centro-info { padding: 20px 22px; }
  .centro-tag {
    font-size: calc(9px + var(--fs));
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 6px;
  }
  .centro-name {
    font-size: calc(15px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
    margin-bottom: 4px;
  }
  .centro-address {
    font-size: calc(12px + var(--fs));
    color: var(--texto-suave);
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .centro-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: calc(12px + var(--fs));
    color: var(--ciruela);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(104,67,83,0.4);
    padding-bottom: 1px;
    transition: opacity 0.2s;
  }
  .centro-link:hover { opacity: 0.65; }
  .domicilio-note {
    background: var(--lino);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .domicilio-icon {
    font-size: calc(20px + var(--fs));
    color: var(--rosa);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .domicilio-title {
    font-size: calc(13px + var(--fs));
    font-weight: 500;
    color: var(--ciruela);
    margin-bottom: 4px;
  }
  .domicilio-text {
    font-size: calc(13px + var(--fs));
    color: var(--musgo);
    line-height: 1.7;
  }

  /* ── CONTACTO ── */
  .contacto-section {
    background: var(--ciruela);
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - var(--nav-h));
    justify-content: center;
  }
  .contacto-eyebrow {
    font-size: calc(10px + var(--fs));
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rosa);
    margin-bottom: 16px;
  }
  .contacto-title {
    font-size: calc(40px + var(--fs));
    font-weight: 400;
    color: var(--lino);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .contacto-sub {
    font-size: calc(15px + var(--fs));
    color: var(--rosa);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 420px;
  }
  .contacto-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--salvia);
    color: var(--musgo);
    font-size: calc(16px + var(--fs));
    font-weight: 500;
    padding: 18px 44px;
    border-radius: 44px;
    letter-spacing: 0.02em;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.2s;
    margin-bottom: 16px;
  }
  .contacto-btn:hover { opacity: 0.88; }
  .contacto-note {
    font-size: calc(12px + var(--fs));
    color: var(--rosa);
    opacity: 0.7;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--lino);
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid rgba(104,67,83,0.1);
  }
  .footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .footer-logo {
    width: 28px;
    height: 18px;
    background: rgba(104,67,83,0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(7px + var(--fs));
    color: var(--ciruela);
  }
  a.footer-logo { text-decoration: none; }
  .footer-lk {
    font-size: calc(11px + var(--fs));
    color: var(--ciruela);
    text-decoration: none;
    cursor: pointer;
  }
  .footer-lk:hover { opacity: 0.65; }
  .footer-legal { font-size: calc(10px + var(--fs)); color: var(--rosa); opacity: 0.7; }

  footer.footer--dark .footer-logo {
    background: rgba(212,213,192,0.15);
    color: var(--lino);
  }

  /* Footer solo en móvil (≤768px): oculto en escritorio */
  @media (min-width: 769px) {
    footer {
      display: none !important;
    }
  }

  /* ── RESPONSIVE MOBILE ── */
  /* ── HAMBURGER MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
  }
  .nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--lino);
    border-radius: 2px;
    transition: all 0.25s ease;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--musgo);
    border-bottom: 0.5px solid rgba(212,213,192,0.2);
    padding: 16px 24px 20px;
    z-index: 200;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: calc(15px + var(--fs));
    color: var(--lino);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(212,213,192,0.14);
    letter-spacing: 0.02em;
  }
  .mobile-menu a:last-child { border-bottom: none; }

  @media (max-width: 768px) {
    :root {
      --fs: 3px;
    }
    nav {
      padding: 12px 20px;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Home — marco vertical (fotos / vídeo 9:16); antes 60vw forzaba formato horizontal */
    .home-hero { grid-template-columns: 1fr; grid-template-rows: auto 1fr; height: auto; min-height: 0; }
    .hero-video {
      min-height: 0;
      aspect-ratio: 3 / 4;
      width: 100%;
    }
    .hero-content { padding: 28px 24px; min-height: auto; }
    .hero-h1 { font-size: calc(24px + var(--fs)); }
    .hero-body { font-size: calc(13px + var(--fs)); margin-bottom: 20px; }
    .services-list { gap: 6px; margin-bottom: 20px; }

    /* Terapias */
    .terapia-page { grid-template-columns: 1fr; height: auto; overflow: visible; }
    .terapia-page:has(.terapia-photo-img) { grid-template-rows: none; }
    .terapia-photo {
      height: auto;
      aspect-ratio: 3 / 4;
      min-height: 200px;
    }
    .terapia-photo-img { object-position: center 38%; }
    .terapia-photo-img--focus-lower { object-position: center bottom; }
    .terapia-content { padding: 24px 24px 32px; overflow: visible; }
    .terapia-subnav { gap: 5px; margin-bottom: 16px; flex-wrap: wrap; }
    .terapia-tab { font-size: calc(11px + var(--fs)); padding: 4px 10px; }
    .terapia-title { font-size: calc(28px + var(--fs)); }
    .terapia-meta-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
    .terapia-benefits { gap: 5px; }
    .terapia-tools { margin-top: 16px; }

    /* Mi historia */
    .historia-hero { grid-template-columns: 1fr; height: auto; overflow: visible; }
    .historia-hero:has(.historia-hero-photo-img) { grid-template-rows: none; }
    .historia-hero-photo {
      height: auto;
      aspect-ratio: 3 / 4;
      min-height: 200px;
    }
    .historia-hero-photo-img { object-position: center 38%; }
    .historia-hero-content { padding: 28px 24px; }
    .historia-story { padding: 32px 24px; }
    .historia-story-inner { grid-template-columns: 1fr; gap: 16px; }
    .historia-hero-content .page-eyebrow,
    .historia-story-label,
    .formacion-title {
      font-size: calc(10px + var(--fs) + 1pt);
    }
    .formacion-section { padding: 32px 24px; }
    .formacion-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Dónde */
    .donde-header { padding: 32px 24px; }
    .donde-body { padding: 24px 24px; }
    .centros-grid { grid-template-columns: 1fr; }

    /* Reseñas */
    .reviews-section { padding: 36px 0 44px; }
    .reviews-header { padding: 0 24px; margin-bottom: 24px; }
    .reviews-title { font-size: calc(22px + var(--fs)); }
    .reviews-track { padding: 4px 24px 8px; gap: 12px; scroll-padding-left: 24px; }
    .review-card { flex: 0 0 86%; min-height: 240px; padding: 20px 18px 16px; }
    .reviews-arrow { display: none; }
    .reviews-dots { margin-top: 16px; }
    .reviews-cta { margin-top: 18px; padding: 0 24px; }

    /* Shared */
    .section-cta { flex-direction: column; gap: 16px; text-align: center; padding: 28px 24px; }
    .section-cta-inner { flex-direction: column; gap: 16px; align-items: center; }
    .section-cta-inner .btn-primary { align-self: center; }
    body:has(.contacto-section) {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: var(--ciruela);
    }
    .contacto-section {
      padding: 52px 24px;
      flex: 1;
      min-height: 0;
    }
    .contacto-title { font-size: calc(28px + var(--fs)); }
    .inner { padding: 0; }

    /* Footer móvil: solo logo (misma marca que nav) */
    footer {
      padding: 20px 24px;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 0;
      text-align: center;
    }
    .footer-left {
      flex-direction: row;
      justify-content: center;
      gap: 0;
      width: 100%;
    }
    .footer-lk,
    .footer-legal {
      display: none !important;
    }
    footer .footer-logo {
      width: min(168px, 52vw);
      height: 40px;
      max-width: 200px;
      border-radius: 0;
      background: transparent url(../assets/logo_negro_transparente.png) no-repeat center / contain !important;
      font-size: 0 !important;
      line-height: 0 !important;
      color: transparent !important;
      overflow: hidden;
      text-indent: -9999px;
      white-space: nowrap;
    }
    footer .footer-logo span {
      display: none;
    }
    /* Contacto: mismo PNG sobre ciruela */
    footer.footer--dark .footer-logo {
      filter: brightness(0) invert(1);
      opacity: 0.92;
    }
  }