/*
Theme Name:  Prana Calm Wellness
Description: Prana Calm Wellness — premium in-home wellness, Costa del Sol. v4 design (lead-gen).
Version:     1.0.3
Author:      enlairar.agency
Text Domain: mcs
*/

/* ═══════════════════════════════════════════════════
   TOKENS v4
   ═══════════════════════════════════════════════════ */
:root {
  --body-bg:        #cfc4af;
  --wrap-bg:        #1e1208;
  --light:          #ede3ce;
  --light-mid:      #e5d6b0;
  --light-border:   rgba(160,104,32,.25);
  --dark:           #231409;
  --darker:         #140c04;
  --gold:           #a06820;
  --gold-bright:    #cc9a3a;
  --gold-mid:       #b07c2a;
  --gold-muted:     rgba(190,138,48,.38);
  --text-dark:      #261b10;
  --text-dark-2:    #4e3c2c;
  --text-cream:     #faf2e4;
  --text-cream-2:   #f4e6cc;
  --text-muted-dk:  #c8b08a;
  --error:          #a03518;
  --success:        #4a7a3a;
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Raleway', sans-serif;
  --t-base:         240ms ease-out;
}

/* ═══════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--font-sans); background: var(--body-bg); -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: #fff; color: #000; padding: 8px 14px; border-radius: 4px; font-size: 14px; }
.skip-link:focus { left: 12px; top: 12px; }

/* ═══════════════════════════════════════════════════
   WRAPPER
   ═══════════════════════════════════════════════════ */
