/* =================================================================
   EL ESCONDITE — Editorial Midnight Boudoir
   Wine + Champagne + Cream over deep noir
   ================================================================= */

:root {
  --noir: #08070a;
  --ink: #13100e;
  --ash: #1d1814;
  --champan: #d4af7a;
  --champan-luz: #ecd8b1;
  --crema: #f0e6d4;
  --vino: #7a1f2b;
  --rubi: #c93a4e;
  --sangre: #3a0c12;
  --line: rgba(240, 230, 212, 0.08);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box; }

html { scroll-behavior: smooth; cursor: none; }
body { background: var(--noir); color: var(--crema); cursor: none; }
@media (pointer: coarse) {
  html, body, a, button { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none !important; }
}
::selection { background: var(--champan); color: var(--noir); }

/* ===== Typographic baselines ===== */
.font-italiana { font-family: "Italiana", serif; font-weight: 400; }
.font-serifi { font-family: "Instrument Serif", serif; }
.mono { font-family: "JetBrains Mono", monospace; }

/* ===== Custom cursor ===== */
.cursor-ring, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--champan-luz);
  border-radius: 999px;
  transition: width 0.35s ease, height 0.35s ease, transform 0.12s linear;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--champan-luz);
  border-radius: 999px;
  transition: transform 0.04s linear;
}
.cur-grow .cursor-ring { width: 70px; height: 70px; background: rgba(212, 175, 122, 0.12); }
.cur-grow .cursor-dot { opacity: 0; }
.cur-link .cursor-ring { width: 50px; height: 50px; border-color: var(--crema); }

/* ===== Scroll progress ===== */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.03);
  z-index: 100;
}
.progress-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--champan), var(--champan-luz));
  box-shadow: 0 0 14px rgba(212, 175, 122, 0.6);
  transition: width 0.08s linear;
}

.section-counter {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; color: rgba(240, 230, 212, 0.5);
  z-index: 50;
  pointer-events: none;
}
.section-counter .dash { display: inline-block; width: 18px; height: 1px; background: var(--champan); transform: rotate(180deg); writing-mode: horizontal-tb; }
@media (max-width: 900px) { .section-counter { display: none; } }

/* ===== Grano + Vignette global ===== */
.grano {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
  animation: grainShift 0.6s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, 3%); }
  40%  { transform: translate(3%, -2%); }
  60%  { transform: translate(-3%, -3%); }
  80%  { transform: translate(2%, 2%); }
  100% { transform: translate(0, 0); }
}
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--noir);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.7s ease 0.3s, visibility 0.7s ease 0.3s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-bar {
  width: 240px; height: 1px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden;
}
.loader-bar::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--champan); animation: loaderFill 1.4s ease-out forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-text {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 0.4em; color: var(--champan); text-transform: uppercase;
}

/* ===== NAV ===== */
#nav { transition: top 0.4s ease, transform 0.4s ease; }
.nav-pill {
  background: rgba(8, 7, 10, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  box-shadow: 0 10px 50px -15px rgba(0,0,0,0.7);
  transition: all 0.4s ease;
}
#nav.scrolled .nav-pill { background: rgba(8, 7, 10, 0.85); border-color: rgba(212, 175, 122, 0.2); }
.logo-mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--champan);
  transition: transform 0.5s ease;
}
.logo-mark svg { width: 100%; height: 100%; }
a:hover > .logo-mark { transform: rotate(180deg); }
.nav-link { position: relative; transition: color 0.3s; }
.nav-link::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--champan);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-link:hover { color: var(--crema); }
.nav-link:hover::after { width: 100%; }

/* ===== BUTTONS ===== */
.btn-pill {
  padding: 10px 18px; border-radius: 999px;
  background: var(--champan); color: var(--noir); font-weight: 500;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--champan);
}
.btn-pill:hover { background: var(--crema); border-color: var(--crema); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px;
  background: var(--champan);
  color: var(--noir);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--champan);
  position: relative; overflow: hidden;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 14px 40px -18px rgba(212, 175, 122, 0.7);
  will-change: transform;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--crema);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-arrow { transition: transform 0.4s ease; font-size: 14px; }
.btn-primary:hover .btn-arrow { transform: translateX(6px); }
.btn-xl { padding: 24px 36px; font-size: 12px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 18px 26px;
  border: 1px solid rgba(240, 230, 212, 0.2);
  color: var(--crema);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.01);
}
.btn-ghost:hover { border-color: var(--champan); color: var(--champan); }

.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(212, 175, 122, 0.35);
  color: var(--champan);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.35s ease;
}
.btn-line:hover {
  background: var(--champan); color: var(--noir); border-color: var(--champan);
}

