/* ============================================================
   SALVADOR 2 — Coliving en el Centro Histórico
   Paleta: yeso cálido / tinta café / verde tierra
   ============================================================ */

:root {
  --bg: #f3eee5;
  --bg-deep: #e9e1d2;
  --ink: #221a13;
  --ink-soft: #5c5044;
  --earth: #5e6f4d;
  --earth-bright: #7c9162;
  --dark: #1c1611;
  --dark-2: #261e17;
  --cream: #f3eee5;
  --line: rgba(34, 26, 19, .16);
  --line-light: rgba(243, 238, 229, .18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* textura de grano sutil sobre todo el sitio */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 60;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.wrap { width: min(1120px, 92vw); margin: 0 auto; }
.only-desktop { display: none; }
@media (min-width: 720px) { .only-desktop { display: inline; } }

/* etiquetas de sección */
.label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--earth);
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.4rem;
}
.label::before { content: ""; width: 2.2rem; height: 1px; background: var(--earth); }
.label--light { color: var(--earth-bright); }

em { font-style: italic; font-family: var(--serif); }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  height: 100svh; min-height: 540px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--dark);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 9, .55) 0%, rgba(20, 14, 9, .12) 38%, rgba(20, 14, 9, .78) 100%);
}
.hero__top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(1.1rem, 3vw, 2rem) clamp(1.2rem, 4vw, 3rem);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  z-index: 2;
}
.hero__brand { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .12em; }
.hero__tag { opacity: .85; text-align: right; }
.hero__content {
  position: relative; z-index: 2;
  padding: 0 clamp(1.2rem, 4vw, 3rem) clamp(5.5rem, 12vh, 8rem);
}
.hero__kicker {
  font-size: clamp(.72rem, 1.6vw, .85rem);
  letter-spacing: .3em; text-transform: uppercase;
  color: #d2dbbf;
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.4rem, 13vw, 9.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 2.5rem;
}
.hero__num { font-style: italic; font-weight: 400; color: var(--earth-bright); }
.hero__sub {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  color: rgba(243, 238, 229, .85);
}
.hero__scroll {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); bottom: 0;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  text-decoration: none;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  writing-mode: vertical-rl;
  padding-bottom: 0;
}
.hero__line { width: 1px; height: 4.5rem; background: var(--cream); position: relative; overflow: hidden; }
.hero__line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--earth-bright);
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip { to { top: 110%; } }

.hero__actions { margin-top: 1.6rem; display: flex; align-items: center; gap: .8rem; }
.hero__mute {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(243, 238, 229, .45);
  background: rgba(20, 14, 9, .35);
  color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease;
}
.hero__mute:hover { background: var(--earth); border-color: var(--earth); }
.hero__mute .hero__mute--on { display: none; }
.hero__mute.is-on .hero__mute--on { display: block; }
.hero__mute.is-on .hero__mute--off { display: none; }

.hero__fs {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(20, 14, 9, .35);
  border: 1px solid rgba(243, 238, 229, .45);
  border-radius: 99px;
  padding: .8rem 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease;
}
.hero__fs:hover { background: var(--earth); border-color: var(--earth); }

/* animación de entrada del hero */
.reveal-load { opacity: 0; transform: translateY(26px); animation: rise 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================== FICHA ============================== */
.ficha { padding: clamp(4.5rem, 12vw, 9rem) 0; }
.ficha__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.1rem);
  line-height: 1.18; letter-spacing: -.01em;
  max-width: 21em;
}
.ficha__title em { color: var(--earth); }
.ficha__grid {
  margin-top: clamp(2.8rem, 7vw, 5rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) { .ficha__grid { grid-template-columns: repeat(3, 1fr); } }
/* con tres cifras, la última ocupa el renglón completo en móvil */
@media (max-width: 759px) { .stat:nth-child(3) { grid-column: 1 / -1; } }
.stat {
  padding: clamp(1.4rem, 3.5vw, 2.4rem) 1rem clamp(1.4rem, 3.5vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .3rem;
}
.stat__num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1; color: var(--ink);
  display: flex; align-items: baseline; gap: .2rem;
}
.stat__unit { font-size: .38em; font-style: italic; color: var(--earth); }
.stat__cap { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.ficha__meta {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  display: grid; gap: 1.6rem;
}
@media (min-width: 760px) { .ficha__meta { grid-template-columns: repeat(3, 1fr); } }
.ficha__meta > div { display: flex; flex-direction: column; gap: .35rem; font-size: 1rem; }
.ficha__k { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--earth); font-weight: 600; }
.ficha__note { margin-top: 2.4rem; font-size: .78rem; color: var(--ink-soft); font-style: italic; }

/* ============================== COMPARADOR ============================== */
.compare {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(4.5rem, 12vw, 8.5rem) 0 clamp(3.5rem, 9vw, 7rem);
}
.compare__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 7.5vw, 5.2rem);
  line-height: 1.02; letter-spacing: -.01em;
}
.compare__title em { color: var(--earth-bright); }
.compare__hint { margin-top: 1rem; color: rgba(243, 238, 229, .6); font-size: .95rem; }

