/* ==========================================================
   ALTO HUILO LODGE — v2.1 (formato hutstuf, claro, fotográfico)
   Paleta: Noche #181818 · Bosque #304C3C · Niebla #EAE6DF
           Corteza #8F7F67 · Arena #C4B99A
   Tipos:  Fraunces (display) · Jost (body) · Montserrat (labels)
   ========================================================== */

:root {
  --noche: #181818;
  --bosque: #304C3C;
  --bosque-deep: #22382c;
  --niebla: #EAE6DF;
  --crema: #F4F1EB;
  --blanco: #FFFFFF;
  --corteza: #8F7F67;
  --arena: #C4B99A;
  --ink-60: rgba(24, 24, 24, .62);
  --ink-30: rgba(24, 24, 24, .3);
  --ink-12: rgba(24, 24, 24, .12);
  --display: 'Fraunces', Georgia, serif;
  --body: 'Jost', sans-serif;
  --label: 'Montserrat', sans-serif;
  --ease: cubic-bezier(.65, .05, 0, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--crema);
  color: var(--noche);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--bosque); color: var(--crema); }

/* ---------- utilidades ---------- */
.eyebrow {
  font-family: var(--label);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--corteza);
  margin-bottom: 1.4rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.015em;
}
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--label);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--bosque);
  color: var(--crema);
  padding: .95rem 1.8rem;
  border-radius: 100px;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.btn-pill:hover { background: var(--bosque-deep); transform: translateY(-2px); }
.btn-pill--light { background: var(--crema); color: var(--bosque-deep); }
.btn-pill--light:hover { background: var(--blanco); }
.btn-pill--big { padding: 1.15rem 2.4rem; font-size: .72rem; }
.link-arrow {
  display: inline-flex; align-items: baseline; gap: .45rem;
  font-family: var(--label);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bosque);
  border-bottom: 1px solid currentColor;
  padding-bottom: .3rem;
  transition: color .3s, gap .3s var(--ease);
}
.link-arrow:hover { color: var(--corteza); gap: .8rem; }
.link-arrow--light { color: var(--crema); }
.link-arrow--light:hover { color: var(--arena); }

/* ==========================================================
   LOADER
   ========================================================== */
.loader {
  position: fixed; inset: 0;
  background: var(--crema);
  z-index: 5000;
  display: grid; place-items: center;
}
.loader__stage { display: flex; align-items: center; gap: clamp(1.2rem, 4vw, 2.6rem); }
.loader__house {
  width: clamp(150px, 26vw, 240px);
  color: var(--bosque-deep);
  flex-shrink: 0;
}
.loader__house .lh--thin { stroke-width: 1.6; opacity: .8; }
.loader__word { overflow: hidden; }
.loader__brand {
  display: flex;
  font-family: var(--display);
  font-weight: 540;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  letter-spacing: .06em;
  color: var(--noche);
  line-height: 1.1;
}
.loader__brand i { font-style: normal; display: inline-block; }
.loader__sub {
  display: block;
  font-family: var(--label);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .58em;
  color: var(--corteza);
  margin-top: .5rem;
  text-align: right;
  margin-right: -.58em; /* compensa el tracking final para alinear con ALTO HUILO */
}