/* ============================= HERO ============================= */
.hero { padding-top: 0; }
.hero-stage {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img-wrap {
  position: absolute; inset: 0;
  clip-path: inset(100% 0 0 0);
  animation: heroReveal 1.6s cubic-bezier(0.7, 0, 0.2, 1) 0.6s forwards;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.18);
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: brightness(0.6) saturate(0.85) contrast(1.05);
  will-change: transform;
}
@keyframes heroReveal { to { clip-path: inset(0% 0 0 0); } }
@keyframes kenburns {
  0%   { transform: scale(1.18) translate(0, 0); }
  100% { transform: scale(1.32) translate(-3%, -2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(212, 175, 122, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(8,7,10,0.4) 0%, rgba(8,7,10,0.6) 50%, rgba(8,7,10,0.97) 100%),
    linear-gradient(110deg, rgba(8,7,10,0.7) 0%, rgba(8,7,10,0.2) 50%, transparent 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,230,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,230,212,0.04) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.5;
}

.hero-meta {
  position: absolute;
  top: 100px; right: 24px;
  z-index: 5;
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-end;
}
.meta-tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(240, 230, 212, 0.15);
  border-radius: 999px;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(240, 230, 212, 0.55);
  background: rgba(8, 7, 10, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: tagIn 0.6s ease forwards;
}
.meta-tag:nth-child(1) { animation-delay: 1.5s; }
.meta-tag:nth-child(2) { animation-delay: 1.65s; }
.meta-tag:nth-child(3) { animation-delay: 1.8s; }
@keyframes tagIn { to { opacity: 1; } }
@media (max-width: 768px) { .hero-meta { top: 90px; right: 14px; } .meta-tag { font-size: 8px; padding: 5px 9px; } }

.hero-kicker-line {
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards;
}
.hero-kicker-line .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--champan);
  box-shadow: 0 0 14px var(--champan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(212, 175, 122, 0); }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-title {
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span,
.hero-title .line {
  transform: translateY(110%);
  display: block;
  animation: lineUp 1.1s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 1.3s; }
.hero-title .line:nth-child(2) { animation-delay: 1.45s; }
.hero-title .line:nth-child(3) { animation-delay: 1.6s; }
@keyframes lineUp { to { transform: translateY(0%); } }
.hero-title i {
  font-style: italic;
  color: var(--champan);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.hero-bottom > * {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-bottom > *:nth-child(1) { animation-delay: 2.0s; }
.hero-bottom > *:nth-child(2) { animation-delay: 2.15s; }
.hero-bottom > *:nth-child(3) { animation-delay: 2.3s; }

.hero-stat {
  text-align: right;
  position: relative;
}
.hero-stat::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--champan), transparent);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .hero-stat { text-align: left; }
  .hero-stat::before { display: none; }
}

.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
  opacity: 0; animation: fadeUp 1s ease 2.5s forwards;
}
.hero-scroll-hint .line-anim {
  display: block; width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champan), transparent);
  background-size: 200% 100%;
  animation: lineFlow 2.4s ease-in-out infinite;
}
@keyframes lineFlow {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: 0% 0; }
}

/* ============================= MARQUEE ============================= */
.marquee-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 35s linear infinite;
  font-family: "Italiana", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--crema);
}
.marquee-track span { display: inline-block; }
.marquee-track i { color: var(--champan); font-family: "Instrument Serif", serif; }
.mq-sep { color: var(--champan) !important; font-size: 0.7em; opacity: 0.7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================= SECTION HEADS ============================= */
.section-head {
  max-width: 920px;
}
.section-num {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--champan);
  padding-left: 22px;
  position: relative;
}
.section-num::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px; background: var(--champan);
}
.section-title {
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--crema);
  font-weight: 400;
}
.section-title i {
  font-style: italic;
  color: var(--champan);
  font-family: "Instrument Serif", serif;
}
.section-lead {
  margin-top: 18px;
  color: rgba(240, 230, 212, 0.6);
  max-width: 540px;
  line-height: 1.6;
  font-size: 15px;
}

/* ============================= TRUST CARDS ============================= */
.trust-card {
  position: relative;
  padding: 40px 30px 36px;
  background: var(--noir);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.trust-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(212, 175, 122, 0.05), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.trust-card:hover { background: var(--ink); }
.trust-card:hover::before { opacity: 1; }
.trust-num {
  font-size: 10px; letter-spacing: 0.3em; text-transform: lowercase;
  color: var(--champan);
}
.trust-card h3 {
  font-size: 2rem; line-height: 1; margin-top: 14px; color: var(--crema);
  font-weight: 400;
  transition: transform 0.5s ease;
}
.trust-card:hover h3 { transform: translateX(6px); color: var(--champan); }
.trust-card p {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(240, 230, 212, 0.55);
  line-height: 1.55;
}
.trust-tag {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 10px;
  border: 1px solid rgba(212, 175, 122, 0.25);
  border-radius: 999px;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--champan);
}