.cw-wrap {
  width: 100%;
  background: var(--wrap-bg);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   HEADER — transparente sobre hero, oscuro al scroll
   ═══════════════════════════════════════════════════ */
.cw-header {
  padding: 15px max(28px, calc((100% - 1200px) / 2));
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  position: fixed;
  top: 0; left: 0; right: 0; width: 100%;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.cw-header.is-scrolled {
  background: rgba(14,8,2,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.admin-bar .cw-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .cw-header { top: 46px; }
}

/* Logo */
.cw-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f0e6cf;
  flex-shrink: 0;
}
.cw-logo__icon {
  width: 43px; height: 43px;
  border: 1px solid rgba(240,226,207,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cw-logo__name { font-family: var(--font-serif); font-size: 20px; line-height: 1; color: #f0e6cf; letter-spacing: .01em; }
.cw-logo__sub  { font-size: 7.5px; letter-spacing: .52em; margin-top: 5px; color: #f0e6cf; opacity: .55; text-transform: uppercase; }

/* Nav desktop — visible ≥960px, como la referencia */
.cw-nav {
  display: none;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.cw-nav a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240,230,207,.82);
  padding: 6px 0;
  transition: color var(--t-base);
}
.cw-nav a:hover { color: var(--gold-bright); }
a.cw-header__cta { display: none; flex-shrink: 0; }
@media (min-width: 960px) {
  .cw-nav { display: flex; }
  a.cw-header__cta { display: inline-flex; }
  button.cw-hamburger { display: none; }
}

/* Hamburger — solo móvil */
.cw-hamburger {
  appearance: none;
  border: 1px solid rgba(220,185,100,.4);
  border-radius: 3px;
  background: rgba(200,155,55,.12);
  color: #f0e6cf;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 20px; font-size: 11.5px;
  font-family: var(--font-sans);
  display: flex; align-items: center; gap: 9px;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), opacity var(--t-base);
}
.cw-hamburger:hover { opacity: .85; }
.cw-header.is-scrolled .cw-hamburger {
  background: linear-gradient(170deg,#cc9a3a 0%,#b07820 100%);
  color: #140a00;
  border-color: transparent;
}

/* ═══════════════════════════════════════════════════
   OVERLAY MENU
   ═══════════════════════════════════════════════════ */
.cw-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0d0602;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease-out;
}
.cw-menu-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.cw-menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(160,104,32,.15);
}
.cw-menu-overlay__logo {
  display: flex; align-items: center; gap: 10px; color: #dcc48a;
}
.cw-menu-overlay__logo-name  { font-family: var(--font-serif); font-size: 18px; line-height: 1; color: #dcc48a; }
.cw-menu-overlay__logo-sub   { font-size: 7px; letter-spacing: .52em; margin-top: 4px; opacity: .45; text-transform: uppercase; }
.cw-menu-overlay__close {
  appearance: none; border: 0; background: transparent;
  color: rgba(210,175,120,.5);
  font-size: 28px; line-height: 1;
  padding: 4px 8px;
  transition: color var(--t-base);
}
.cw-menu-overlay__close:hover { color: rgba(210,175,120,.9); }
.cw-menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  gap: 8px;
}
.cw-menu-overlay__nav a {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: rgba(232,210,175,.75);
  letter-spacing: .02em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(160,104,32,.12);
  display: block;
  transition: color var(--t-base), border-color var(--t-base);
}
.cw-menu-overlay__nav a:first-child { border-top: 1px solid rgba(160,104,32,.12); }
.cw-menu-overlay__nav a:hover { color: #dcc48a; border-bottom-color: rgba(160,104,32,.3); }
.cw-menu-overlay__nav a.cw-menu-wa {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px;
  border: none;
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0;
}
.cw-menu-overlay__nav a.cw-menu-wa:hover { color: #dcc48a; }
.cw-menu-overlay__footer {
  padding: 20px 40px;
  border-top: 1px solid rgba(160,104,32,.1);
  font-size: 11px;
  color: rgba(160,120,60,.4);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════
   HERO — imagen en HTML (LCP) + overlay
   ═══════════════════════════════════════════════════ */
.cw-hero {
  min-height: clamp(560px, 96vh, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 36px 90px;
  position: relative;
  overflow: hidden;
  background: #160902;
}
.cw-hero__media,
.cw-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cw-hero__media img { object-fit: cover; object-position: center 42%; }
.cw-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(22,10,2,.58) 0%, transparent 42%),
    linear-gradient(175deg, rgba(10,4,1,.68) 0%, rgba(16,7,1,.64) 55%, rgba(28,12,3,.78) 100%);
  pointer-events: none;
}
.cw-hero__inner {
  position: relative; z-index: 1;
  max-width: 640px;
  text-align: center;
  width: 100%;
}
.cw-hero__label {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(235,212,168,.85);
  letter-spacing: .08em;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 12px;
}
.cw-hero__h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px,6.2vw,58px);
  line-height: 1.08;
  color: #faf2e4;
  text-shadow: 0 3px 32px rgba(0,0,0,.45);
  margin: 0 0 20px;
  letter-spacing: -.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.cw-hero__divider {
  width: 52px;
  height: 1px;
  background: rgba(200,155,55,.7);
  margin: 0 auto 22px;
}
.cw-hero__sub {
  max-width: 460px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 300;
  color: rgba(238,220,192,.88);
}
.cw-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════════ */
.cw-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(170deg,#cc9a3a 0%,#a87020 100%);
  color: #0e0700;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  border: none;
  transition: opacity var(--t-base), transform var(--t-base);
}
.cw-btn-gold:hover { opacity: .88; transform: translateY(-1px); }
.cw-btn-gold--sm { height: 40px; padding: 0 26px; font-size: 10.5px; letter-spacing: .12em; }

.cw-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 30px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(240,226,207,.45);
  color: #f0e6cf;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), transform var(--t-base);
}
.cw-btn-ghost:hover { background: rgba(240,226,207,.08); border-color: rgba(240,226,207,.85); transform: translateY(-1px); }
.cw-btn-ghost--gold { border-color: rgba(160,104,32,.5); color: #8a5a18; }
.cw-btn-ghost--gold:hover { background: rgba(160,104,32,.07); border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════
   TEXTURA SVG para secciones crema
   ═══════════════════════════════════════════════════ */
.cw-trust, .cw-reviews, .cw-discover, .cw-services { position: relative; }
.cw-trust::before, .cw-reviews::before, .cw-discover::before, .cw-services::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='22' fill='none' stroke='%23a06820' stroke-width='0.8'/%3E%3Ccircle cx='40' cy='40' r='11' fill='none' stroke='%23a06820' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='18' r='5.5' fill='none' stroke='%23a06820' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='62' r='5.5' fill='none' stroke='%23a06820' stroke-width='0.5'/%3E%3Ccircle cx='18' cy='40' r='5.5' fill='none' stroke='%23a06820' stroke-width='0.5'/%3E%3Ccircle cx='62' cy='40' r='5.5' fill='none' stroke='%23a06820' stroke-width='0.5'/%3E%3Ccircle cx='56' cy='24' r='4' fill='none' stroke='%23a06820' stroke-width='0.4'/%3E%3Ccircle cx='24' cy='56' r='4' fill='none' stroke='%23a06820' stroke-width='0.4'/%3E%3Ccircle cx='56' cy='56' r='4' fill='none' stroke='%23a06820' stroke-width='0.4'/%3E%3Ccircle cx='24' cy='24' r='4' fill='none' stroke='%23a06820' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.cw-trust > *, .cw-reviews > *, .cw-discover > *, .cw-services > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   TRUST / CLAIMS
   ═══════════════════════════════════════════════════ */
.cw-trust {
  background: var(--light);
  padding: 26px max(32px, calc((100% - 1000px) / 2)) 24px;
  border-bottom: 1px solid rgba(70,45,15,.1);
  text-align: center;
}
.cw-trust__claims {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.cw-trust__claims li {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a5a18;
}
.cw-trust__claims li:not(:last-child)::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(160,104,32,.45);
  margin: 0 22px;
}
@media (max-width: 640px) {
  .cw-trust__claims { flex-direction: column; gap: 11px; }
  .cw-trust__claims li:not(:last-child)::after { display: none; }
}

/* ═══════════════════════════════════════════════════
   REVIEWS / TESTIMONIO — social proof bajo el hero
   ═══════════════════════════════════════════════════ */
.cw-reviews {
  background: var(--light);
  padding: 58px max(36px, calc((100% - 820px) / 2)) 62px;
  text-align: center;
}
.cw-reviews__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(19px,3vw,24px);
  color: #96601a;
  margin: 0 0 34px;
  letter-spacing: .01em;
}
.cw-reviews__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(19px,3.4vw,27px);
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0 auto;
  max-width: 640px;
  quotes: '\201C' '\201D';
}
.cw-reviews__quote::before { content: open-quote; color: var(--gold-mid); }
.cw-reviews__quote::after  { content: close-quote; color: var(--gold-mid); }
.cw-reviews__attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a5a18;
}
.cw-reviews__attr::before,
.cw-reviews__attr::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(160,104,32,.4);
}

/* ═══════════════════════════════════════════════════
   SERVICIOS — panel oscuro con 3 columnas sobre crema
   ═══════════════════════════════════════════════════ */
.cw-services {
  background: var(--light);
  padding: 0 max(28px, calc((100% - 1180px) / 2)) 74px;
}
.cw-services__panel {
  background: linear-gradient(180deg, #241509 0%, #170d04 100%);
  padding: 62px clamp(28px, 5vw, 64px) 66px;
  text-align: center;
}
.cw-services__head {
  max-width: 640px;
  margin: 0 auto 52px;
}
.cw-services__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--text-cream);
  margin: 0;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.cw-services__divider {
  width: 48px;
  height: 1px;
  background: rgba(200,155,55,.55);
  margin: 22px auto 24px;
}
.cw-services__subtitle {
  color: var(--text-muted-dk);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
}
.cw-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4.5vw, 56px);
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}
.cw-service { text-align: center; }
.cw-service__img {
  border: 1px solid rgba(204,154,58,.35);
  padding: 9px;
  margin-bottom: 24px;
  overflow: hidden;
}
.cw-service__img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .6s cubic-bezier(.25,0,0,1);
}
.cw-service:hover .cw-service__img img { transform: scale(1.03); }
.cw-service__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--gold-bright);
  margin: 0 0 13px;
  line-height: 1.2;
}
.cw-service__text {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-muted-dk);
  font-weight: 300;
  margin: 0 auto 24px;
  max-width: 36ch;
}
@media (max-width: 760px) {
  .cw-services { padding-bottom: 56px; }
  .cw-services__grid { grid-template-columns: 1fr; gap: 46px; max-width: 440px; }
}

