/* =====================================================
   Hotel San Rin Nilo — Sistema de diseño
   Versión final · Editorial premium con paleta del logo
   Dominio: hotelsanrin.com
   ===================================================== */

:root {
  /* === Backgrounds === */
  --bg:        #FFFFFF;
  --bg-2:      #FAF8F4;
  --bg-3:      #F4F1EB;

  /* === Ink === */
  --ink:       #1A1530;
  --ink-2:     #5C5670;   /* Más oscuro para mejor contraste (AA en small text) */
  --ink-3:     #7A7390;   /* Oscurecido para cumplir 4.5:1 sobre blanco */

  /* === Lines & shadows === */
  --line:      rgba(26,21,48,0.08);
  --line-2:    rgba(26,21,48,0.14);
  --shadow-sm: 0 1px 2px rgba(26,21,48,0.04);
  --shadow:    0 2px 8px rgba(26,21,48,0.06);
  --shadow-md: 0 8px 24px rgba(26,21,48,0.08);
  --shadow-lg: 0 20px 50px rgba(26,21,48,0.10);

  /* === Brand colors (from logo) === */
  --primary:   #5246CC;
  --primary-2: #6B5DD3;
  --primary-3: #3F2EAA;
  --pink:      #E91E96;
  --violet:    #9D4EDD;
  --cyan:      #00B8D4;

  /* === Gradients === */
  --grad:        linear-gradient(135deg, #5246CC 0%, #9D4EDD 50%, #E91E96 100%);
  --grad-soft:   linear-gradient(135deg, rgba(82,70,204,0.08) 0%, rgba(157,78,221,0.08) 50%, rgba(233,30,150,0.08) 100%);
  --grad-cta:    linear-gradient(135deg, #5246CC 0%, #6B5DD3 100%);
  --grad-shadow: 0 8px 24px rgba(82,70,204,0.30);

  /* === Typography === */
  --font-disp: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* === Sizing === */
  --fs-hero:    clamp(2.6rem, 5.5vw, 4.6rem);
  --fs-h1:      clamp(2.2rem, 4.5vw, 3.6rem);
  --fs-h2:      clamp(1.9rem, 3.5vw, 2.8rem);
  --fs-h3:      clamp(1.4rem, 2vw, 1.8rem);
  --fs-lead:    clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-kicker:  0.75rem;

  /* === Layout === */
  --container:  1280px;
  --radius:     14px;
  --radius-lg:  18px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%; width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--primary); color: #fff; }

/* === Focus visible global (a11y teclado) === */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Variantes para diferentes superficies */
.btn:focus-visible,
.room-link:focus-visible,
.room-card a:focus-visible {
  outline: 3px solid #fff;
  box-shadow: 0 0 0 6px var(--primary);
  outline-offset: 2px;
}
.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  background: rgba(82,70,204,0.08);
  color: var(--ink);
}
/* Focus en inputs del hero-booking (sobre fondo oscuro) */
.hero-booking input:focus-visible,
.hero-booking select:focus-visible,
.hero-booking button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  background: rgba(255,255,255,0.1);
}
/* Focus en footer links */
footer a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-disp);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

h1 em, h2 em, h3 em, h4 em, h5 em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

p { line-height: 1.65; }

a { color: var(--ink); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: clamp(70px, 9vw, 110px) 0;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px;
  width: auto; height: auto;
  padding: 12px 18px;
  background: var(--ink); color: var(--bg);
  z-index: 10001; text-decoration: none;
  font-weight: 600; border-radius: 8px;
}

/* === Eyebrow / Kicker === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--grad);
}
.eyebrow-num {
  font-family: var(--font-disp);
  font-size: 14px; font-weight: 400; font-style: italic;
  color: var(--ink-3);
  letter-spacing: 0;
}

/* Kicker (variante centrada, fondo claro) — para usar en CTA, trust, etc. */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
}
.kicker::before {
  content: ""; width: 28px; height: 1px;
  background: var(--grad);
}
.kicker-num {
  font-family: var(--font-disp);
  font-size: 14px; font-weight: 400; font-style: italic;
  color: var(--ink-3);
  letter-spacing: 0;
}