/* ==========================================================
   HEADER — logo centrado, redes a la izquierda
   ========================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem var(--pad);
  transition: background .5s var(--ease), box-shadow .5s;
  color: var(--crema);
}
.header.is-solid {
  background: rgba(244, 241, 235, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--noche);
  box-shadow: 0 1px 0 var(--ink-12);
}
.header__logo {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.header__logo-img { height: clamp(48px, 5.2vw, 66px); width: auto; transition: filter .4s, height .4s var(--ease); }
.header.is-solid .header__logo-img { filter: invert(1) brightness(0.2); height: clamp(42px, 4.6vw, 56px); }
.header__left { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.5rem); }
.header__right { display: flex; align-items: center; gap: clamp(.7rem, 2vw, 1.2rem); }

.header__social { display: flex; align-items: center; gap: .9rem; }
.header__social a { opacity: .8; transition: opacity .3s, transform .3s var(--ease); }
.header__social a:hover { opacity: 1; transform: translateY(-2px); }
.header__social svg { width: 17px; height: 17px; }

.lang {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--label); font-weight: 600;
  font-size: .64rem; letter-spacing: .14em;
}
.lang em { font-style: normal; opacity: .4; }
.lang span { opacity: .45; transition: opacity .3s; }
.lang span.is-on { opacity: 1; }
.lang:hover span:not(.is-on) { opacity: .75; }

.header__cta {
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s .45s, background .4s;
}
.header__cta.is-shown {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s 0s, background .4s;
}

.menu-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--label); font-weight: 600;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
}
.menu-btn__icon { display: flex; flex-direction: column; gap: 5px; }
.menu-btn__icon i { display: block; width: 22px; height: 1.6px; background: currentColor; transition: transform .4s var(--ease), width .3s; }
.menu-btn:hover .menu-btn__icon i:last-child { width: 14px; margin-left: auto; }

/* ==========================================================
   PANEL (menú lateral)
   ========================================================== */
.panel-veil {
  position: fixed; inset: 0;
  background: rgba(24, 24, 24, .4);
  backdrop-filter: blur(3px);
  z-index: 1500;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility 0s .5s;
}
.panel-veil.is-open { opacity: 1; visibility: visible; transition: opacity .5s var(--ease); }
.panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--bosque-deep);
  color: var(--crema);
  z-index: 1600;
  display: flex; flex-direction: column;
  padding: 1.4rem clamp(1.4rem, 3vw, 2.4rem) 2rem;
  border-radius: 22px 0 0 22px;
  transform: translateX(105%);
  transition: transform .65s var(--ease);
  overflow-y: auto;
}
.panel.is-open { transform: none; }
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: clamp(1.4rem, 3.4vh, 2.4rem); }
.panel__logo { height: 46px; width: auto; }
.panel__close {
  font-size: 1.9rem; line-height: 1;
  width: 42px; height: 42px;
  border: 1px solid rgba(244, 241, 235, .25);
  border-radius: 50%;
  transition: background .3s, transform .4s var(--ease);
}
.panel__close:hover { background: rgba(244, 241, 235, .12); transform: rotate(90deg); }
.panel__nav { display: flex; flex-direction: column; }
.panel__nav a {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  padding: .72rem 0;
  border-bottom: 1px solid rgba(244, 241, 235, .14);
  transition: padding-left .35s var(--ease), color .3s;
}
.panel__group {
  font-family: var(--label); font-weight: 600;
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--arena);
  margin: 1.1rem 0 .2rem;
  opacity: .85;
}
.panel__nav .is-current { color: var(--arena); }
.panel__nav a:hover { padding-left: .7rem; color: var(--arena); }
.panel__nav em {
  font-family: var(--label); font-style: normal;
  font-size: .6rem; letter-spacing: .2em;
  color: var(--arena);
}
.panel__fig {
  margin: clamp(1.4rem, 3vh, 2.2rem) 0;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 9;
}
.panel__fig img { width: 100%; height: 100%; object-fit: cover; }
.panel__foot { margin-top: auto; display: grid; gap: 1.2rem; justify-items: start; }
.panel__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.panel__links a {
  font-family: var(--label); font-size: .64rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244, 241, 235, .7);
  transition: color .3s;
}
.panel__links a:hover { color: var(--arena); }

/* ==========================================================
   BOTONES FLOTANTES
   ========================================================== */