/* ============================= SUITES (editorial) ============================= */
.suites-section { background: var(--noir); }
.suite { padding: 80px 0; position: relative; }
.suite-top { background: linear-gradient(180deg, transparent, rgba(122, 31, 43, 0.08), transparent); }
.suite-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .suite-wrap { grid-template-columns: 1.1fr 1fr; gap: 80px; padding: 0 40px; }
  .suite-alt .suite-wrap { direction: rtl; }
  .suite-alt .suite-wrap > * { direction: ltr; }
}

.suite-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}
.suite-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s;
  filter: brightness(0.92) saturate(0.95);
}
.suite:hover .suite-img img { transform: scale(1.15); filter: brightness(1) saturate(1.05); }
.suite-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(240, 230, 212, 0.2);
  z-index: 2;
  pointer-events: none;
  transition: inset 0.5s ease;
}
.suite-frame.gold { border-color: rgba(212, 175, 122, 0.5); }
.suite:hover .suite-frame { inset: 22px; }

.suite-tag {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  padding: 7px 12px;
  background: rgba(8, 7, 10, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 230, 212, 0.12);
  border-radius: 999px;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--crema);
}
.suite-tag.tag-gold { background: var(--champan); color: var(--noir); border-color: var(--champan); }

.suite-body { display: flex; flex-direction: column; }
.suite-h {
  font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: 0.95; letter-spacing: -0.01em;
  color: var(--crema); margin-top: 14px;
  font-weight: 400;
}
.suite-h i { color: var(--champan); font-family: "Instrument Serif", serif; }
.suite-p {
  margin-top: 18px; max-width: 480px;
  font-size: 15px; line-height: 1.6; color: rgba(240, 230, 212, 0.65);
}
.suite-amenities {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  font-size: 13px;
  color: rgba(240, 230, 212, 0.85);
  list-style: none; padding: 0;
}
.suite-amenities li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
}
.suite-amenities li svg { color: var(--champan); opacity: 0.8; }

.suite-prices {
  margin-top: 28px;
  display: flex; gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.suite-prices > div {
  flex: 1;
  padding: 16px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.suite-prices > div + div { border-left: 1px solid var(--line); padding-left: 22px; }
.suite-prices span {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(212, 175, 122, 0.85);
}
.suite-prices strong {
  font-size: 2rem; color: var(--crema); font-weight: 400;
  line-height: 1;
}

/* ============================= COMPARE ============================= */
.compare-card {
  position: relative;
  padding: 50px 32px 38px;
  background: var(--noir);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.compare-card:hover { background: var(--ink); }
.compare-card.mid { background: linear-gradient(180deg, rgba(212, 175, 122, 0.04), transparent); }
.compare-card.top { background: linear-gradient(180deg, rgba(212, 175, 122, 0.08), rgba(122, 31, 43, 0.06)); }
.compare-big {
  position: absolute; top: 24px; right: 28px;
  font-size: 4.5rem;
  color: rgba(212, 175, 122, 0.15);
  font-weight: 300;
  font-family: "Instrument Serif", serif;
  line-height: 1;
}
.compare-card h3 {
  font-size: 2.4rem; line-height: 1; color: var(--crema);
  font-weight: 400;
}
.compare-card h3::before { content: "Suite "; opacity: 0.5; font-size: 0.6em; vertical-align: middle; }
.compare-ideal {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(240, 230, 212, 0.6);
  line-height: 1.55;
  max-width: 280px;
}
.compare-card ul {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 0;
  font-size: 13px; color: rgba(240, 230, 212, 0.75);
  list-style: none; padding: 0;
}
.compare-card ul li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; gap: 10px;
}
.compare-card ul li::before {
  content: "·"; color: var(--champan); font-size: 1.4em; line-height: 0;
}
.compare-price {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 8px;
}
.compare-price span {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(212, 175, 122, 0.8);
}
.compare-price strong {
  font-size: 2.4rem; color: var(--crema); font-weight: 400; line-height: 1;
}

/* ============================= GALLERY ============================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}
@media (min-width: 768px) { .gallery-grid { grid-auto-rows: 140px; gap: 18px; } }
@media (min-width: 1024px) { .gallery-grid { grid-auto-rows: 170px; gap: 20px; } }

.g {
  position: relative; overflow: hidden;
  background: var(--ink);
  border-radius: 4px;
  cursor: pointer;
}
.g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s;
  filter: brightness(0.8) saturate(0.95);
}
.g:hover img { transform: scale(1.1); filter: brightness(1.02) saturate(1.08); }
.g figcaption {
  position: absolute; left: 14px; bottom: 14px;
  padding: 5px 10px;
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--crema);
  background: rgba(8, 7, 10, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  opacity: 0; transform: translateY(6px);
  transition: all 0.4s ease;
}
.g:hover figcaption { opacity: 1; transform: translateY(0); }

/* Asymmetric placement */
.g-1 { grid-column: span 5; grid-row: span 3; }
.g-2 { grid-column: span 4; grid-row: span 2; }
.g-3 { grid-column: span 3; grid-row: span 2; }
.g-4 { grid-column: span 4; grid-row: span 2; }
.g-5 { grid-column: span 3; grid-row: span 3; }
.g-6 { grid-column: span 5; grid-row: span 2; }
.g-7 { grid-column: span 7; grid-row: span 2; }
.g-8 { grid-column: span 5; grid-row: span 2; }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; }
  .g-1 { grid-column: span 6; grid-row: span 2; }
  .g-2 { grid-column: span 3; grid-row: span 1; }
  .g-3 { grid-column: span 3; grid-row: span 1; }
  .g-4 { grid-column: span 6; grid-row: span 2; }
  .g-5 { grid-column: span 3; grid-row: span 2; }
  .g-6 { grid-column: span 3; grid-row: span 2; }
  .g-7 { grid-column: span 6; grid-row: span 2; }
  .g-8 { grid-column: span 6; grid-row: span 2; }
}