/* ═══════════════════════════════════════════════════
   POR QUÉ ELEGIRNOS — foto full-bleed + panel lateral
   ═══════════════════════════════════════════════════ */
.cw-why {
  padding: clamp(64px, 9vw, 110px) max(28px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(10,5,1,.35) 0%, rgba(10,5,1,.45) 100%),
    url('assets/img/why-bg.webp') center/cover no-repeat;
}
.cw-why__panel {
  max-width: 560px;
  width: 100%;
  background: rgba(14,8,3,.84);
  border: 1px solid rgba(160,104,32,.3);
  padding: clamp(34px, 5vw, 52px);
}
.cw-why__h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(23px,4vw,32px);
  line-height: 1.15;
  color: #f6edd8;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.cw-why__divider {
  width: 48px;
  height: 1px;
  background: rgba(200,155,55,.55);
  margin: 0 0 24px;
}
.cw-why__body p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #d3bd97;
  font-weight: 300;
  margin: 0 0 18px;
}
.cw-why__body p:last-child { margin-bottom: 0; }
.cw-why__btn { margin-top: 30px; }
@media (max-width: 640px) {
  .cw-why { padding-left: 20px; padding-right: 20px; }
}

/* ═══════════════════════════════════════════════════
   DESCUBRE — texto izquierda, foto derecha
   ═══════════════════════════════════════════════════ */
.cw-discover {
  background: var(--light);
  color: var(--text-dark);
  padding: 72px max(36px, calc((100% - 1180px) / 2)) 66px;
}
.cw-discover__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.cw-discover__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px,3.8vw,36px);
  line-height: 1.12;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.cw-discover__divider {
  width: 46px;
  height: 1px;
  background: var(--gold-mid);
  margin: 0 0 20px;
}
.cw-discover__body { line-height: 1.88; font-size: 14.5px; color: #4e3c2c; font-weight: 300; margin: 0; }
.cw-discover__btn { margin-top: 28px; }
.cw-discover__img {
  border: 1px solid rgba(160,104,32,.4);
  padding: 10px;
  overflow: hidden;
}
.cw-discover__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.cw-discover__img:hover img { transform: scale(1.03); }
@media (max-width: 860px) {
  .cw-discover__inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   GALERÍA
   ═══════════════════════════════════════════════════ */
.cw-gallery { background: var(--light); padding: 0 max(28px, calc((100% - 1180px) / 2)) 64px; }
.cw-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cw-gallery__item { overflow: hidden; background: #1a0e06; aspect-ratio: 3/2; }
.cw-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25,0,0,1); }
.cw-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .cw-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   RESERVA — copy + formulario (captación de leads)
   ═══════════════════════════════════════════════════ */
.cw-booking {
  background: linear-gradient(180deg, #1d1108 0%, #140c04 100%);
  padding: clamp(60px, 8vw, 96px) max(28px, calc((100% - 1100px) / 2));
}
.cw-booking__grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 440px);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.cw-booking__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(26px,4vw,38px);
  line-height: 1.12;
  color: var(--text-cream);
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.cw-booking__divider {
  width: 48px;
  height: 1px;
  background: rgba(200,155,55,.55);
  margin: 0 0 22px;
}
.cw-booking__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted-dk);
  font-weight: 300;
  margin: 0 0 30px;
  max-width: 46ch;
}
.cw-booking__points { margin: 0 0 34px; }
.cw-booking__points li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: #dcc8a4;
  line-height: 1.6;
  padding: 9px 0;
  border-bottom: 1px solid rgba(160,104,32,.14);
}
.cw-booking__points li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
  transform: translateY(-2px);
}
.cw-booking__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-bright);
  transition: color var(--t-base);
}
.cw-booking__wa:hover { color: #dcc48a; }
.cw-booking__wa svg { flex-shrink: 0; }
@media (max-width: 860px) {
  .cw-booking__grid { grid-template-columns: 1fr; }
}

/* ── Formulario ── */
.mini-form-wrap { width: 100%; }
.mini-form {
  background: #f4ecdb;
  border: 1px solid rgba(160,104,32,.45);
  padding: clamp(26px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mini-form__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.mini-form__sub {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #96601a;
  font-weight: 500;
  margin: 0;
}
.hmf-group { display: flex; flex-direction: column; gap: 7px; }
.hmf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6e4c1e;
}
.hmf-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(160,104,32,.35);
  border-radius: 3px;
  background: #fbf6ea;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  appearance: none;
}
select.hmf-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%23a06820' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hmf-input::placeholder { color: #9c8563; }
.hmf-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(160,104,32,.14);
}
.hmf-input.has-error { border-color: var(--error); }
.hmf-phone-wrap { display: flex; }
.hmf-phone-prefix {
  display: flex; align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(160,104,32,.35);
  border-right: none;
  border-radius: 3px 0 0 3px;
  background: #efe5cd;
  font-size: 13.5px;
  color: #6e4c1e;
  font-weight: 500;
}
.hmf-input--phone { border-radius: 0 3px 3px 0; flex: 1; }
.hmf-hint { font-size: 11.5px; color: #8a7050; font-weight: 300; }
.hmf-error {
  font-size: 12px;
  color: var(--error);
  font-weight: 500;
  min-height: 0;
}
.hmf-error:empty { display: none; }
.hmf-hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.hmf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-dark-2);
  line-height: 1.5;
}
.hmf-checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 20px; height: 20px;
}
.hmf-checkbox-custom {
  width: 19px; height: 19px;
  border: 1px solid rgba(160,104,32,.5);
  border-radius: 3px;
  background: #fbf6ea;
  flex-shrink: 0;
  position: relative;
  transition: background var(--t-base), border-color var(--t-base);
  margin-top: 1px;
}
.hmf-checkbox-label input:checked + .hmf-checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}
.hmf-checkbox-label input:checked + .hmf-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px; top: 2.5px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hmf-checkbox-label input:focus-visible + .hmf-checkbox-custom {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.hmf-checkbox-text a { color: var(--gold); text-decoration: underline; }
.hmf-error-msg {
  background: rgba(160,53,24,.08);
  border: 1px solid rgba(160,53,24,.35);
  border-radius: 3px;
  padding: 12px 14px;
}
.hmf-error-msg p { font-size: 13px; color: var(--error); margin: 0; }
.hmf-submit {
  height: 50px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(170deg,#cc9a3a 0%,#a87020 100%);
  color: #0e0700;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: opacity var(--t-base), transform var(--t-base);
}
.hmf-submit:hover { opacity: .9; transform: translateY(-1px); }
.hmf-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(14,7,0,.25);
  border-top-color: #0e0700;
  border-radius: 50%;
  display: inline-block;
  animation: mcs-spin .7s linear infinite;
}
@keyframes mcs-spin { to { transform: rotate(360deg); } }
.mini-form--success { text-align: center; align-items: center; gap: 10px; padding-top: 44px; padding-bottom: 44px; }
.mf-success-icon { color: var(--success); margin-bottom: 6px; }
.mf-success-title {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--text-dark);
  margin: 0;
}
.mf-success-text { font-size: 14px; line-height: 1.7; color: var(--text-dark-2); font-weight: 300; margin: 0; max-width: 34ch; }