.compare__stage { margin-top: clamp(2.2rem, 6vw, 4rem); width: min(1320px, 96vw); margin-left: auto; margin-right: auto; }

.cmp {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 78vh;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: var(--dark-2);
  touch-action: pan-y;          /* permite scroll vertical, captura el arrastre horizontal */
  user-select: none; -webkit-user-select: none;
  --pos: 50%;
}
@media (min-width: 900px) { .cmp { aspect-ratio: 16 / 9; } }
/* espacios con foto vertical: el escenario se vuelve retrato */
.cmp.cmp--v {
  aspect-ratio: 3 / 4;
  height: min(78vh, 124vw);
  width: auto;
  max-width: 100%;
  margin-inline: auto;
}
.cmp__after, .cmp__before {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.cmp__beforeWrap {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  pointer-events: none;
}
.cmp.is-fading .cmp__after,
.cmp.is-fading .cmp__beforeWrap { opacity: 0; transition: opacity .22s ease; }
.cmp__after, .cmp__beforeWrap { transition: opacity .35s ease; }

.cmp__badge {
  position: absolute; top: 1rem; z-index: 3;
  font-size: .66rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  padding: .45rem .85rem;
  border-radius: 99px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.cmp__badge--a { left: 1rem; background: rgba(20, 14, 9, .55); color: var(--cream); }
.cmp__badge--b { right: 1rem; background: rgba(243, 238, 229, .82); color: var(--ink); }

.cmp__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px; margin-left: -1px;
  background: var(--cream);
  z-index: 4;
  cursor: ew-resize;
}
.cmp__handle:focus-visible { outline: 2px solid var(--earth-bright); outline-offset: 4px; }
.cmp__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
}
/* zona táctil generosa alrededor de la línea */
.cmp__handle::before { content: ""; position: absolute; inset: 0 -26px; }

/* botón genérico de pantalla completa sobre medios */
.fsbtn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243, 238, 229, .4);
  background: rgba(20, 14, 9, .55);
  color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.fsbtn:hover { background: var(--earth); border-color: var(--earth); transform: scale(1.08); }
.cmp__fs { position: absolute; right: 1rem; bottom: 1rem; z-index: 5; }
.clip__fs { position: absolute; top: .8rem; right: .8rem; z-index: 4; }

/* galería en pantalla completa (nativa o simulada) */
.compare__stage:fullscreen {
  background: var(--dark);
  width: 100%; height: 100%;
  margin: 0; padding: max(2vh, 1rem) max(2vw, 1rem);
  display: flex; flex-direction: column; justify-content: center;
  overflow: auto;
}
.compare__stage:fullscreen .cmp { aspect-ratio: auto; flex: 1; min-height: 0; max-height: none; }
.compare__stage.is-fakefull {
  position: fixed; inset: 0; z-index: 120;
  background: var(--dark);
  width: 100%; height: 100%; max-width: none;
  margin: 0; padding: max(2vh, 1rem) max(2vw, 1rem);
  display: flex; flex-direction: column; justify-content: center;
  overflow: auto;
}
.compare__stage.is-fakefull .cmp { aspect-ratio: auto; flex: 1; min-height: 0; max-height: none; }
.compare__stage:-webkit-full-screen {
  background: var(--dark);
  width: 100%; height: 100%;
  margin: 0; padding: max(2vh, 1rem) max(2vw, 1rem);
  display: flex; flex-direction: column; justify-content: center;
  overflow: auto;
}
.compare__stage:-webkit-full-screen .cmp { aspect-ratio: auto; flex: 1; min-height: 0; max-height: none; }