/* ============================= DECORACIONES ============================= */
.deco-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(122, 31, 43, 0.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212, 175, 122, 0.08), transparent 50%);
}
.motivo {
  aspect-ratio: 1 / 1;
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.motivo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.motivo:hover {
  border-color: rgba(212, 175, 122, 0.4);
  transform: translateY(-4px);
}
.motivo:hover::before { opacity: 1; }
.motivo-num {
  font-size: 10px; letter-spacing: 0.2em; color: var(--champan); z-index: 1;
}
.motivo-ico {
  font-size: 2.4rem; align-self: flex-end;
  filter: grayscale(0.4); transition: transform 0.4s ease, filter 0.4s ease;
  z-index: 1;
}
.motivo:hover .motivo-ico { transform: rotate(-8deg) scale(1.1); filter: grayscale(0); }
.motivo-name {
  font-family: "Italiana", serif;
  font-size: 1.4rem; color: var(--crema);
  z-index: 1; line-height: 1.1;
}

/* ============================= STORYTELLING ============================= */
.story-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.8);
}
.story-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
}
.story-badge {
  position: absolute; top: 20px; left: 20px;
  padding: 7px 12px;
  background: rgba(8, 7, 10, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--champan);
  border: 1px solid rgba(212, 175, 122, 0.2);
}
.story-quote {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-size: 1.5rem;
  color: var(--crema);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.story-quote i { color: var(--champan-luz); }

.story-point {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(212, 175, 122, 0.3);
}
.story-point strong {
  font-size: 1.4rem; color: var(--crema); line-height: 1;
}
.story-point span {
  font-size: 13px; color: rgba(240, 230, 212, 0.55);
}

/* ============================= PROMO ============================= */
.promo-box {
  position: relative;
  padding: 70px 36px;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212, 175, 122, 0.18), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(122, 31, 43, 0.2), transparent 60%),
    linear-gradient(135deg, #1d1814, #08070a);
  border: 1px solid rgba(212, 175, 122, 0.25);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) { .promo-box { padding: 100px 80px; } }
.promo-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06; mix-blend-mode: overlay;
}
.promo-stamp {
  position: absolute; top: 40px; right: 40px;
  width: 140px; height: 140px;
  color: var(--champan);
  z-index: 5;
}
@media (max-width: 768px) { .promo-stamp { width: 90px; height: 90px; top: 24px; right: 24px; } }
.rotate-disc {
  width: 100%; height: 100%;
  animation: rotateDisc 22s linear infinite;
}
@keyframes rotateDisc { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.stamp-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 2.5rem;
  color: var(--champan-luz);
  text-shadow: 0 0 20px rgba(212, 175, 122, 0.4);
}

/* ============================= UBICACIÓN · Street View 360 ============================= */
.sv-card {
  position: relative;
  background: linear-gradient(180deg, rgba(212, 175, 122, 0.08), rgba(212, 175, 122, 0.02));
  border: 1px solid rgba(212, 175, 122, 0.25);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.sv-stage {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  perspective: 1400px;
  perspective-origin: 50% 35%;
}

.sv-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.03) saturate(0.95);
  opacity: 0;                    /* iniciado oculto, GSAP lo revela */
  z-index: 1;
}