.float-actions {
  position: fixed; right: 1.1rem; bottom: 1.1rem;
  z-index: 800;
  display: flex; flex-direction: column; gap: .6rem;
}
.float-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blanco);
  color: var(--bosque-deep);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px -10px rgba(24, 24, 24, .35);
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.float-btn svg { width: 21px; height: 21px; }
.float-btn:hover { transform: translateY(-3px); background: var(--bosque); color: var(--crema); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--crema);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,.42) 0%, rgba(24,24,24,.05) 35%, rgba(24,24,24,.12) 60%, rgba(24,24,24,.55) 100%);
}
.hero__content {
  position: relative;
  padding: 0 var(--pad);
  margin-bottom: auto; margin-top: auto;
  text-align: center;
}
.hero__kicker {
  font-family: var(--label); font-weight: 600;
  font-size: .64rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(244, 241, 235, .85);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .25);
}
.hero__title em { font-style: italic; font-weight: 340; color: var(--arena); }

/* badge Forbes Travel Awards 2026 */
.hero__forbes {
  display: inline-flex; align-items: center; gap: clamp(.9rem, 2vw, 1.3rem);
  margin-top: clamp(1.6rem, 3.5vh, 2.6rem);
  padding: .85rem clamp(1.1rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(244, 241, 235, .28);
  border-radius: 100px;
  background: rgba(24, 24, 24, .18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__forbes img { height: clamp(30px, 3.4vw, 40px); width: auto; }
.hero__forbes i { width: 1px; align-self: stretch; background: rgba(244, 241, 235, .3); }
.hero__forbes span {
  font-family: var(--label); font-weight: 600;
  font-size: clamp(.55rem, 1vw, .64rem);
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244, 241, 235, .92);
  text-align: left; line-height: 1.6;
}
.hero__forbes b { display: block; font-weight: 600; color: var(--arena); }
.hero__bottom {
  position: relative;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding: 0 calc(var(--pad) + 72px) 2rem var(--pad);
}
.hero__note { max-width: 34ch; font-size: .98rem; color: rgba(244, 241, 235, .85); }
.hero__scroll {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--label); font-weight: 600;
  font-size: .62rem; letter-spacing: .24em; text-transform: uppercase;
  white-space: nowrap;
}
.hero__scroll svg { width: 15px; height: 15px; animation: dip 2.4s var(--ease) infinite; }
@keyframes dip { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* ==========================================================
   MANIFIESTO — texto con aparición palabra a palabra
   ========================================================== */
.manifesto {
  padding: clamp(6rem, 16vh, 11rem) var(--pad);
  max-width: 1340px;
  margin: 0 auto;
}
.manifesto__text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.32;
  letter-spacing: -.01em;
}
.manifesto__text .w { opacity: .14; display: inline-block; will-change: opacity; }

/* ==========================================================
   LA CASA — cards estilo "Our huts"
   ========================================================== */
.house {
  padding: clamp(4rem, 10vh, 8rem) 0 clamp(5rem, 11vh, 8rem);
  display: grid;
  grid-template-columns: clamp(3.2rem, 7vw, 7rem) 1fr;
}
.house__side {
  position: relative; z-index: 2;
  padding-top: clamp(11rem, 22vh, 16rem);
  display: flex; flex-direction: column; align-items: center;
}
.house__side span {
  position: sticky; top: 38vh;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  color: var(--noche);
  opacity: .92;
  white-space: nowrap;
  line-height: 1;
}
.house__main { min-width: 0; padding-right: 0; }
.house__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding-right: var(--pad);
  margin-bottom: clamp(2rem, 4.5vh, 3.2rem);
}
.house__arrows { display: flex; gap: .6rem; flex-shrink: 0; }
.card-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--ink-30);
  display: grid; place-items: center;
  transition: background .3s, color .3s, border-color .3s;
}
.card-arrow svg { width: 17px; height: 17px; }
.card-arrow:hover { background: var(--bosque); border-color: var(--bosque); color: var(--crema); }