.cmp__bar {
  margin-top: 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.cmp__nav {
  width: 52px; height: 52px; flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent; color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.cmp__nav:hover { background: var(--earth); border-color: var(--earth); transform: scale(1.06); }
.cmp__nav:active { transform: scale(.96); }
.cmp__info { text-align: center; display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.cmp__name {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.3rem, 4vw, 2rem);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cmp__count { font-size: .72rem; letter-spacing: .3em; color: rgba(243, 238, 229, .55); }

.cmp__dots { margin-top: 1.1rem; display: flex; justify-content: center; gap: .55rem; flex-wrap: wrap; }
.cmp__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(243, 238, 229, .25);
  transition: background .25s ease, transform .25s ease;
}
.cmp__dot.is-active { background: var(--earth-bright); transform: scale(1.35); }

/* ============================== RECORRIDO ============================== */
.clips {
  background: var(--dark-2);
  color: var(--cream);
  padding: clamp(4.5rem, 11vw, 8rem) 0;
  border-top: 1px solid var(--line-light);
}
.clips__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  line-height: 1.08;
}
.clips__title em { color: var(--earth-bright); }
.clips__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: 1.2rem;
}
@media (min-width: 760px) { .clips__grid { grid-template-columns: repeat(3, 1fr); } }
.clip { position: relative; border-radius: 6px; overflow: hidden; background: #000; }
.clip video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.clip figcaption {
  position: absolute; left: 1rem; bottom: .9rem; z-index: 2;
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}
.clip__play {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(15, 10, 6, .25);
  border: none; cursor: pointer;
  transition: background .3s ease;
}
.clip__play::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(243, 238, 229, .92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23221a13'%3E%3Cpath d='M8 5.5v13l11-6.5z'/%3E%3C/svg%3E") center / 26px no-repeat;
  transition: transform .3s var(--ease);
}
.clip__play:hover::after { transform: translate(-50%, -50%) scale(1.1); }
.clip.is-playing .clip__play { background: transparent; }
.clip.is-playing .clip__play::after { opacity: 0; transform: translate(-50%, -50%) scale(.6); }

/* ============================== PLANOS ============================== */
.planos { padding: clamp(4.5rem, 12vw, 8.5rem) 0; background: #fff; }
.planos__badge {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border-radius: 99px;
  padding: .65rem 1.3rem;
}
.planos__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
}
.planos__grid { display: grid; gap: 1rem; }
@media (min-width: 980px) {
  .planos__grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
}

.planos__frame {
  margin-top: 1.6rem;
  background: #fff;
}
@media (min-width: 980px) {
  .planos__frame { margin-top: 0; }
  /* el plano se acota a la altura de la pantalla en vez de crecer a lo ancho */
  .planos__plano { width: fit-content; margin-inline: auto; }
  .planos__plano img { max-height: 86vh; width: auto; max-width: 100%; }
}
.planos__fs { position: absolute; top: .6rem; right: .6rem; z-index: 5; }

/* plano en pantalla completa (nativa o simulada) */
.planos__frame:fullscreen {
  background: #fff;
  display: grid; place-items: center;
  padding: 2vh 2vw;
  overflow: auto;
}
.planos__frame:fullscreen .planos__plano { width: fit-content; margin: auto; }
.planos__frame:fullscreen .planos__plano img { max-height: 94vh; width: auto; max-width: 96vw; }
.planos__frame:-webkit-full-screen {
  background: #fff;
  display: grid; place-items: center;
  padding: 2vh 2vw;
  overflow: auto;
}
.planos__frame:-webkit-full-screen .planos__plano img { max-height: 94vh; width: auto; max-width: 96vw; }
.planos__frame.is-fakefull {
  position: fixed; inset: 0; z-index: 120;
  margin: 0; padding: 2vh 2vw;
  display: grid; place-items: center;
  overflow: auto;
}
.planos__frame.is-fakefull .planos__plano { width: fit-content; margin: auto; }
.planos__frame.is-fakefull .planos__plano img { max-height: 94vh; width: auto; max-width: 96vw; }
.planos__frame img { width: 100%; transition: opacity .25s ease; }
.planos__frame img.is-fading { opacity: 0; }
.planos__hint {
  margin-top: 1.4rem;
  font-size: .85rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .6rem;
}
.planos__hintDot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--earth); flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(94, 111, 77, .25);
}
.planos__plano { position: relative; }
.planos__spots { position: absolute; inset: 0; pointer-events: none; }
.planos__spots.is-hidden { display: none; }