.sv-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 8;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(8, 7, 10, 0.76);
  border: 1px solid rgba(212, 175, 122, 0.35);
  color: #f0e6d4;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
}

/* ============ Cinematic intro layers ============ */
.sv-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.sv-aerial-wide,
.sv-aerial-close {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}
.sv-aerial-wide {
  z-index: 1;
  filter: blur(0px) brightness(0.55) saturate(0.85);
}
.sv-aerial-close {
  z-index: 2;
  image-rendering: -webkit-optimize-contrast;
  background-color: #1a1410;
}
/* Overlay para que el ESRI tile no se vea cuadrado/duro */
.sv-aerial-close::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(8,7,10,0.65) 80%),
    linear-gradient(180deg, rgba(8,7,10,0.25), rgba(8,7,10,0.45));
  pointer-events: none;
}

/* ============ HUD ============ */
.sv-hud {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
}
.sv-hud-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid rgba(212, 175, 122, 0.85);
  opacity: 0;
}
.sv-hud-corner.tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.sv-hud-corner.tr { top: 22px; right: 22px; border-left: 0; border-bottom: 0; }
.sv-hud-corner.bl { bottom: 22px; left: 22px; border-right: 0; border-top: 0; }
.sv-hud-corner.br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }

.sv-reticle {
  position: absolute;
  left: 50%; top: 50%;
  width: 160px; height: 160px;
  transform: translate(-50%, -50%);
  color: var(--champan, #d4af7a);
  filter: drop-shadow(0 0 12px rgba(212, 175, 122, 0.5));
}
.sv-reticle svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 0.8;
  fill: none;
  animation: svReticleSpin 6s linear infinite;
}
.sv-reticle-dot { fill: currentColor; stroke: none; }
@keyframes svReticleSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.sv-hud-meta {
  position: absolute;
  left: 50%; top: calc(50% + 110px);
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  color: var(--champan, #d4af7a);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  width: min(380px, 80%);
}
.sv-hud-label {
  color: rgba(240, 230, 212, 0.9);
}
.sv-hud-label::before {
  content: "● "; color: var(--champan, #d4af7a);
  animation: svBlink 1s steps(2, end) infinite;
}
@keyframes svBlink {
  50% { opacity: 0.15; }
}
.sv-hud-coords {
  color: var(--champan, #d4af7a);
  font-size: 11px;
}
.sv-hud-bar {
  display: block;
  width: 100%; height: 1px;
  background: rgba(212, 175, 122, 0.18);
  position: relative; overflow: hidden;
}
.sv-hud-bar-fill {
  display: block; width: 0%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--champan, #d4af7a));
  box-shadow: 0 0 10px var(--champan, #d4af7a);
}
.sv-hud-alt {
  font-size: 10px;
  color: rgba(240, 230, 212, 0.55);
  letter-spacing: 0.4em;
}

.sv-scanline {
  position: absolute; left: 0; right: 0;
  top: 0; height: 100%;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 3px,
      rgba(212, 175, 122, 0.04) 3px,
      rgba(212, 175, 122, 0.04) 4px
    ),
    linear-gradient(180deg, transparent 0%, rgba(212, 175, 122, 0.18) 50%, transparent 100%);
  background-size: 100% 100%, 100% 60px;
  background-position: 0 0, 0 -60px;
  animation: svScan 3s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.6;
}
@keyframes svScan {
  from { background-position: 0 0, 0 -60px; }
  to   { background-position: 0 0, 0 100%; }
}

/* ============ Replay button ============ */
.sv-replay {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 9;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8, 7, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 122, 0.3);
  color: #f0e6d4;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, color 0.3s, background 0.3s;
}
.sv-stage.sv-revealed .sv-replay { opacity: 1; transform: translateY(0); }
.sv-replay:hover {
  border-color: var(--champan, #d4af7a);
  color: var(--champan, #d4af7a);
  background: rgba(212, 175, 122, 0.12);
}

/* ============ Inset glow permanente ============ */
.sv-stage::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(8, 7, 10, 0.55);
  z-index: 7;
}

@media (max-width: 768px) {
  .sv-card { padding: 10px; border-radius: 22px; }
  .sv-stage { min-height: 430px; border-radius: 18px; }
  .sv-badge { font-size: 9px; max-width: calc(100% - 32px); }
  .sv-reticle { width: 120px; height: 120px; }
  .sv-hud-meta { top: calc(50% + 90px); font-size: 9px; letter-spacing: 0.25em; }
  .sv-hud-corner { width: 18px; height: 18px; }
  .sv-replay { padding: 7px 11px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-intro { display: none; }
  .sv-frame { opacity: 1 !important; }
  .sv-badge { opacity: 1 !important; }
  .sv-reticle svg { animation: none; }
  .sv-scanline { animation: none; }
}

.contact-card {
  padding: 42px 36px;
  background: var(--noir);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.contact-list {
  display: flex; flex-direction: column; gap: 26px;
  list-style: none; padding: 0; margin: 0;
}
.contact-list li {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-actions {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* ============================= CIERRE ============================= */
.cierre-section { background: var(--noir); }
.cierre-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cierre-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) saturate(0.7) blur(2px);
  transform: scale(1.05);
}
.cierre-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(8,7,10,0.85) 80%),
    linear-gradient(180deg, var(--noir), transparent 30%, transparent 70%, var(--noir));
}
.cierre-title {
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.cierre-q {
  display: inline-block;
  font-size: 0.55em;
  margin-top: 0.2em;
  color: rgba(240, 230, 212, 0.7);
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

/* ============================= FOOTER ============================= */
.footer-h {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--champan); margin-bottom: 18px;
}
.footer-list {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: rgba(240, 230, 212, 0.55);
  list-style: none; padding: 0;
}
.footer-list a:hover { color: var(--champan); }

/* ============================= FAB ============================= */
#fab {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  z-index: 60;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.55);
}
.fab-ring {
  position: absolute; inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
#fab:hover { transform: scale(1.08); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================= REVEAL ============================= */
.reveal {
  opacity: 0; transform: translateY(40px);
  will-change: opacity, transform;
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 767px) {
  .hero-title { font-size: clamp(2.6rem, 11vw, 4.5rem); }
  .nav-pill { padding: 10px 14px; }
  .marquee-track { font-size: clamp(1.6rem, 6vw, 2.2rem); gap: 28px; }
  #fab { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .suite { padding: 50px 0; }
  .suite-prices > div + div { padding-left: 18px; }
  .contact-card { padding: 28px 22px; }
  .map-card, .map-card iframe { min-height: 320px; }
  .promo-box { padding: 50px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none !important; transform: scale(1.05) !important; }
  .marquee-track { animation: none !important; }
  .rotate-disc { animation: none !important; }
}

/* ============================= AUDIO TOGGLE ============================= */
.audio-toggle {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(212, 175, 122, 0.38);
  background: rgba(8, 7, 10, 0.78);
  color: #f0e6d4;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: all 0.3s ease;
}
.audio-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 122, 0.68);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
  color: #fff;
}
.audio-toggle.is-active {
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.24), rgba(8, 7, 10, 0.88));
  border-color: rgba(212, 175, 122, 0.78);
  color: #fff;
}
.audio-toggle.is-muted { opacity: 0.78; }