.cards {
  overflow: hidden;
  padding-bottom: .6rem;
  cursor: grab;
  touch-action: pan-y;
}
.cards__track {
  display: flex;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  width: max-content;
  will-change: transform;
}
.cards.is-dragging { cursor: grabbing; }
.cards.is-dragging .card { pointer-events: none; }
.cards img, .reviews__row img, .marquee img {
  -webkit-user-drag: none;
  user-select: none;
}
.card { user-select: none; }
.marquee { cursor: grab; }
.marquee.is-dragging { cursor: grabbing; }
.card {
  flex: 0 0 clamp(270px, 30vw, 430px);
}
.card__fig {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 3.9;
  margin-bottom: 1.1rem;
}
.card__fig::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24,24,24,.55) 100%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.card__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card:hover .card__fig img { transform: scale(1.06); }
.card:hover .card__fig::after { opacity: 1; }
.card__tags {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2;
  display: flex; flex-wrap: wrap; gap: .45rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.card:hover .card__tags { opacity: 1; transform: none; }
.card__tags li {
  font-family: var(--label); font-weight: 600;
  font-size: .56rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--noche);
  background: rgba(244, 241, 235, .92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: .42rem .8rem;
}
.card__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: .35rem;
}
.card__row h3 {
  font-family: var(--display); font-weight: 540;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
}
.card__row span {
  font-family: var(--label); font-weight: 500;
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--corteza);
  white-space: nowrap;
}
.card > p { color: var(--ink-60); font-size: .95rem; max-width: 46ch; }

/* ==========================================================
   DISPONIBILIDAD (Lodgify + shader topográfico)
   ========================================================== */