/* === Header / Nav === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
/* Estado "sobre el hero" (full-bleed image hero): texto blanco */
.site-header.hero-on .logo-text .name,
.site-header.hero-on .nav-link { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.site-header.hero-on .logo-text .tagline { color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.site-header.hero-on .nav-toggle { color: #fff; border-color: rgba(255,255,255,0.6); }
.site-header.hero-on .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
/* Cuando scrolled + hero-on: revert a oscuro */
.site-header.hero-on.scrolled .logo-text .name,
.site-header.hero-on.scrolled .nav-link { color: var(--ink); text-shadow: none; }
.site-header.hero-on.scrolled .logo-text .tagline { color: var(--ink-2); text-shadow: none; }
.site-header.hero-on.scrolled .nav-toggle { color: var(--ink); border-color: var(--line-2); }
.site-header.hero-on.scrolled .nav-link:hover { color: var(--ink); background: rgba(26,21,48,0.04); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  gap: 32px;
}
.logo-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-disp); font-size: 20px; font-weight: 500;
  box-shadow: 0 4px 14px rgba(82,70,204,0.25);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: var(--font-disp);
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-text .tagline {
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 500; margin-top: 2px;
}

.nav-list {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-link {
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--ink); background: rgba(26,21,48,0.04); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn-grad {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(82,70,204,0.30);
}
.btn-grad:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(82,70,204,0.40);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
/* Botón fantasma: transparente con borde blanco — para usar sobre hero con imagen */
.btn-outline-w {
  background: rgba(26,21,48,0.35);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.btn-outline-w:hover {
  background: rgba(26,21,48,0.55);
  color: #fff;
  border-color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
/* Botón claro: blanco con borde, para header sobre el hero */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: 8px; padding: 10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-list.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 20px; right: 20px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-md);
    align-items: stretch;
    gap: 4px;
  }
  .nav-list.open .nav-link {
    padding: 14px 16px; color: var(--ink);
  }
  .header-cta { display: none; }
}

/* === HERO (full-bleed image, text overlay) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 140px 24px 200px;
  overflow: hidden;
  background: #1A1530;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('img/branding/fachada.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(0.9) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 900px 700px at 50% 45%, rgba(26,21,48,0.7) 0%, rgba(26,21,48,0.35) 50%, transparent 80%),
    linear-gradient(180deg, rgba(26,21,48,0.85) 0%, rgba(26,21,48,0.65) 35%, rgba(26,21,48,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 28px; height: 1px;
  background: rgba(255,255,255,0.6);
}
.hero h1 {
  font-family: var(--font-disp);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.3);
}
.hero h1 em { font-style: italic; font-weight: 300; font-size: 0.95em; }
.hero h1 em { font-style: italic; font-weight: 300; }
.hero p.hero-subtitle {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.92);
  margin: 0 auto 18px;
  max-width: 540px;
  font-weight: 300;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero p.lead {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.95);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-cta-row {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.hero-cta-row .btn { padding: 14px 28px; font-size: 12px; }
.hero-cta-row .btn-grad {
  background: #fff; color: var(--ink); border-color: #fff;
}
.hero-cta-row .btn-grad:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.hero-cta-row .btn-outline-w {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.hero-cta-row .btn-outline-w:hover {
  background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6);
}

.hero-features {
  display: flex; gap: 36px; justify-content: center;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-feat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.hero-feat-num {
  font-family: var(--font-disp);
  font-size: 24px; font-weight: 400; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.hero-feat-l {
  font-size: 10px; color: rgba(255,255,255,0.75);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}

.hero-caption {
  position: absolute; bottom: 160px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2; max-width: var(--container); margin: 0 auto;
}
.hero-caption strong { color: #fff; font-weight: 600; }
.hero-caption .num { font-family: var(--font-disp); font-style: italic; }

/* Scroll indicator (flecha abajo) */
.hero-scroll {
  position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.25em; text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
  text-decoration: none;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  z-index: 150;
  text-decoration: none;
  transition: all .25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 38px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: 0.5;
  z-index: -1; animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* Subir WhatsApp cuando sticky-cta está visible (mobile) */
@media (max-width: 700px) {
  body:has(.sticky-cta.visible) .whatsapp-float {
    bottom: 84px; right: 12px;
    width: 48px; height: 48px;
  }
  body:has(.sticky-cta.visible) .whatsapp-float svg { width: 22px; height: 22px; }
}

/* Hero booking bar (inline, no fixed) */
.hero-booking {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,21,48,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 3;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: #fff;
  flex-wrap: wrap;
}
.hero-booking-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; width: 100%; max-width: var(--container); margin: 0 auto;
}
.hero-booking-fields {
  display: flex; align-items: center; gap: 32px; flex: 1;
  overflow-x: auto; scrollbar-width: none;
}
.hero-booking-fields::-webkit-scrollbar { display: none; }
.hero-booking-field { display: flex; flex-direction: column; gap: 2px; min-width: max-content; }
.hero-booking-field label {
  font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.hero-booking-field input,
.hero-booking-field select {
  background: transparent; border: none; padding: 0;
  color: #fff; font-size: 14px; font-weight: 500;
  font-family: inherit; outline: none;
  cursor: pointer;
}
.hero-booking-field select option { color: var(--ink); background: #fff; }
.hero-booking-cta {
  background: #fff; color: var(--ink);
  padding: 12px 24px; border-radius: 100px;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; border: none; cursor: pointer;
  transition: all .25s;
  flex-shrink: 0;
}
.hero-booking-cta:hover {
  background: var(--ink); color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .hero-booking { padding: 12px 16px; }
  .hero-booking-inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-booking-fields {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    overflow: visible;
  }
  .hero-booking-field { min-width: 0; }
  .hero-booking-field input,
  .hero-booking-field select { width: 100%; min-width: 0; font-size: 13px; }
  .hero-booking-field label { font-size: 9px; letter-spacing: 0.14em; }
  .hero-booking-cta { width: 100%; justify-content: center; padding: 14px; font-size: 12px; }
}

@media (max-width: 900px) {
  .hero { padding: 110px 20px 220px; }
  .hero h1 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .hero p.lead { font-size: 15px; margin-bottom: 28px; }
  .hero-features { gap: 24px; margin-top: 32px; padding-top: 20px; }
  .hero-feat-num { font-size: 20px; }
  .hero-caption { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 700px) {
  .hero { padding: 100px 20px 240px; min-height: auto; }
  .hero h1 { font-size: 1.35rem; line-height: 1.08; overflow-wrap: anywhere; word-break: normal; text-wrap: wrap; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 16px; }
  .hero p.lead { font-size: 14px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-features { gap: 16px; }
  .hero-feat-l { font-size: 9px; }
  .hero-feat-num { font-size: 18px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.2rem; }
  .hero-features { gap: 12px; }
  .hero-feat-num { font-size: 16px; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.1rem; }
  .hero-booking-field label { font-size: 8.5px; }
  .hero-booking-field input, .hero-booking-field select { font-size: 12px; }
}

/* === END HERO (legacy split-layout rules removed) === */

/* === Anchor scroll offset (header fijo no tapa las secciones) === */
section[id] { scroll-margin-top: 80px; }

/* === Trust badges (UX/comfort: prueba social cerca de la reserva) === */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.trust-badges > div > span:last-child { color: var(--ink-2); font-weight: 400; }
.trust-badges > div {
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-badges svg {
  width: 16px; height: 16px;
  color: var(--primary);
  stroke: currentColor; fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.trust-badges strong { color: var(--ink); font-weight: 600; }

/* Sticky mobile CTA (aparece al hacer scroll fuera del hero) */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0)) 16px;
  z-index: 95;
  display: none; justify-content: center; align-items: center; gap: 10px;
  box-shadow: 0 -4px 20px rgba(26,21,48,0.08);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { padding: 12px 20px; font-size: 11px; flex: 1; max-width: 240px; }
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
}

/* === FAQ section === */
.faq-section { background: var(--bg-2); }
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] { border-color: var(--primary); box-shadow: 0 4px 16px rgba(82,70,204,0.06); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 300;
  color: var(--primary); flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--primary); }
.faq-item .faq-body {
  padding: 0 22px 18px 22px;
  color: var(--ink-2);
  font-size: 14.5px; line-height: 1.65;
}

/* === Stretched link en room cards (toda la card es clickeable) === */
.room-card { position: relative; }
.room-card .room-stretched-link {
  position: absolute; inset: 0; z-index: 2;
  text-indent: -9999px; overflow: hidden;
  border-radius: inherit;
}
.room-card .room-link { position: relative; z-index: 3; }
.room-card a:focus-visible { outline-offset: 4px; }
.room-card .room-body p, .room-card .room-body h3 { position: relative; z-index: 1; }

/* === Form feedback (loading) === */
.hero-booking-cta.is-loading {
  opacity: .7; pointer-events: none;
  position: relative; color: transparent !important;
}
.hero-booking-cta.is-loading::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border: 2px solid currentColor; border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* === Section header (editorial) === */
.section-header {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 64px; gap: 60px;
}
.section-header .left { max-width: 600px; }
.section-header .right { color: var(--ink-2); font-size: 14px; max-width: 320px; text-align: right; }
.section-header h2 {
  font-family: var(--font-disp);
  font-size: var(--fs-h2);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 20px;
}
.section-header.centered { flex-direction: column; align-items: center; text-align: center; }
.section-header.centered .right { text-align: center; max-width: 500px; }

@media (max-width: 700px) {
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-header .right { text-align: left; }
}

/* === ABOUT (editorial split) === */
.about-section { padding-top: clamp(70px, 9vw, 110px); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-3);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.about-image-tag .pin {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.about-image-tag .text strong { display: block; color: var(--ink); font-weight: 600; font-size: 13px; }
.about-image-tag .text span { color: var(--ink-3); font-size: 11px; }
.about-image-tag .text svg { width: 18px; height: 18px; }

.about-content { padding-top: 8px; }
.about-content h2 { margin: 20px 0 24px; }
.about-lead {
  font-family: var(--font-disp);
  font-size: 18px; font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
}
.about-lead em { font-style: italic; color: var(--primary); }
.about-content p { color: var(--ink-2); font-size: 16px; margin-bottom: 16px; line-height: 1.7; font-weight: 400; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-feature { display: flex; gap: 12px; align-items: flex-start; }
.about-feature .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.about-feature .ico svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.about-feature .text strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.about-feature .text span { color: var(--ink-2); font-size: 13px; line-height: 1.4; font-weight: 400; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .about-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .about-features { grid-template-columns: 1fr; }
}

/* === ROOMS (editorial asymmetric) === */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s;
  display: flex; flex-direction: column;
}
.room-card:hover {
  border-color: rgba(82,70,204,0.30);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(82,70,204,0.10);
}
.room-card.large { grid-column: span 7; }
.room-card.medium { grid-column: span 5; }
.room-card.half { grid-column: span 6; }
.room-card.small { grid-column: span 3; }

/* CTA banner dentro de la grid de rooms (fila final) */
.room-cta-card {
  grid-column: span 12;
  background: linear-gradient(135deg, var(--ink) 0%, #2A1F4A 100%);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  min-height: 220px;
  position: relative;
}
.room-cta-content {
  padding: 40px clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 12px;
  text-align: left;
}
.room-cta-content .kicker {
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  margin-bottom: 0;
}
.room-cta-content .kicker::before { background: rgba(255,255,255,0.5); }
.room-cta-content .kicker-num { color: rgba(255,255,255,0.65); }
.room-cta-content h3 {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400; line-height: 1.1;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.room-cta-content h3 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.room-cta-content p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.55; max-width: 480px; margin: 0 0 8px; }
.room-cta-content .btn-grad {
  font-size: 12px;
  padding: 13px 24px;
}
.room-cta-visual {
  position: relative;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}
.room-cta-visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.1);
  transition: transform .8s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-cta-card:hover .room-cta-visual img { transform: scale(1.04); }
@media (max-width: 800px) {
  .room-cta-card { grid-template-columns: 1fr; }
  .room-cta-visual { order: -1; min-height: 180px; max-height: 220px; }
  .room-cta-content { padding: 28px 24px; }
}

.room-img {
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #c8c0e8, #9888c8);
}
.room-card.large .room-img { aspect-ratio: 16/10; }
.room-card.compact .room-img { aspect-ratio: 4/3; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.4, 0, 0.2, 1); }
.room-card:hover .room-img img { transform: scale(1.05); }

.room-img .room-num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-disp); font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.room-img .room-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
}

.room-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.room-card.large .room-body { padding: 32px; }
.room-name {
  font-family: var(--font-disp);
  font-size: 22px; font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.room-card.large .room-name { font-size: 32px; }
.room-meta {
  font-size: 12px; color: var(--ink-2);
  margin-bottom: 20px; letter-spacing: 0.05em;
}
.room-bottom {
  display: flex; justify-content: space-between; align-items: end;
  padding-top: 20px; margin-top: auto;
  border-top: 1px solid var(--line);
}
.room-price-label {
  font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.room-price {
  font-family: var(--font-disp);
  font-size: 24px; font-weight: 400; line-height: 1;
  color: var(--ink); margin-top: 4px;
  letter-spacing: -0.01em;
}
.room-price small {
  font-size: 12px; color: var(--ink-3);
  font-family: var(--font-body); font-weight: 400;
}
.room-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.room-card:hover .room-link {
  background: var(--grad);
  transform: rotate(-45deg);
}
.room-link svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card.large, .room-card.medium, .room-card.half, .room-card.small, .room-card.compact { grid-column: span 1; }
  .room-card.large .room-img { aspect-ratio: 4/3; }
  .room-card.large .room-name { font-size: 24px; }
  .room-cta-card { grid-column: span 1; }
}

/* === SERVICES (line grid, no cards) === */
.services-section { background: var(--bg-2); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.service:hover { background: #fff; }
.service-num {
  font-family: var(--font-disp);
  font-size: 12px; font-style: italic;
  color: var(--ink-3);
}
.service-icon {
  width: 40px; height: 40px;
  margin: 24px 0 20px;
  color: var(--primary);
}
.service-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.service-name {
  font-family: var(--font-disp);
  font-size: 22px; font-weight: 400;
  line-height: 1.1; color: var(--ink);
  margin-bottom: 8px;
}
.service-desc { font-size: 14px; color: var(--ink-2); line-height: 1.55; font-weight: 400; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* === GALLERY (bento) === */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gal {
  border-radius: 12px;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, #c8c0e8, #a098c8);
  cursor: pointer;
  transition: transform .3s;
}
.gal:hover { transform: scale(1.02); }
.gal img { width: 100%; height: 100%; object-fit: cover; }
.gal-label {
  position: absolute; bottom: 14px; left: 16px;
  color: rgba(255,255,255,0.95);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.gal::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.gal-1 { grid-column: span 3; grid-row: span 2; }
.gal-2 { grid-column: span 2; }
.gal-3 { grid-column: span 1; }
.gal-4 { grid-column: span 1; }
.gal-5 { grid-column: span 2; }

@media (max-width: 700px) {
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gal-1 { grid-column: span 2; grid-row: span 1; }
  .gal-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    bottom: 16px; left: 18px;
    color: #fff;
  }
}

/* === REVIEWS === */
.reviews-section { background: var(--bg-2); }
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-header .eyebrow { justify-content: center; }
.reviews-header h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 20px;
}
.reviews-header p { color: var(--ink-2); max-width: 500px; margin: 0 auto; }

.reviews-score { text-align: center; margin-bottom: 60px; }
.reviews-score .big {
  font-family: var(--font-disp);
  font-size: 96px; font-weight: 300; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
}
.reviews-score .stars { color: #FFB800; font-size: 18px; letter-spacing: 4px; margin-top: 12px; }
.reviews-score .sub {
  font-size: 11px; color: var(--ink-3); margin-top: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.reviews-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.review {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.review-quote {
  font-family: var(--font-disp);
  font-size: 19px; font-weight: 300; font-style: italic;
  line-height: 1.5; color: var(--ink);
  margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad);
  color: #fff; font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.review-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-source { font-size: 12px; color: var(--ink-2); margin-top: 2px; font-weight: 500; }

@media (max-width: 900px) { .reviews-list { grid-template-columns: 1fr; } .reviews-score .big { font-size: 64px; } }

/* === LOCATION === */
.location-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.map-area {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.map-area iframe { width: 100%; height: 100%; border: 0; }

.map-pin-overlay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
  z-index: 2;
}
.map-pin-icon {
  width: 48px; height: 48px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(82,70,204,0.4);
}
.map-pin-icon svg { transform: rotate(45deg); width: 22px; height: 22px; color: #fff; }
.map-pin-text {
  background: #fff; padding: 8px 16px; border-radius: 100px;
  font-size: 12px; color: var(--ink); font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card {
  padding: 48px;
  background: #fff;
}
.info-card h3 {
  font-family: var(--font-disp);
  font-size: 24px; font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.info-sub { font-size: 13px; color: var(--ink-2); margin-bottom: 32px; }
.info-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-ico svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.info-row strong {
  display: block; color: var(--ink); font-weight: 600;
  font-size: 14px; margin-bottom: 2px;
}
.info-row span { color: var(--ink-2); font-size: 13px; }
.info-row a { color: var(--primary); text-decoration: none; font-weight: 500; }
.info-row a:hover { text-decoration: underline; }

@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } .info-card { padding: 32px; } }

/* === CTA === */
.cta-section {
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 600px 400px at 50% 0%, rgba(82,70,204,0.08) 0%, transparent 60%),
    var(--bg-2);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  text-align: left;
}
.cta-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(26,21,48,0.18);
}
.cta-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cta-badge svg { color: var(--primary); }
.cta-content { text-align: left; }
.cta-content .kicker { margin-bottom: 18px; }
.cta-content h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
  text-align: left;
}
.cta-content p { color: var(--ink-2); max-width: 520px; margin: 0 0 28px; font-size: 16px; line-height: 1.65; text-align: left; }
.cta-content .btn-grad { margin-bottom: 24px; }
.cta-meta {
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cta-meta svg { color: var(--primary); }
@media (max-width: 800px) {
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-content { text-align: center; }
  .cta-content h2, .cta-content p { text-align: center; margin-left: auto; margin-right: auto; }
  .cta-visual { aspect-ratio: 16/10; max-width: 520px; margin: 0 auto; }
  .cta-meta { justify-content: center; }
}

/* === FOOTER === */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-link { margin-bottom: 18px; }
.footer-brand p { color: var(--ink-2); font-size: 14px; line-height: 1.65; max-width: 340px; font-weight: 400; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-2); font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}
.footer-bottom a { color: var(--ink-3); }
.footer-bottom a:hover { color: var(--ink); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* === Booking Bar (fixed) === */
.booking-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  color: var(--ink);
  padding: 14px 0;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(26,21,48,0.08);
  border-top: 1px solid var(--line);
  transition: transform .3s, opacity .3s;
}
.booking-bar--hidden {
  transform: translateY(100%);
  opacity: 0; pointer-events: none;
}
.booking-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.booking-fields {
  display: flex; align-items: center; gap: 32px; flex: 1;
  overflow-x: auto; scrollbar-width: none;
}
.booking-fields::-webkit-scrollbar { display: none; }
.booking-field { display: flex; flex-direction: column; gap: 2px; min-width: max-content; }
.booking-field label {
  font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 600;
}
.booking-field input, .booking-field select, .booking-field .val {
  background: transparent; border: none; padding: 0;
  color: var(--ink); font-size: 14px; font-weight: 500;
  font-family: inherit; outline: none;
}
.booking-field select option { color: var(--ink); background: #fff; }
.booking-cta {
  background: var(--ink); color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.booking-cta:hover {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(82,70,204,0.35);
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .booking-bar-inner { flex-direction: column; gap: 10px; align-items: stretch; }
  .booking-fields { gap: 16px; }
  .booking-cta { width: 100%; justify-content: center; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed; bottom: 16px; right: 16px; left: auto;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  font-size: 13px;
}
.cookie-banner p { font-size: 12.5px; margin-bottom: 12px; line-height: 1.45; }
.cookie-banner.hidden { display: none; }
.cookie-banner p { color: var(--ink); margin-bottom: 14px; font-size: 14px; }
.cookie-banner p a { color: var(--primary); }
.cookie-banner .cookie-actions { display: flex; gap: 8px; }
.cookie-banner .btn { padding: 10px 18px; font-size: 11px; }

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease-out backwards; }
.fade-in.d1 { animation-delay: .1s; }
.fade-in.d2 { animation-delay: .2s; }
.fade-in.d3 { animation-delay: .3s; }

/* === Mobile tweaks === */
@media (max-width: 700px) {
  .hero-actions, .hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: 13.5px; line-height: 1.5; }
  .hero-eyebrow { font-size: 9.5px; }
  .room-card.large .room-name { font-size: 24px; }
  .room-img { aspect-ratio: 16/10; }
  .cookie-banner { left: 16px; right: 16px; bottom: 12px; max-width: none; }
}

/* === High contrast / reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-scroll { animation: none !important; }
  .whatsapp-float::before { display: none !important; }
}

/* === Forced colors / high contrast (Windows High Contrast Mode) === */
@media (forced-colors: active) {
  .btn, .btn-dark, .btn-outline-w, .btn-primary, .header-cta, .cookie-banner, .booking-bar,
  .whatsapp-float, .sticky-cta, .room-card, .gallery-item, .faq-item, .hero {
    border: 1px solid CanvasText;
  }
  .btn-primary, .whatsapp-float {
    background: ButtonText;
    color: ButtonFace;
    forced-color-adjust: none;
  }
  :focus-visible {
    outline: 3px solid Highlight !important;
    outline-offset: 2px !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-2: #1A1530;
    --ink-3: #3D3550;
  }
  .btn-outline-w { border-width: 2px; }
  .room-card { border: 1px solid var(--ink-2); }
}

@media print {
  .site-header, .booking-bar, .cookie-banner { display: none; }
}