.audio-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(212, 175, 122, 0.9);
  box-shadow: 0 0 14px rgba(212, 175, 122, 0.65);
  flex: none;
}
.audio-toggle.is-active .audio-dot {
  animation: audioDotPulse 1.6s ease-in-out infinite;
}
.audio-toggle.is-muted .audio-dot {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  animation: none;
}
@keyframes audioDotPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 122, 0.5); transform: scale(1); }
  50%      { box-shadow: 0 0 20px rgba(212, 175, 122, 0.9); transform: scale(1.15); }
}

.audio-ico { display: inline-block; opacity: 0.85; }
.audio-toggle .audio-ico-off { display: inline-block; }
.audio-toggle .audio-ico-on  { display: none; }
.audio-toggle.is-active .audio-ico-off { display: none; }
.audio-toggle.is-active .audio-ico-on  { display: inline-block; }

@media (max-width: 768px) {
  .audio-toggle {
    left: 14px;
    bottom: 86px;       /* deja libre el FAB de WhatsApp */
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}

/* ============================= BRAND LOGO ============================= */
.brand-logo {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Nav (header pill) */
.brand-logo-nav {
  width: 36px; height: 36px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand-link:hover .brand-logo-nav { transform: scale(1.08) rotate(-3deg); }
@media (min-width: 768px) {
  .brand-logo-nav { width: 42px; height: 42px; }
}

/* Loader */
.brand-logo-loader {
  width: 110px;
  margin-bottom: 8px;
  opacity: 0.95;
  animation: brandFloat 4s ease-in-out infinite;
}
@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Hero (watermark esquina inferior derecha) */
.brand-logo-hero {
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 84px;
  z-index: 4;
  opacity: 0.55;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
  animation: brandFadeIn 1.2s ease 1.8s both;
}
@keyframes brandFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 0.55; transform: translateY(0); }
}
@media (max-width: 768px) {
  .brand-logo-hero { width: 60px; right: 14px; bottom: 70px; }
}

/* Cierre (sello centrado) */
.brand-logo-cierre {
  width: 130px;
  margin: 0 auto 28px;
  opacity: 0.9;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
}
@media (min-width: 768px) {
  .brand-logo-cierre { width: 170px; }
}

/* Footer */
.brand-logo-footer {
  width: 64px; height: 64px;
  flex: none;
}

/* =================================================================
   MOBILE COMPATIBILITY PATCH
   Override sólo en pantallas pequeñas. No toca desktop.
   ================================================================= */

@media (max-width: 768px) {

  /* ============ NAV ============ */
  #nav { top: 10px; width: 96%; }
  .nav-pill { padding: 9px 12px; gap: 10px; }
  .nav-pill > a > span:last-child { font-size: 18px !important; }
  .brand-logo-nav { width: 32px !important; height: 32px !important; }
  .btn-pill { padding: 8px 14px; font-size: 10px; letter-spacing: 0.18em; }

  /* ============ HERO ============ */
  #hero { padding-top: 0; }
  .hero-title {
    font-size: clamp(2.1rem, 10vw, 3.4rem) !important;
    letter-spacing: -0.02em;
  }
  .hero-kicker-line .mono { font-size: 9px !important; letter-spacing: 0.25em !important; }
  .hero-sub { font-size: 14px !important; line-height: 1.5 !important; }
  .hero-meta {
    top: 76px !important;
    right: 10px !important;
    gap: 5px !important;
    max-width: 50%;
  }
  .hero-meta .meta-tag {
    font-size: 7px !important;
    letter-spacing: 0.18em !important;
    padding: 4px 7px !important;
  }
  .hero-bottom { gap: 24px !important; }
  .hero-cta { gap: 8px !important; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost {
    padding: 14px 18px;
    font-size: 10px;
    letter-spacing: 0.2em;
    flex: 1 1 auto;
    justify-content: center;
  }
  .hero-stat { padding-top: 6px; }
  .hero-stat .font-italiana { font-size: 2.4rem !important; }
  .hero-scroll-hint { left: 14px; bottom: 14px; }
  .hero-scroll-hint .line-anim { width: 32px; }

  /* ============ MARQUEE ============ */
  .marquee-strip { padding: 14px 0; }
  .marquee-track {
    font-size: 1.5rem !important;
    gap: 22px !important;
    animation-duration: 28s !important;
  }

  /* ============ SECTION TITLES ============ */
  .section-title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important;
    line-height: 1.05 !important;
  }
  .section-num { font-size: 9px; letter-spacing: 0.25em; padding-left: 18px; }
  .section-lead { font-size: 13.5px; line-height: 1.5; }

  /* Sections padding reducción */
  section { scroll-margin-top: 70px; }
  #confianza, #comparador, #galeria, #decoraciones, #storytelling, #promo, #ubicacion {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .suites-section { padding-top: 0 !important; }

  /* ============ TRUST CARDS ============ */
  .trust-card { padding: 28px 22px 26px; }
  .trust-card h3 { font-size: 1.6rem; }
  .trust-card p { font-size: 13px; line-height: 1.5; }

  /* ============ SUITES ============ */
  .suite { padding: 36px 0 !important; }
  .suite-wrap { gap: 32px !important; padding: 0 22px !important; }
  .suite-img { aspect-ratio: 4 / 3 !important; }
  .suite-h { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .suite-p { font-size: 14px; line-height: 1.5; }
  .suite-amenities { font-size: 12.5px; gap: 6px 14px; }
  .suite-prices > div { padding: 12px 0; }
  .suite-prices > div + div { padding-left: 14px; }
  .suite-prices strong { font-size: 1.5rem; }
  .suite-prices span { font-size: 8px; letter-spacing: 0.2em; }
  .suite-tag { font-size: 8px; padding: 5px 10px; top: 14px; left: 14px; }
  .suite-frame { inset: 8px; }

  /* ============ COMPARE ============ */
  .compare-card { padding: 38px 22px 28px; }
  .compare-card h3 { font-size: 1.9rem; }
  .compare-big { font-size: 3.2rem; top: 18px; right: 20px; }
  .compare-price strong { font-size: 1.9rem; }
  .compare-card ul li { font-size: 12.5px; padding: 8px 0; }

  /* ============ GALLERY ============ */
  .gallery-grid { gap: 10px !important; }
  .g figcaption { font-size: 7px; padding: 4px 8px; left: 10px; bottom: 10px; opacity: 1; transform: translateY(0); }

  /* ============ DECORACIONES ============ */
  #decoraciones .grid.lg\:grid-cols-12 { gap: 32px !important; }
  .motivo { padding: 14px; aspect-ratio: 1 / 1; }
  .motivo-name { font-size: 1.05rem; }
  .motivo-ico { font-size: 1.9rem; }
  .motivo-num { font-size: 9px; }

  /* ============ STORYTELLING ============ */
  .story-img { aspect-ratio: 4 / 3 !important; }
  .story-quote { font-size: 1.1rem; bottom: 16px; left: 16px; right: 16px; }
  .story-badge { font-size: 8px; padding: 5px 10px; top: 14px; left: 14px; }
  .story-point strong { font-size: 1.15rem; }
  .story-point span { font-size: 12px; }

  /* ============ PROMO ============ */
  .promo-box { padding: 48px 22px !important; }
  .promo-box h2 { font-size: 2rem !important; line-height: 1.05 !important; }
  .promo-box p { font-size: 13.5px; }
  .promo-stamp { width: 70px !important; height: 70px !important; top: 16px !important; right: 16px !important; }
  .stamp-center { font-size: 1.4rem !important; }

  /* ============ UBICACIÓN ============ */
  .sv-card { padding: 8px; border-radius: 18px; }
  .sv-stage { min-height: 360px; border-radius: 14px; }
  .sv-badge { font-size: 8px; padding: 6px 10px; top: 10px; left: 10px; letter-spacing: 0.14em; }
  .contact-card { padding: 24px 20px; }
  .contact-list { gap: 18px; }
  .contact-list li { padding-bottom: 16px; }
  .contact-list .font-italiana { font-size: 1.4rem !important; }
  .contact-actions { gap: 8px; }
  .contact-actions .btn-line, .contact-actions .btn-primary {
    padding: 11px 14px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  /* ============ CIERRE ============ */
  .cierre-section { padding-top: 80px !important; padding-bottom: 100px !important; }
  .cierre-title { font-size: clamp(2.4rem, 11vw, 4rem) !important; }
  .brand-logo-cierre { width: 90px !important; margin-bottom: 18px; }
  .cierre-q { font-size: 0.5em !important; }

  /* ============ FOOTER ============ */
  footer { padding: 50px 0 !important; }
  footer .grid { gap: 28px !important; }
  footer .font-italiana.text-4xl { font-size: 2rem !important; }
  .brand-logo-footer { width: 48px !important; height: 48px !important; }

  /* ============ FAB + AUDIO BTN colisión ============ */
  #fab { width: 52px !important; height: 52px !important; right: 12px !important; bottom: 12px !important; }
  .audio-toggle {
    left: 12px !important;
    bottom: 78px !important;
    padding: 8px 12px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    gap: 7px !important;
  }
  .audio-toggle .audio-text { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* ============ STREETVIEW INTRO HUD ============ */
  .sv-reticle { width: 100px !important; height: 100px !important; }
  .sv-hud-meta { top: calc(50% + 70px) !important; width: 90% !important; font-size: 8px !important; }
  .sv-hud-corner { width: 16px !important; height: 16px !important; }
  .sv-replay { padding: 6px 10px !important; font-size: 8px !important; bottom: 10px !important; right: 10px !important; }

  /* ============ HERO LOGO ============ */
  .brand-logo-hero { width: 50px !important; bottom: 56px !important; right: 12px !important; opacity: 0.45 !important; }

  /* ============ Section counter (oculto < 900px ya) ============ */
  .section-counter { display: none !important; }

  /* ============ Custom cursor invisible en touch ============ */
  .cursor-ring, .cursor-dot { display: none !important; }
  html, body, a, button { cursor: auto !important; }

  /* ============ Buttons mínimo tap-target 44px ============ */
  .btn-line, .btn-ghost, .btn-primary, .sv-btn, .btn-pill { min-height: 40px; }

  /* ============ Container max-width safe ============ */
  .max-w-\[1280px\], .max-w-\[1180px\] { max-width: 100% !important; }
}

/* ============ Extra small (iPhone SE etc <380px) ============ */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.6rem) !important; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .hero-meta { display: none; }
  .marquee-track { font-size: 1.3rem !important; }
  .suite-h { font-size: 1.9rem !important; }
  .promo-box h2 { font-size: 1.7rem !important; }
  .cierre-title { font-size: 2.2rem !important; }
}

/* ============ Landscape phone (no romper hero) ============ */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  #hero { min-height: 130svh; }
  .hero-meta { top: 70px; }
  .hero-title { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
}