.avail {
  position: relative;
  background: var(--niebla);
  padding: clamp(4.5rem, 10vh, 7.5rem) var(--pad);
  overflow: hidden;
}
.avail__shader {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.avail__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.avail__note { color: var(--ink-60); margin-top: 1rem; }
.avail__widget { margin: 2.4rem auto 1.6rem; text-align: left; }
.avail__airbnb { margin-top: .6rem; }

/* ==========================================================
   LA RESERVA — locations pinned estilo hutstuf
   ========================================================== */
.locs { background: var(--crema); }
.locs__pin {
  min-height: 100svh;
  padding: clamp(4.2rem, 8vh, 5.5rem) var(--pad) clamp(1.6rem, 4vh, 2.6rem);
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.locs__eyebrow { margin-bottom: clamp(.8rem, 2vh, 1.4rem); }
.locs__stage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.locs__titles {
  overflow: hidden;
  height: clamp(3.4rem, 8.6vw, 7.4rem);
}
.locs__tcol { will-change: transform; }
.locs__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.8vw, 6rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  white-space: nowrap;
  height: clamp(3.4rem, 8.6vw, 7.4rem);
  display: flex; align-items: center;
}
.locs__texts { position: relative; padding-top: .6rem; min-height: 11.5rem; }
.locs__text {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(20px);
}
.locs__text.is-active { opacity: 1; transform: none; }
.locs__text p { color: var(--ink-60); margin-bottom: 1.6rem; max-width: 46ch; }
.locs__figs {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: clamp(1.8rem, 4.5vh, 3.2rem);
}
.locs__fig {
  border-radius: var(--radius);
  overflow: hidden;
  height: clamp(250px, 42vh, 460px);
  position: relative;
  flex-shrink: 0;
}
.locs__fig--a { width: 61%; }
.locs__fig--b { width: 36%; }
.locs__stack {
  position: absolute; left: 0; right: 0; top: 0;
  height: 300%;
  display: flex; flex-direction: column;
  will-change: transform;
}
.locs__slot {
  position: relative;
  width: 100%;
  height: calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  overflow: hidden;
}
.locs__stack img,
.locs__stack video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.locs__slot .is-mob { display: none; }
@media (max-width: 640px) {
  .locs__slot .is-desk { display: none; }
  .locs__slot .is-mob { display: block; }
}

/* ==========================================================
   EXPERIENCIA / MARQUEE
   ========================================================== */
.exp { padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 11vh, 8rem); }
.exp__head { max-width: 1280px; margin: 0 auto clamp(2.4rem, 5vh, 4rem); padding: 0 var(--pad); }
.marquee { overflow: hidden; }
.marquee__row { display: flex; gap: clamp(.9rem, 1.6vw, 1.4rem); width: max-content; will-change: transform; }
.marquee__row figure {
  width: clamp(230px, 26vw, 380px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.marquee__row figure:nth-child(even) { aspect-ratio: 4 / 3.4; align-self: center; }
.marquee__row img { width: 100%; height: 100%; object-fit: cover; }
.exp__note {
  max-width: 1280px; margin: 2.2rem auto 0; padding: 0 var(--pad);
  color: var(--ink-60);
}
.exp__note a { color: var(--bosque); border-bottom: 1px solid currentColor; transition: color .3s; }
.exp__note a:hover { color: var(--corteza); }

/* ==========================================================
   REVIEWS (réplica Airbnb)
   ========================================================== */
.reviews { background: var(--niebla); padding: clamp(4.5rem, 10vh, 7.5rem) var(--pad); }
.reviews__head {
  max-width: 1280px; margin: 0 auto clamp(2.4rem, 5vh, 3.6rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.reviews__row {
  max-width: 1280px; margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: clamp(1.2rem, 2.6vw, 2rem);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.rcard2 { overflow: hidden; }
.reviews__row::-webkit-scrollbar { display: none; }
.reviews__row.is-dragging { cursor: grabbing; }
.reviews__row.is-dragging .rcard2 { pointer-events: none; }
.rcard2 {
  background: var(--blanco);
  border-radius: 14px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 18px 44px -24px rgba(24, 24, 24, .18);
  display: flex; flex-direction: column;
  flex: 0 0 clamp(290px, 30vw, 400px);
  user-select: none;
}
.rcard2__top { display: flex; align-items: center; gap: .85rem; margin-bottom: .9rem; }
.rcard2__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--av, var(--bosque));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.15rem; font-weight: 540;
  flex-shrink: 0;
  overflow: hidden;
}
.rcard2__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rcard2__who { display: grid; line-height: 1.35; }
.rcard2__who b { font-family: var(--body); font-weight: 500; font-size: 1.02rem; }
.rcard2__who span { font-size: .82rem; color: var(--ink-60); }
.rcard2__bnb { width: 22px; height: 22px; margin-left: auto; color: #FF385C; }
.rcard2__stars { display: flex; align-items: center; gap: .45rem; margin-bottom: .85rem; }
.rcard2__stars i { font-style: normal; color: #FF385C; font-size: .98rem; letter-spacing: .12em; }
.rcard2__stars svg { width: 15px; height: 15px; }
.rcard2 p {
  font-size: .94rem; line-height: 1.6; color: var(--noche); margin-bottom: 1rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; line-clamp: 5; overflow: hidden;
}
.rcard2.is-expanded p { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
.rcard2__more { font-size: .86rem; color: var(--ink-60); text-decoration: underline; margin-top: auto; width: fit-content; transition: color .3s; }
.rcard2__more:hover { color: var(--bosque); }
.rcard2__more.is-hidden { display: none; }
.reviews__all { display: inline-flex; margin-top: 2.4rem; }
.reviews { display: grid; }
.reviews > * { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; }

/* ==========================================================
   CTA FINAL
   ========================================================== */
.cta {
  position: relative;
  min-height: 78svh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--crema);
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
}
.cta__bg { position: absolute; inset: -10% 0; }
.cta__bg img, .cta__bg video { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,.5), rgba(24,24,24,.35) 50%, rgba(24,24,24,.6));
}
.cta__content { position: relative; display: grid; justify-items: center; gap: 2rem; }
.cta__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  max-width: 16ch;
}
.cta__actions { display: grid; justify-items: center; gap: 1.4rem; }

/* ==========================================================
   FOOTER — estilo altohuilo.com (oscuro, logo central)
   ========================================================== */
.footer {
  background: var(--noche);
  color: var(--crema);
  padding: clamp(3.8rem, 9vh, 6rem) var(--pad) 1.8rem;
}
.footer__grid {
  max-width: 1280px; margin: 0 auto clamp(2.8rem, 6vh, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: start;
}
.footer__left { display: flex; gap: clamp(2rem, 4vw, 4.5rem); }
.footer__col--contact { justify-self: end; text-align: left; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col h4 {
  font-family: var(--label); font-weight: 600;
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--arena);
  margin-bottom: .6rem;
}
.footer__col a {
  color: rgba(244, 241, 235, .62);
  font-size: .94rem;
  width: fit-content;
  transition: color .3s, padding-left .3s var(--ease);
}
.footer__col a:hover { color: var(--crema); padding-left: .3rem; }
.footer__col p { color: rgba(244, 241, 235, .62); font-size: .94rem; }
.footer__center {
  display: grid; justify-items: center; align-content: center; gap: 1.6rem;
  text-align: center;
  padding-top: .4rem;
}
.footer__word { height: clamp(54px, 6vw, 78px); width: auto; }
.footer__social { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(244, 241, 235, .22);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(244, 241, 235, .75);
  transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease);
}
.footer__social a:hover {
  background: var(--bosque); border-color: var(--bosque);
  color: var(--crema);
  transform: translateY(-3px);
  padding-left: 0;
}
.footer__social svg { width: 17px; height: 17px; }
.footer__base {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(244, 241, 235, .14);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--label); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(244, 241, 235, .4);
}

/* ==========================================================
   ANIMACIONES BASE (JS añade .is-inview)
   ========================================================== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-inview { opacity: 1; transform: none; }
[data-reveal-img] { clip-path: inset(8% 5% 8% 5% round var(--radius)); transition: clip-path 1.1s var(--ease); }
[data-reveal-img].is-inview { clip-path: inset(0 0 0 0 round var(--radius)); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .locs__title { font-size: clamp(1.7rem, 5.6vw, 4rem); }
}

@media (max-width: 860px) {
  .header__social { display: none; }
  .menu-btn__label { display: none; }
  .header__logo-img { height: 44px; }
  .header.is-solid .header__logo-img { height: 38px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding-right: var(--pad); }
  .house { grid-template-columns: 1fr; }
  .house__side { display: none; }
  .house__head { flex-direction: column; align-items: flex-start; gap: 1.4rem; padding: 0 var(--pad); }
  .cards { padding: 0 0 .6rem; }
  .card { flex-basis: min(78vw, 340px); }
  .locs__stage { grid-template-columns: 1fr; gap: 1.2rem; }
  .locs__titles, .locs__title { height: clamp(2.6rem, 8vw, 4.6rem); }
  .locs__texts { min-height: 14rem; }
  .locs__fig { height: clamp(170px, 26vh, 260px); }
  .reviews__head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer__grid { grid-template-columns: 1fr; justify-items: start; }
  .footer__center { order: -1; justify-self: center; }
  .footer__col--contact { justify-self: start; }
}

@media (max-width: 640px) {
  .header { padding-left: .9rem; padding-right: .9rem; }
  .header__logo-img { height: 38px; }
  .header.is-solid .header__logo-img { height: 33px; }
  .header__cta { padding: .65rem 1rem; font-size: .56rem; letter-spacing: .12em; }
  .menu-btn__icon i { width: 19px; }
  .lang { font-size: .58rem; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero__forbes { gap: .75rem; padding: .7rem 1rem; }
  .hero__forbes img { height: 26px; }
  .hero__forbes span { font-size: .5rem; letter-spacing: .16em; }
  .footer__base { flex-direction: column; gap: .7rem; }
  .float-actions { right: .85rem; bottom: .85rem; }
  .loader__stage { flex-direction: column-reverse; text-align: center; gap: 1.4rem; }
  .loader__word { text-align: center; }
  .loader__brand { justify-content: center; }
  .loader__sub { text-align: center; margin-right: 0; }
  .footer__left { flex-direction: column; gap: 1.8rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal], [data-reveal-img] { opacity: 1; transform: none; clip-path: none; }
  .manifesto__text .w { opacity: 1 !important; }
  .locs__title, .locs__text { position: static; opacity: 1; transform: none; }
}