.spot-cone {
  position: absolute;
  width: clamp(52px, 8vw, 88px);
  transform: translate(-50%, -100%) rotate(var(--dir, 0deg));
  transform-origin: 50% 100%;
  pointer-events: none;
}
.spot-cone svg { display: block; width: 100%; height: auto; }

.spot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--earth);
  box-shadow: 0 2px 10px rgba(34, 26, 19, .35);
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
}
.spot::before {
  content: "";
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 2px solid var(--earth);
  opacity: 0;
  animation: spotPulse 2.4s ease-out infinite;
}
@keyframes spotPulse {
  0% { transform: scale(.6); opacity: .9; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}
/* zona táctil generosa */
.spot::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; }
.spot span {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 4px;
  white-space: nowrap;
  opacity: 0; transition: opacity .2s ease;
  pointer-events: none;
}
.spot:hover span, .spot:focus-visible span { opacity: 1; }
.spot:hover { background: var(--earth-bright); }
.spot:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .spot::before { animation: none; } }

/* visor de espacio (lightbox) */
.vista { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.vista[hidden] { display: none; }
.vista__backdrop { position: absolute; inset: 0; background: rgba(15, 10, 6, .82); backdrop-filter: blur(8px); }
.vista__panel {
  position: relative; z-index: 1;
  max-width: min(960px, 96vw);
  background: var(--dark-2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  animation: vistaIn .35s var(--ease);
}
@keyframes vistaIn { from { opacity: 0; transform: translateY(24px) scale(.97); } }
.vista__img { width: 100%; max-height: min(68vh, 640px); object-fit: cover; }
.vista__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.3rem;
  color: var(--cream);
}
.vista__name { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.15rem, 3vw, 1.5rem); }
.vista__go {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream);
  background: var(--earth);
  border: none; border-radius: 99px;
  padding: .75rem 1.2rem;
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
}
.vista__go:hover { background: var(--earth-bright); transform: scale(1.04); }
.vista__close {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(243, 238, 229, .4);
  background: rgba(20, 14, 9, .55);
  color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s ease;
}
.vista__close:hover { background: var(--earth); }
@media (prefers-reduced-motion: reduce) { .vista__panel { animation: none; } }

/* ============================== UBICACIÓN ============================== */
.lugar {
  background: var(--earth);
  color: var(--cream);
  padding: clamp(4.5rem, 11vw, 8rem) 0;
  position: relative; overflow: hidden;
}
.lugar::before {
  content: "N°2";
  position: absolute; right: -2vw; bottom: -6vw;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(12rem, 30vw, 26rem);
  line-height: 1; color: rgba(243, 238, 229, .08);
  pointer-events: none;
}
.lugar .label { color: var(--cream); }
.lugar .label::before { background: var(--cream); }
.lugar__grid { display: grid; gap: 2.5rem; position: relative; z-index: 1; }
@media (min-width: 860px) { .lugar__grid { grid-template-columns: 1.3fr 1fr; align-items: center; } }
.lugar__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  line-height: 1.05;
}
.lugar__txt { margin-top: 1.3rem; max-width: 30rem; color: rgba(243, 238, 229, .88); }
.lugar__btn {
  margin-top: 2rem;
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(243, 238, 229, .5);
  border-radius: 99px;
  transition: all .25s ease;
}
.lugar__btn:hover { background: var(--cream); color: var(--earth); }
.lugar__card {
  font-style: normal;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.4;
  background: rgba(28, 22, 17, .22);
  border: 1px solid rgba(243, 238, 229, .25);
  border-radius: 6px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.lugar__pin { color: var(--cream); opacity: .8; }

/* ============================== FOOTER ============================== */
.foot { background: var(--dark); color: rgba(243, 238, 229, .65); padding: 2.2rem 0; }
.foot__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.foot__brand { font-family: var(--serif); color: var(--cream); font-size: 1.05rem; letter-spacing: .1em; }
.foot__meta { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }

/* ============================== SCROLL REVEAL ============================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-load { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .hero__line::after { animation: none; }
}