/* ═══════════════════════════════════════════════════
   CTA FINAL — foto full-bleed + caja crema
   ═══════════════════════════════════════════════════ */
.cw-cta {
  padding: clamp(64px, 9vw, 110px) max(28px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(rgba(12,6,2,.42) 0%, rgba(12,6,2,.5) 100%),
    url('assets/img/cta-bg.webp') center/cover no-repeat;
}
.cw-cta__box {
  background: #f2e9d5;
  border: 1px solid rgba(160,104,32,.5);
  padding: clamp(38px, 5vw, 54px) clamp(26px, 5vw, 48px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-dark);
}
.cw-cta__h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(21px,3.6vw,30px);
  line-height: 1.2;
  color: #96601a;
  margin: 0;
}
.cw-cta__body { max-width: 500px; margin: 18px auto 0; line-height: 1.88; font-size: 14.5px; color: #4e3c2c; font-weight: 300; }
.cw-cta__btn  { margin-top: 30px; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.cw-footer {
  background: linear-gradient(150deg, #b8881c 0%, #9a6e10 100%);
  color: rgba(255,243,215,.75);
  padding: 46px max(30px, calc((100% - 1180px) / 2)) 22px;
  font-family: var(--font-sans);
}
.cw-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 38px;
}
.cw-footer__brand-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff8e8; margin-bottom: 16px;
}
.cw-footer__brand-name  { font-family: var(--font-serif); font-size: 17px; line-height: 1; color: #fff8e8; }
.cw-footer__brand-sub   { font-size: 7px; letter-spacing: .52em; margin-top: 5px; opacity: .55; text-transform: uppercase; color: #fff8e8; }
.cw-footer__brand-icon  {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,245,210,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cw-footer__tagline { font-size: 12.5px; line-height: 1.78; color: rgba(255,240,200,.65); max-width: 220px; font-weight: 300; }
.cw-footer__socials { display: flex; gap: 12px; margin-top: 22px; opacity: .8; }
.cw-footer__socials a { transition: opacity var(--t-base); }
.cw-footer__socials a:hover { opacity: .55; }
.cw-footer__nav-title,
.cw-footer__contact-title {
  color: #fff8e8;
  text-transform: uppercase;
  font-size: 10.5px;
  margin: 0 0 18px;
  letter-spacing: .12em;
  font-weight: 600;
}
.cw-footer__nav { display: flex; flex-direction: column; }
.cw-footer__nav a {
  display: block;
  font-size: 12.5px;
  margin: 0 0 11px;
  color: rgba(255,240,200,.7);
  font-weight: 300;
  transition: color var(--t-base);
}
.cw-footer__nav a:hover { color: #fff8e8; }
.cw-footer__areas {
  font-size: 12.5px;
  line-height: 2;
  color: rgba(255,240,200,.7);
  font-weight: 300;
  margin: 0;
}
.cw-footer__contact-items { display: flex; flex-direction: column; gap: 13px; }
.cw-footer__contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: rgba(255,240,200,.7); font-weight: 300;
}
.cw-footer__contact-item svg { flex-shrink: 0; }
a.cw-footer__contact-item { transition: color var(--t-base); }
a.cw-footer__contact-item:hover { color: #fff8e8; }
.cw-footer__hours { font-size: 11.5px; color: rgba(255,240,200,.55); margin-top: 2px; line-height: 1.65; font-weight: 300; }
.cw-footer__bottom {
  border-top: 1px solid rgba(255,245,210,.2);
  margin-top: 42px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255,240,200,.55);
  font-size: 11px;
  flex-wrap: wrap;
  font-weight: 300;
}
.cw-footer__bottom a { color: rgba(255,240,200,.55); transition: color var(--t-base); }
.cw-footer__bottom a:hover { color: #fff8e8; }
.cw-footer__legal { display: flex; gap: 18px; }
@media (max-width: 860px) {
  .cw-footer__grid { grid-template-columns: 1fr 1fr; }
  .cw-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 380px) {
  .cw-footer__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  inset-block-end: 28px;
  inset-inline-end: 28px;
  z-index: 150;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.32);
  color: #fff;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.48); }
.wa-float svg { width: 26px; height: 26px; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease-out, transform .5s cubic-bezier(.25,0,0,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .10s; }
.reveal--d2 { transition-delay: .20s; }
.reveal--d3 { transition-delay: .30s; }

/* ═══════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════ */
.legal-inner { background: var(--light); padding: 120px max(40px, calc((100% - 760px) / 2)) 72px; min-height: calc(100vh - 78px); }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
  transition: opacity var(--t-base);
}
.legal-back:hover { opacity: .7; }
.legal-inner h1 { font-family: var(--font-serif); font-size: clamp(26px,5vw,40px); font-weight: 400; margin-bottom: 2rem; color: var(--text-dark); }
.legal-inner h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; margin: 2rem 0 .75rem; color: var(--text-dark); }
.legal-inner p, .legal-inner ul, .legal-inner ol { margin-bottom: 1em; font-size: 14.5px; line-height: 1.78; color: #4e3c2c; }
.legal-inner ul { list-style: disc; padding-left: 1.4em; }
.legal-inner a { color: var(--gold); text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   COOKIEYES — banner acorde a la marca
   ═══════════════════════════════════════════════════ */
.cky-consent-container { font-family: var(--font-sans) !important; }
.cky-consent-container .cky-consent-bar,
.cky-modal .cky-preference-center {
  background: #17100a !important;
  border: 1px solid rgba(160,104,32,.4) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.5) !important;
}
.cky-consent-container .cky-title,
.cky-preference-center .cky-preference-title,
.cky-preference-center .cky-preference-content-wrapper,
.cky-accordion-header-wrapper .cky-accordion-btn,
.cky-consent-container p, .cky-preference-center p {
  color: #f0e6cf !important;
}
.cky-consent-container .cky-notice-des p,
.cky-preference-center .cky-preference-content-wrapper p { color: rgba(232,210,175,.8) !important; }
.cky-btn.cky-btn-accept {
  background: linear-gradient(170deg,#cc9a3a 0%,#a87020 100%) !important;
  color: #140a00 !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-customize,
.cky-btn.cky-btn-preferences {
  background: transparent !important;
  border: 1px solid rgba(240,230,207,.45) !important;
  color: #f0e6cf !important;
  border-radius: 999px !important;
}
.cky-btn:hover { opacity: .88 !important; }

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════
   ESTRUCTURA pSEO — tipologías interiores (hero foto + editorial)
   ═══════════════════════════════════════════════════ */

/* ── Hero interior: foto (activo nº1) + overlay, alineado a la izquierda ── */
.cw-ihero { position: relative; min-height: clamp(360px, 52vh, 540px); display: flex; align-items: flex-end; overflow: hidden; background: #160902; }
.cw-ihero__media, .cw-ihero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cw-ihero__media img { object-fit: cover; object-position: center 40%; }
.cw-ihero__overlay { position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(12,5,1,.85) 0%, rgba(14,6,1,.28) 52%, rgba(14,6,1,.04) 100%),
    linear-gradient(100deg, rgba(10,4,1,.62) 0%, rgba(10,4,1,.12) 46%, transparent 72%); }
.cw-ihero__inner { position: relative; z-index: 1; width: 100%; max-width: 1080px; margin: 0 auto; padding: 120px clamp(20px,5vw,56px) clamp(38px,5vw,64px); }
.cw-ihero__loc { font-family: var(--font-sans); font-size: 12px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: rgba(235,212,168,.9); margin: 0 0 16px; }
.cw-ihero h1 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(29px,5.4vw,56px); line-height: 1.06; color: #faf2e4; letter-spacing: -.015em; text-wrap: balance; text-shadow: 0 3px 32px rgba(0,0,0,.4); margin: 0; max-width: 18ch; }
.cw-ihero__divider { width: 52px; height: 1px; background: rgba(200,155,55,.7); margin: 22px 0; }
.cw-ihero__lead { max-width: 54ch; font-size: clamp(15px,1.5vw,17px); line-height: 1.72; font-weight: 300; color: rgba(238,220,192,.9); margin: 0 0 30px; }
.cw-ihero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Cuerpo sobre wrap oscuro ── */
.cw-page { background: var(--wrap-bg); color: var(--light); }
.cw-page__inner { max-width: 1080px; margin: 0 auto; padding: 40px clamp(20px,5vw,56px) 100px; }

/* Migas (claro sobre oscuro) */
.cw-crumbs { font-family: var(--font-sans); font-size: 12px; letter-spacing: .03em; margin: 0 0 44px; }
.cw-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.cw-crumbs li { color: rgba(237,227,206,.5); }
.cw-crumbs li:not(:last-child)::after { content: '·'; margin-left: 8px; color: var(--gold-muted); }
.cw-crumbs a { color: rgba(237,227,206,.7); text-decoration: none; }
.cw-crumbs a:hover { color: var(--gold-bright); }
.cw-crumbs [aria-current="page"] { color: rgba(235,212,168,.9); }

/* Bloques */
.cw-block { margin: 0 0 clamp(48px,7vw,84px); }
.cw-block > h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(23px,3vw,32px); color: #f2e8d4; margin: 0 0 30px; letter-spacing: -.01em; text-wrap: balance; }
.cw-note { font-size: 13px; color: rgba(237,227,206,.5); margin-top: 20px; }
.cw-prose { max-width: 68ch; font-size: 16px; line-height: 1.78; color: rgba(237,227,206,.84); text-wrap: pretty; }
.cw-prose h2, .cw-prose h3 { font-family: var(--font-serif); font-weight: 400; color: #f0e6cf; }
.cw-prose a { color: var(--gold-bright); }

/* ── Lista editorial (interlinking) — reemplaza las cards genéricas ── */
.cw-index { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--light-border); }
.cw-index li { border-bottom: 1px solid var(--light-border); }
.cw-index a { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 22px 2px; text-decoration: none; color: #ede3ce; transition: color .2s; }
.cw-index a:hover, .cw-index a:focus-visible { color: var(--gold-bright); }
/* El deslizamiento al hover va con transform sobre el PRIMER hijo, no con
   padding-left sobre el enlace: animar padding fuerza recálculo de layout en
   cada frame. Solo se mueve el primer hijo para que el meta siga anclado a la
   derecha, que es exactamente lo que hacía el padding (el borde derecho no
   cambiaba). Los hijos directos de un flex container se blockifican, así que el
   transform aplica aunque sean <span>. */
.cw-index a > :first-child { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.cw-index a:hover > :first-child,
.cw-index a:focus-visible > :first-child { transform: translateX(14px); }
.cw-index__name { font-family: var(--font-serif); font-weight: 400; font-size: clamp(19px,2.3vw,25px); line-height: 1.2; }
.cw-index__meta { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: rgba(237,227,206,.42); white-space: nowrap; transition: color .2s; }
.cw-index a:hover .cw-index__meta { color: var(--gold-muted); }
.cw-index--compact a { padding: 16px 2px; }
.cw-index--compact .cw-index__name { font-size: clamp(16px,1.8vw,19px); }
/* Dos columnas en desktop para listas largas */
.cw-index--two { border-top: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(24px,4vw,56px); }
.cw-index--two li { border-top: 1px solid var(--light-border); border-bottom: none; }

/* ── Entornos (villa/hotel/grupo): borde SUPERIOR, nunca lateral ── */
.cw-settings { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px,4vw,48px); }
.cw-setting { padding-top: 22px; border-top: 2px solid var(--gold-muted); }
.cw-setting h3 { font-family: var(--font-serif); font-weight: 400; font-size: 20px; color: #f0e6cf; margin: 0 0 10px; }
.cw-setting p { font-size: 14px; line-height: 1.68; color: rgba(237,227,206,.72); margin: 0; }

/* Bloque de formulario */
.cw-block--form { background: rgba(255,255,255,.02); border: 1px solid var(--light-border); border-radius: 8px; padding: clamp(28px,4vw,52px); }

@media (max-width: 780px) {
  .cw-settings { grid-template-columns: 1fr; gap: 0; }
  .cw-setting { border-top: 1px solid var(--gold-muted); padding: 22px 0; }
}
@media (max-width: 620px) {
  .cw-index--two { grid-template-columns: 1fr; }
  .cw-ihero__inner { padding-top: 104px; }
  .cw-page__inner { padding-bottom: 72px; }
}

/* Selector de idioma (header) */
.cw-lang { display: flex; align-items: center; gap: 7px; font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.cw-lang a { color: rgba(240,226,207,.55); text-decoration: none; transition: color .2s; }
.cw-lang a:hover { color: var(--gold-bright); }
.cw-lang a.is-active { color: #f0e6cf; }
.cw-lang span { color: rgba(240,226,207,.28); }
@media (max-width: 960px) { .cw-lang { display: none; } }

/* FAQ (accordion nativo <details>) */
.cw-faq__list { border-top: 1px solid var(--light-border); }
.cw-faq__item { border-bottom: 1px solid var(--light-border); }
.cw-faq__item > summary { list-style: none; cursor: pointer; padding: 20px 2px; font-family: var(--font-serif); font-weight: 400; font-size: clamp(17px,2vw,21px); color: #f0e6cf; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.cw-faq__item > summary::-webkit-details-marker { display: none; }
.cw-faq__item > summary::after { content: '+'; color: var(--gold-bright); font-family: var(--font-sans); font-size: 24px; line-height: 1; flex: none; transition: transform .25s ease; }
.cw-faq__item[open] > summary::after { transform: rotate(45deg); }
.cw-faq__a { padding: 0 2px 24px; max-width: 68ch; }
.cw-faq__a p { color: rgba(237,227,206,.78); line-height: 1.72; margin: 0; }
@media (prefers-reduced-motion: reduce) { .cw-faq__item > summary::after { transition: none; } }

/* ═══ pSEO value blocks — rework de contenido (alto valor) ══════════════════ */

.cw-ico { width: 20px; height: 20px; display: block; }

.cw-lead-sm { font-size: 15px; color: rgba(237,227,206,.66); margin: -12px 0 22px; }

/* Beneficios */
.cw-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 34px; }
.cw-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; color: rgba(237,227,206,.85); }
.cw-checklist li .cw-ico { flex: none; margin-top: 1px; color: var(--gold-bright); }
@media (max-width: 640px) { .cw-checklist { grid-template-columns: 1fr; } }

/* Ficha de sesión (datos reales) */
.cw-specs { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,3vw,32px); }
.cw-spec { padding-top: 18px; border-top: 2px solid var(--gold-muted); }
.cw-spec__ico { display: inline-flex; color: var(--gold-bright); margin-bottom: 12px; }
.cw-spec__ico .cw-ico { width: 22px; height: 22px; }
.cw-spec dt { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(237,227,206,.5); margin: 0 0 6px; }
.cw-spec dd { margin: 0; font-family: var(--font-serif); font-weight: 400; font-size: 17px; line-height: 1.35; color: #f0e6cf; }
@media (max-width: 820px) { .cw-specs { grid-template-columns: repeat(2,1fr); gap: 26px clamp(18px,4vw,30px); } }
@media (max-width: 440px) { .cw-specs { grid-template-columns: 1fr; } }

/* Tarifa de la sesión — dato de decisión, no adorno: importe en serif sobre
   filete de oro, misma gramática que la ficha de sesión. */
.cw-price__title { font-family: var(--font-serif); font-weight: 400; color: #f2e8d4; letter-spacing: -.01em; }
.cw-price__lead { font-size: 15px; line-height: 1.7; color: rgba(237,227,206,.66); margin: -12px 0 24px; max-width: 58ch; }
.cw-price__rows { margin: 0; max-width: 400px; }
.cw-price__row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--light-border); }
.cw-price__row:first-child { border-top: 2px solid var(--gold-muted); }
.cw-price__row:last-child { border-bottom: 1px solid var(--light-border); }
.cw-price__row dt { font-size: 14px; font-weight: 300; letter-spacing: .04em; color: #dcc8a4; }
.cw-price__row dd { margin: 0; display: flex; align-items: baseline; gap: 3px; line-height: 1; font-family: var(--font-serif); color: var(--gold-bright); }
.cw-price__amt { font-size: clamp(26px,3.2vw,32px); letter-spacing: -.02em; }
.cw-price__cur { font-size: 18px; }
.cw-price__note { margin: 15px 0 0; font-size: 12.5px; line-height: 1.65; color: rgba(237,227,206,.62); max-width: 48ch; }

/* Tarifa dentro de la columna de reserva (aside pegajoso): panel gemelo del de
   la ficha de sesión, para que precio y datos pesen lo mismo antes del CTA. */
.cw-lede__aside .cw-price { margin: 18px 0 0; background: rgba(255,255,255,.028); border: 1px solid var(--light-border); border-radius: 16px; padding: clamp(24px,3vw,30px); }
.cw-lede__aside .cw-price__title { font-size: 20px; margin: 0 0 20px; padding-bottom: 18px; border-bottom: 1px solid var(--light-border); }
.cw-lede__aside .cw-price__rows { max-width: none; }
.cw-lede__aside .cw-price__row:first-child { border-top: none; padding-top: 0; }
.cw-lede__aside .cw-price__row:last-child { border-bottom: none; padding-bottom: 0; }
.cw-lede__aside .cw-price__amt { font-size: 30px; }

/* Tarifa en la home, junto al formulario de reserva */
.cw-price--booking { margin: 0 0 30px; max-width: 400px; }
.cw-price--booking .cw-price__title { font-size: 19px; margin: 0 0 16px; }
.cw-price--booking .cw-price__note { color: rgba(237,227,206,.6); }

/* Para quién es + nota / contraindicaciones */
.cw-forwho { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,44px); align-items: start; }
.cw-forwho h3 { display: flex; align-items: center; gap: 9px; font-family: var(--font-serif); font-weight: 400; font-size: 19px; color: #f0e6cf; margin: 0 0 10px; }
.cw-forwho__ico { display: inline-flex; color: var(--gold-bright); }
.cw-forwho__ico .cw-ico { width: 18px; height: 18px; }
.cw-forwho p { font-size: 15px; line-height: 1.7; color: rgba(237,227,206,.8); margin: 0; }
.cw-forwho__note { background: rgba(160,104,32,.09); border: 1px solid var(--light-border); border-radius: 10px; padding: 22px 24px; }
.cw-forwho__note h3 { color: var(--gold-bright); }
@media (max-width: 640px) { .cw-forwho { grid-template-columns: 1fr; } }

/* Diferenciador / comparativa */
.cw-different p { max-width: 68ch; font-size: 16px; line-height: 1.78; color: rgba(237,227,206,.84); margin: 0; }
.cw-different a { color: var(--gold-bright); }

/* Confianza E-E-A-T — cómo trabajamos (clase propia, no la banda clara de la home) */
.cw-eeat__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,36px); }
.cw-eeat__item { padding-top: 20px; border-top: 2px solid var(--gold-muted); }
.cw-eeat__ico { display: inline-flex; color: var(--gold-bright); margin-bottom: 12px; }
.cw-eeat__ico .cw-ico { width: 24px; height: 24px; }
.cw-eeat__item h3 { font-family: var(--font-serif); font-weight: 400; font-size: 17px; color: #f0e6cf; margin: 0 0 8px; }
.cw-eeat__item p { font-size: 13.5px; line-height: 1.6; color: rgba(237,227,206,.72); margin: 0; }
@media (max-width: 820px) { .cw-eeat__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .cw-eeat__grid { grid-template-columns: 1fr; } }

/* Cómo funciona — pasos con línea guía */
.cw-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,36px); }
.cw-step { position: relative; display: flex; flex-direction: column; gap: 14px; }
.cw-step__n { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold-muted); color: var(--gold-bright); font-family: var(--font-serif); font-size: 18px; background: var(--wrap-bg); position: relative; z-index: 1; }
.cw-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; left: 44px; right: calc(-1 * clamp(20px,3vw,36px)); height: 1px; background: linear-gradient(90deg, var(--gold-muted), transparent); }
.cw-step h3 { font-family: var(--font-serif); font-weight: 400; font-size: 17px; color: #f0e6cf; margin: 0 0 6px; }
.cw-step p { font-size: 13.5px; line-height: 1.6; color: rgba(237,227,206,.72); margin: 0; }
@media (max-width: 820px) { .cw-steps { grid-template-columns: repeat(2,1fr); } .cw-step:not(:last-child)::after { display: none; } }
@media (max-width: 440px) { .cw-steps { grid-template-columns: 1fr; } }

/* Reseñas (condicional) — clase propia */
.cw-voices__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: clamp(18px,3vw,28px); }
.cw-voice { margin: 0; padding: 26px; border: 1px solid var(--light-border); border-radius: 10px; background: rgba(255,255,255,.02); }
.cw-voice blockquote { margin: 0 0 16px; font-size: 15px; line-height: 1.7; color: rgba(237,227,206,.86); }
.cw-voice figcaption { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(237,227,206,.5); }

/* Zonas / barrios (píldoras) */
.cw-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.cw-tags li { font-size: 13px; letter-spacing: .02em; color: rgba(237,227,206,.82); padding: 8px 15px; border: 1px solid var(--light-border); border-radius: 100px; transition: border-color .2s, color .2s; }
.cw-tags li:hover { border-color: var(--gold-muted); color: var(--gold-bright); }

/* Listas de índice enriquecidas (nombre + micro-descripción apiladas) */
.cw-index--rich a { align-items: flex-start; }
/* Fila de índice SIN enlace: los formatos de yoga son secciones de esta página,
   no URLs propias. Replica la caja de `.cw-index a` (que es quien lleva el
   padding y el flex) para que no queden pegadas al borde. Sin hover: no navega. */
.cw-index__static { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 22px 2px; color: #ede3ce; }
.cw-index--compact .cw-index__static { padding: 16px 2px; }
.cw-index__main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.cw-index__desc { font-size: 13.5px; line-height: 1.5; color: rgba(237,227,206,.62); max-width: 62ch; text-transform: none; letter-spacing: 0; }
.cw-index--rich .cw-index__meta { margin-top: 4px; }

@media (prefers-reduced-motion: reduce) {
  .cw-tags li { transition: none; }
}

/* ═══ v0.9.8 — tratamientos más anchos + lede editorial a dos columnas ═════════
   El cuerpo interior gana ancho y el arranque deja de ser una columna estrecha
   pegada a la izquierda: relato a la izquierda + ficha de sesión (dato real)
   como panel lateral fijo a la derecha. ════════════════════════════════════ */

.cw-ihero__inner, .cw-page__inner { max-width: 1200px; }

/* Ritmo de párrafo en el relato (evita el muro de texto) */
.cw-prose > * { margin: 0 0 1.15em; }
.cw-prose > :last-child { margin-bottom: 0; }

/* Arranque a dos columnas: relato + ficha lateral */
.cw-lede { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(300px,1fr); gap: clamp(34px,5vw,80px); align-items: start; margin: 0 0 clamp(52px,7vw,88px); }
.cw-lede__main > .cw-block { margin-bottom: clamp(34px,4vw,48px); }
.cw-lede__main > .cw-block:last-child { margin-bottom: 0; }
.cw-lede__main .cw-prose { max-width: none; }        /* el relato llena la columna */
.cw-lede__main .cw-checklist { grid-template-columns: 1fr; gap: 14px; }

/* Panel lateral pegajoso con la ficha de sesión */
.cw-lede__aside { position: sticky; top: 96px; }
.cw-lede__aside .cw-session { margin: 0; background: rgba(255,255,255,.028); border: 1px solid var(--light-border); border-radius: 16px; padding: clamp(26px,3vw,32px); }
.cw-lede__aside .cw-session > h2 { font-size: 20px; margin: 0 0 22px; padding-bottom: 18px; border-bottom: 1px solid var(--light-border); }
.cw-lede__aside .cw-specs { grid-template-columns: 1fr; gap: 0; }
.cw-lede__aside .cw-spec { display: grid; grid-template-columns: 24px 1fr; column-gap: 14px; align-items: start; padding: 16px 0; border-top: 1px solid var(--light-border); }
.cw-lede__aside .cw-spec:first-child { padding-top: 0; border-top: none; }
.cw-lede__aside .cw-spec:last-child { padding-bottom: 0; }
.cw-lede__aside .cw-spec__ico { grid-row: 1 / span 2; margin: 2px 0 0; }
.cw-lede__aside .cw-spec dt { grid-column: 2; }
.cw-lede__aside .cw-spec dd { grid-column: 2; font-size: 16px; }
.cw-lede__cta { display: flex; margin-top: 26px; }
.cw-lede__cta .cw-btn-gold { width: 100%; text-align: center; }
.cw-lede__note { margin: 14px 0 0; font-size: 12.5px; line-height: 1.6; color: rgba(237,227,206,.55); text-align: center; }

/* Cuando "para quién" no trae nota, deja de ser media columna huérfana */
.cw-forwho__yes { background: rgba(255,255,255,.02); border: 1px solid var(--light-border); border-radius: 10px; padding: 22px 24px; }
.cw-forwho:not(:has(.cw-forwho__note)) { grid-template-columns: 1fr; }
.cw-different p { max-width: 74ch; }

@media (max-width: 900px) {
  .cw-lede { grid-template-columns: 1fr; gap: 0; }
  .cw-lede__main .cw-prose { max-width: 68ch; }
  .cw-lede__aside { position: static; margin-top: clamp(40px,6vw,52px); }
}
