/* ═══════════════════════════════════════════════════════════════════
   KOMFORT HOUSE — Design System
   ═══════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --cream:       #F5F0E8;
  --cream-2:     #EDE6D8;
  --dark:        #0E0C0A;
  --dark-2:      #1A1714;
  --dark-3:      #282420;
  --gold:        #C09A4A;
  --gold-dark:   #8A6C2E;   /* gold con mejor contraste sobre fondos claros */
  --gold-light:  #DDB96A;
  --gold-pale:   #F0DFB4;
  --text:        #1A1714;
  --mid:         #7A7268;
  --mid-dark:    #5A4F44;   /* texto secundario sobre fondo claro — cumple WCAG AA */
  --light-mid:   #B0A89E;
  --white:       #FFFFFF;
  --border:      rgba(26,23,20,.10);
  --border-dark: rgba(255,255,255,.10);

  --font-display: 'Forum', serif;
  --font-serif:   'Philosopher', serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 1);
  --t:        0.4s;

  --container: 1340px;
  --pad-x: clamp(24px, 5vw, 80px);
  --section-y: clamp(80px, 10vw, 140px);
  --radius: 16px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-weight: 300; color: var(--text); background: var(--cream); line-height: 1.65; overflow-x: hidden; }
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
section[id] { scroll-margin-top: 90px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; }
h3, h4 { font-family: var(--font-serif);   font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(3.5rem, 9vw, 8.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label-light { color: var(--gold-light); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 3px;
  font-size: .85rem; font-weight: 500; letter-spacing: .08em;
  border: none; cursor: pointer;
  transition: background var(--t), transform var(--t);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-101%);
  transition: transform .5s var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { background: #b08840; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,.75);
  font-size: .85rem; font-weight: 400; letter-spacing: .05em;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.btn-ghost:hover { color: var(--white); border-color: var(--gold-light); }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 26px;
  border-radius: 3px;
  font-size: .82rem; font-weight: 500; letter-spacing: .07em;
  transition: background var(--t), color var(--t);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── Cursor ─────────────────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9000;
  border-radius: 50%;
}
.cursor-dot  { width: 6px; height: 6px; background: var(--gold); transform: translate(-50%,-50%); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(192,154,74,.5); transform: translate(-50%,-50%); transition: width .3s, height .3s, border-color .3s; }
.cursor-ring.is-hovering { width: 56px; height: 56px; border-color: var(--gold); }
.cursor-ring.is-hovering + .cursor-dot { opacity: 0; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Loader ─────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.loader-logo { width: 180px; opacity: 0; }
.loader-logo img { width: 100%; filter: brightness(0) invert(1); }
.loader-bar-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.06);
}
.loader-bar { height: 100%; width: 0%; background: var(--gold); }
.loader-num {
  position: absolute; bottom: 20px; right: var(--pad-x);
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  height: 80px;
  overflow: visible;
  transition: background .5s, height .4s, box-shadow .4s, overflow 0s;
}
.navbar.scrolled {
  background: rgba(14,12,10,.95);
  backdrop-filter: blur(12px);
  height: 68px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-left: calc(-1 * var(--pad-x)); }
.nav-logo img {
  height: 300px;
  width: 300px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  transition: height .4s, width .4s, margin-top .4s;
  margin-top: 140px;
  flex-shrink: 0;
}
/* Scrolled: el logo ocupa el navbar completo, overflow:hidden lo recorta */
.navbar.scrolled .nav-logo img {
  height: 200px;
  width: 200px;
  margin-top: 0;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: .78rem; font-weight: 400; letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  position: relative; padding-bottom: 3px;
  transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  color: var(--white);
  border: 1px solid rgba(192,154,74,.5);
  padding: 10px 22px; border-radius: 3px;
  transition: background var(--t), border-color var(--t);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }

/* ── Language switcher ───────────────────────────────────────────── */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.45);
  font-size: .6rem;
  letter-spacing: .1em;
  padding: 4px 7px;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: var(--font-sans);
  line-height: 1;
}
.lang-btn:hover,
.lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: all var(--t);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark-2);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 60px 40px; gap: 28px;
    transition: right .4s var(--ease-out);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: .95rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar-right { gap: 10px; }
  .lang-btn { font-size: .55rem; padding: 3px 6px; }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  will-change: transform;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,.55) 0%, rgba(10,8,6,.25) 50%, rgba(10,8,6,.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
  max-width: 900px; padding: 0 24px;
}
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.hero-title {
  display: flex; flex-direction: row; align-items: baseline;
  gap: 0.25em; margin-bottom: 28px; white-space: nowrap;
}
.word-row { display: block; overflow: hidden; line-height: 1; }
.word-inner { display: block; }
.title-line-2 { color: var(--gold-light); font-style: italic; }

.hero-rule {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  margin: 0 auto 24px;
  transform: scaleX(0);
}
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem); font-weight: 300;
  color: rgba(255,255,255,.75); margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
}
.hs-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}

/* ── Booking ────────────────────────────────────────────────────── */
.booking-section { background: var(--dark-2); padding: clamp(60px, 8vw, 100px) 0; }
.booking-simple {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.booking-left h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.booking-desc { color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.7; max-width: 460px; }
.booking-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.api-note { color: rgba(255,255,255,.65); font-size: .75rem; text-align: center; }

/* ── Rooms (horizontal scroll) ──────────────────────────────────── */
.rooms-section { background: var(--cream); }

.rooms-pin {
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.rooms-left {
  width: clamp(260px, 24vw, 360px);
  flex-shrink: 0;
  background: var(--cream-2);
  padding: clamp(40px,6vw,80px) clamp(28px,4vw,56px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.rooms-left h2 { margin-bottom: 16px; font-size: clamp(2rem, 3vw, 3rem); }
.rooms-desc { color: var(--mid-dark); font-size: .9rem; line-height: 1.8; margin-bottom: 40px; }
.rooms-progress-wrap {
  height: 1px; background: var(--border);
  position: relative; overflow: hidden;
}
.rooms-progress-bar {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%; background: var(--gold);
  transition: width .05s;
}

/* Navegación móvil (oculta en desktop) */
.rooms-mob-nav { display: none; }
.rmn-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.rmn-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.rmn-btn svg { width: 18px; height: 18px; }
.rmn-btn:disabled { opacity: .35; pointer-events: none; }
.rmn-dots { display: flex; gap: 8px; align-items: center; }
.rmn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border);
  transition: background .3s, transform .3s;
}
.rmn-dot.active { background: var(--gold); transform: scale(1.4); }

.rooms-track {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 40px clamp(28px,4vw,60px);
  will-change: transform;
}

.room-slide {
  display: flex;
  width: clamp(520px, 55vw, 680px);
  height: clamp(500px, 84vh, 920px);
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.13);
  background: var(--white);
  cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.room-slide:hover { transform: translateY(-4px); box-shadow: 0 28px 72px rgba(0,0,0,.18); }
.room-slide:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.featured-slide { outline: 2px solid var(--gold); outline-offset: -2px; }

.rs-img {
  flex: 0 0 52%;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease-out);
}
.room-slide:hover .rs-img { transform: scale(1.04); }

.rs-content {
  flex: 1; padding: clamp(20px,2.5vw,36px);
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}
.rs-top { display: flex; justify-content: space-between; align-items: center; }
.rs-num {
  font-family: var(--font-display);
  font-size: 3rem; color: rgba(26,23,20,.18); line-height: 1;
}
.rs-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--cream-2); color: var(--mid-dark);
  padding: 5px 12px; border-radius: 20px;
}
.rs-tag-gold { background: var(--gold-dark); color: var(--white); }
.rs-content h3 { font-size: 1.5rem; }
.rs-content > p { color: var(--mid-dark); font-size: .88rem; line-height: 1.7; }
.rs-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
}
.rs-features li { font-size: .82rem; color: var(--text); display: flex; align-items: center; gap: 7px; font-weight: 400; }
.rs-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
  margin-top: auto; flex-shrink: 0; flex-wrap: wrap; gap: 12px;
}
.rs-price { font-family: var(--font-display); font-size: 1.2rem; }
.rs-price span { font-family: var(--font-sans); font-size: .65rem; color: var(--mid-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; display: block; }
.rs-price em { font-family: var(--font-sans); font-size: .72rem; color: var(--mid-dark); font-style: normal; }
.rs-tax {
  display: block;
  font-family: var(--font-sans);
  font-size: .62rem;
  color: var(--mid);
  letter-spacing: .04em;
  margin-top: 2px;
  font-style: italic;
}
/* Mismo "+ Impuestos" pero dentro del panel oscuro de detalle de habitación */
.rd-price .rs-tax {
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  margin-top: 4px;
}
.rs-cta {
  font-family: var(--font-sans);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s, transform .3s;
}
.room-slide:hover .rs-cta { color: var(--gold); border-bottom-color: var(--gold-dark); transform: translateX(2px); }

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-section { padding: var(--section-y) 0; background: var(--dark); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section h2 { color: var(--white); }

.section-intro { margin-bottom: 56px; }
.section-intro.centered { text-align: center; }
.intro-desc { color: var(--mid-dark); margin-top: 16px; font-size: .95rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 270px);
  gap: 10px;
}
.gallery-item {
  background-size: cover; background-position: center;
  border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer;
  clip-path: inset(0 0 100% 0);
}
.gi-large { grid-column: span 2; grid-row: span 2; border-radius: 12px; }

.gi-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,6,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s;
}
.gi-overlay span {
  color: var(--white); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.6); padding: 9px 20px; border-radius: 2px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gi-overlay { background: rgba(10,8,6,.45); }
.gallery-item:hover .gi-overlay span { opacity: 1; transform: translateY(0); }

/* ── About ──────────────────────────────────────────────────────── */
.about-section {
  padding: var(--section-y) 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: stretch;
}

/* Image side — fills column height; sticky so it stays visible while scrolling content */
.about-media {
  position: relative;
  min-height: 560px;
}
.about-img-frame {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  height: calc(100vh - 140px);
  max-height: 760px;
  min-height: 520px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.about-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.about-img:hover { transform: scale(1.04); }
.about-img-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 16px;
  opacity: .25;
  pointer-events: none;
  z-index: 0;
}

/* Content side */
.about-content {
  display: flex; flex-direction: column; gap: 16px;
}
.about-content h2 { margin-bottom: 4px; font-size: clamp(2rem, 4vw, 3.4rem); }
.about-rule {
  width: 48px; height: 1px; background: var(--gold); margin: 4px 0;
  transform: scaleX(0); transform-origin: left;
}
.about-content p { color: var(--mid-dark); font-size: .92rem; line-height: 1.75; }

.about-stats {
  display: flex; gap: 32px; padding: 22px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.a-stat strong {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1;
}
.a-stat span { color: var(--gold); font-family: var(--font-display); font-size: 2.2rem; }
.a-stat p { font-size: .75rem; color: var(--mid-dark); letter-spacing: .08em; margin-top: 4px; font-weight: 500; }

.about-values { display: flex; flex-direction: column; gap: 0; }
.av-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.av-item:first-child { border-top: 1px solid var(--border); }
.av-num {
  font-family: var(--font-display);
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .1em;
  padding-top: 3px;
  flex-shrink: 0;
  min-width: 24px;
}
.av-item strong { font-size: .9rem; display: block; margin-bottom: 3px; }
.av-item p { font-size: .83rem; color: var(--mid-dark); margin: 0; }

.btn-maps {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--t), color var(--t);
  align-self: flex-start;
}
.btn-maps:hover { background: var(--gold); color: var(--white); }

/* ── Nearby ─────────────────────────────────────────────────────── */
.nearby-section { padding: var(--section-y) 0; background: var(--cream); }

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.place-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  clip-path: inset(0 0 100% 0);
}
.pc-img {
  height: 200px;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease-out);
}
.place-card:hover .pc-img { transform: scale(1.06); }
.pc-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pc-top { display: flex; justify-content: space-between; align-items: center; }
.pc-icon { font-size: 1.4rem; }
.pc-dist {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--gold-dark);
  padding: 5px 12px; border-radius: 20px;
}
.place-card h3 { font-size: 1.1rem; }
.place-card p { color: var(--mid-dark); font-size: .85rem; line-height: 1.65; }

/* ── Medellín ────────────────────────────────────────────────────── */
.medellin-section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}
.medellin-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.medellin-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,.93) 0%, rgba(10,8,6,.78) 60%, rgba(10,8,6,.55) 100%);
}
.medellin-section .container { position: relative; z-index: 1; }

.medellin-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.medellin-text h2 { color: var(--white); margin-bottom: 20px; }
.medellin-text p { color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.85; margin-bottom: 40px; }

.med-stats {
  display: flex; align-items: center; gap: 0;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
}
.ms { text-align: center; flex: 1; }
.ms strong { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-light); line-height: 1; display: inline-block; }
.ms span { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); }
.ms p { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 6px; letter-spacing: .05em; font-weight: 500; }
.ms-div { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

.medellin-cards { display: flex; flex-direction: column; gap: 16px; }
.med-card {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; overflow: hidden;
  transition: background .3s, border-color .3s;
  cursor: pointer;
}
.med-card:hover { background: rgba(255,255,255,.11); border-color: rgba(192,154,74,.4); }
.med-card-img {
  width: 110px; min-height: 90px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.med-card-info { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.med-card-info h3 { color: var(--white); font-size: 1rem; margin-bottom: 2px; font-family: var(--font-serif); font-weight: 400; }
.med-card-info p  { color: rgba(255,255,255,.7); font-size: .8rem; line-height: 1.5; }
.med-card-arrow {
  display: inline-block; margin-top: 8px;
  font-size: .74rem; letter-spacing: .08em;
  color: var(--gold-light); opacity: 1;
  transform: translateX(0);
  transition: color .25s, transform .25s;
}
.med-card:hover .med-card-arrow { color: var(--white); transform: translateX(4px); }

/* ── Medellín Panels ──────────────────────────────────────────────── */
.med-panel {
  position: fixed; inset: 0; z-index: 1100;
  background: linear-gradient(135deg, rgba(10,8,6,.97) 0%, rgba(18,14,10,.97) 100%);
  overflow: hidden;
  visibility: hidden; opacity: 0; pointer-events: none;
  /* Performance: skip rendering content del panel hasta que se abra */
  content-visibility: auto;
  contain-intrinsic-size: 100vh;
}
.panel-scroll {
  position: absolute; inset: 0;
  overflow-y: auto; overflow-x: hidden;
  padding: 100px 0 80px;
  scrollbar-width: thin; scrollbar-color: rgba(192,154,74,.3) transparent;
}
.panel-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65); font-family: var(--font-sans);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 4px;
  cursor: pointer; transition: border-color .2s, color .2s;
  margin-bottom: 48px;
}
.panel-back:hover { border-color: var(--gold); color: var(--gold); }
.panel-title {
  color: var(--white); margin-bottom: 32px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}
.panel-intro { max-width: 700px; margin-bottom: 48px; }
.panel-intro p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.9; margin-bottom: 16px; }
.panel-intro strong { color: var(--gold-light); font-weight: 600; }
.panel-sub {
  font-size: 1.1rem; color: var(--gold-light); letter-spacing: .06em;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  margin-bottom: 28px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Metro modes */
.metro-modes {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 900px;
}
.metro-mode {
  display: flex; gap: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 20px;
  align-items: flex-start;
}
.mm-icon {
  flex-shrink: 0;
  width: 170px; height: 130px;
  border-radius: 8px;
  background-size: cover; background-position: center;
}
.mm-body h4 { color: var(--white); font-size: .95rem; margin-bottom: 8px; }
.mm-body p  { color: rgba(255,255,255,.75); font-size: .82rem; line-height: 1.65; }

/* Restaurant cards */
.resto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 8px;
}
.resto-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s;
}
.resto-card:hover { border-color: rgba(192,154,74,.4); }
.resto-img {
  height: 200px; background-size: cover; background-position: center;
  transition: transform .5s var(--ease-out);
}
.resto-card:hover .resto-img { transform: scale(1.04); }
.resto-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.resto-top { margin-bottom: 4px; }
.resto-body h3 { color: var(--white); font-size: 1.25rem; }
.resto-body p  { color: rgba(255,255,255,.78); font-size: .84rem; line-height: 1.75; }

/* Servicios Komfort panel */
.servicios-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 8px; margin-bottom: 40px;
}
.servicio-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s;
}
.servicio-card:hover { border-color: rgba(192,154,74,.4); }
.servicio-img {
  height: 220px; background-size: cover; background-position: center;
  transition: transform .5s var(--ease-out);
  flex-shrink: 0;
}
.servicio-card:hover .servicio-img { transform: scale(1.04); }
.servicio-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.servicio-body h3 { color: var(--white); font-size: 1.05rem; font-family: var(--font-display); font-weight: 400; }
.servicio-body p  { color: rgba(255,255,255,.78); font-size: .84rem; line-height: 1.75; }
.servicios-note { color: rgba(255,255,255,.78); font-size: .88rem; margin-top: 8px; font-style: italic; }
.tour-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tour-list li { color: rgba(255,255,255,.85); font-size: .82rem; line-height: 1.5; padding: 6px 10px; border-left: 2px solid var(--gold); background: rgba(192,154,74,.1); border-radius: 0 6px 6px 0; }

/* About buttons group */
.about-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-top: 16px; }
.btn-servicios {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--gold); border-radius: 4px;
  background: transparent;
  color: var(--gold); font-family: var(--font-sans);
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background var(--t), color var(--t);
}
.btn-servicios:hover { background: var(--gold); color: var(--white); }
.btn-servicios svg { stroke: currentColor; flex-shrink: 0; }

/* Rooms breakfast note — color con buen contraste sobre el fondo cream-2 */
.rooms-breakfast-note {
  font-size: .82rem; color: #4A3F2E;
  margin-top: 12px; letter-spacing: .02em;
  background: rgba(192,154,74,.22); border-left: 3px solid var(--gold-dark);
  padding: 9px 14px; border-radius: 0 6px 6px 0;
  font-weight: 500;
}

/* About pet-friendly */
.about-pet {
  font-size: .88rem; color: var(--mid-dark);
  background: rgba(0,0,0,.05); border-left: 3px solid var(--gold-dark);
  padding: 10px 14px; border-radius: 0 6px 6px 0;
  margin-bottom: 8px; line-height: 1.65;
}

/* ── Room Detail Panels ──────────────────────────────────────────── */
.room-detail-panel { /* hereda de .med-panel */ }
.rd-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  margin-top: 24px;
  align-items: start;
}
.rd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-auto-rows: 220px;
}
.rd-img {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.rd-img::after {
  content: '🔍';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,8,6,0);
  font-size: 1.4rem; opacity: 0;
  transition: background .3s, opacity .3s;
}
.rd-img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.rd-img:hover::after { background: rgba(10,8,6,.35); opacity: 1; }
.rd-large { grid-column: span 2; height: 380px; }

.rd-info {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 32px;
  position: sticky;
  top: 110px;
  color: rgba(255,255,255,.7);
}
.rd-desc {
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 28px;
  color: rgba(255,255,255,.7);
}
.rd-feat-title {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rd-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-bottom: 28px;
  padding: 0;
}
.rd-features li {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  display: flex; align-items: center; gap: 8px;
  line-height: 1.4;
}
.rd-price-box {
  background: rgba(192,154,74,.08);
  border: 1px solid rgba(192,154,74,.25);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.rd-price-label {
  display: block;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.rd-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem; color: var(--white);
  margin-bottom: 18px; line-height: 1;
}
.rd-price em {
  font-style: normal; font-family: var(--font-sans);
  font-size: .85rem; color: rgba(255,255,255,.55);
  margin-left: 4px;
}
.rd-price-box .btn-primary { width: 100%; justify-content: center; }

/* Responsive room detail panels */
@media (max-width: 1024px) {
  .rd-grid { grid-template-columns: 1fr; gap: 28px; }
  .rd-info { position: relative; top: 0; }
}
@media (max-width: 600px) {
  .rd-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .rd-large { grid-column: span 1; height: 260px; }
  .rd-features { grid-template-columns: 1fr; }
  .rd-info { padding: 24px; }
}

/* Arte grid */
.arte-page {
  display: none;
}
.arte-page.active { display: block; }
.arte-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 8px;
}
.arte-pc { clip-path: none; }
.arte-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.arte-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: none; color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
}
.arte-nav-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(192,154,74,.1);
}
.arte-nav-btn:disabled { opacity: .25; pointer-events: none; }
.arte-dots { display: flex; gap: 8px; align-items: center; }
.arte-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .3s, transform .3s;
}
.arte-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.5); }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; padding: 80px var(--pad-x) 60px;
}
.footer-logo { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo img { width: 140px; margin-bottom: 16px; }
.footer-logo p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.72); max-width: 240px; }

.social-links { display: flex; gap: 14px; margin-top: 24px; justify-content: center; }
.social-links a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: border-color var(--t), color var(--t);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.social-links svg { width: 15px; height: 15px; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-family: var(--font-sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.75); transition: color var(--t); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col address p { font-size: .84rem; color: rgba(255,255,255,.75); margin-bottom: 10px; line-height: 1.5; }
.footer-col address p a { color: inherit; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: .75rem; color: rgba(255,255,255,.65); }
.footer-terms {
  font-size: .75rem; color: rgba(255,255,255,.75);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--t);
}
.footer-terms:hover { color: var(--gold-light); }

/* ── Lightbox ────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 7000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
}
.lightbox.active { pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(6,5,4,.97); opacity: 0; }
.lb-img-wrap { position: relative; z-index: 1; max-width: 90vw; max-height: 88vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close {
  position: absolute; top: 24px; right: 28px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.15); }
.lb-close svg { width: 18px; height: 18px; }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lb-arrow:hover { background: rgba(255,255,255,.15); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-arrow svg { width: 20px; height: 20px; }
.lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .15em; z-index: 2;
}

/* ── Magnetic helper ─────────────────────────────────────────────── */
.magnetic { transform-style: preserve-3d; }

/* ── Responsive 1100px ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .booking-simple { flex-direction: column; align-items: flex-start; gap: 32px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { min-height: 0; }
  .about-img-frame { position: relative; top: 0; height: auto; aspect-ratio: 16/9; max-height: none; min-height: 0; }
  .about-img-deco { display: none; }
  .medellin-inner { grid-template-columns: 1fr; gap: 56px; }
  .places-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Responsive Tablet 769px–1024px ─────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Navbar */
  .navbar { padding: 0 28px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: .78rem; }
  .nav-logo img { height: 100px; width: 100px; margin-top: 40px; }
  .navbar.scrolled .nav-logo img { height: 64px; width: 64px; margin-top: 12px; }

  /* Hero */
  .hero-content { padding: 0 40px; text-align: center; }
  .hero-title { font-size: clamp(2.6rem, 6vw, 4rem); justify-content: center; white-space: normal; flex-wrap: wrap; width: 100%; }
  .hero-sub { font-size: 1rem; max-width: 560px; text-align: center; margin-left: auto; margin-right: auto; }
  .hero-eyebrow { text-align: center; }

  /* Booking */
  .booking-simple { flex-direction: column; align-items: flex-start; gap: 28px; }

  /* Rooms */
  .rooms-pin { height: auto; flex-direction: column; }
  .rooms-left {
    width: 100%; height: auto;
    padding: 56px 40px 36px;
    border-right: none; border-bottom: 1px solid var(--border);
  }
  .rooms-track {
    overflow-x: scroll; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 32px 0 40px;
    transform: none !important;
  }
  .rooms-track::-webkit-scrollbar { display: none; }
  .room-slide {
    scroll-snap-align: start;
    min-width: 380px; width: 380px;
    height: clamp(500px, 80vh, 720px);
    margin: 0 16px;
  }
  .room-slide:first-child { margin-left: 40px; }
  .rooms-mob-nav {
    display: flex; align-items: center;
    justify-content: center; gap: 20px;
    padding: 0 40px 48px; background: var(--cream);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px;
    grid-auto-rows: 220px;
  }
  .gallery-item { height: auto; }
  .gi-large { grid-column: span 2; grid-row: 1; height: auto; }

  /* About */
  .about-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-stats { gap: 28px; }

  /* Nearby */
  .places-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Medellín */
  .medellin-inner { grid-template-columns: 1fr; gap: 32px; }
  .medellin-cards { grid-template-columns: repeat(3, 1fr); }

  /* Panels */
  .metro-modes { grid-template-columns: 1fr 1fr; gap: 20px; }
  .resto-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .arte-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 2fr; gap: 48px; padding: 64px 40px 48px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ── Responsive 768px ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Cursor off on touch */
  .cursor-dot, .cursor-ring { display: none; }

  /* Navbar */
  .navbar { padding: 0 20px; height: 70px; }
  .nav-logo { margin-left: 0; }
  .nav-logo img {
    height: 110px;
    width: 110px;
    margin-top: 50px;
  }
  .navbar.scrolled .nav-logo img { height: 70px; width: 70px; margin-top: 16px; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding-top: 140px; }
  .hero-content { padding: 0 20px; text-align: center; }
  .hero-eyebrow { text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,.7); }
  .hero-rule { margin: 16px auto; }
  .hero-sub { font-size: .95rem; text-shadow: 0 2px 10px rgba(0,0,0,.75); }
  .hero-title { text-shadow: 0 3px 18px rgba(0,0,0,.65); }
  .hero-actions { flex-direction: column; align-items: center; gap: 14px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  /* En móvil reforzamos el degradado para que el texto sea legible sobre cualquier zona de la foto */
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(10,8,6,.72) 0%,
      rgba(10,8,6,.55) 30%,
      rgba(10,8,6,.62) 65%,
      rgba(10,8,6,.92) 100%);
  }
  /* Mostrar el lado izquierdo (logo K|A + fachada) en lugar del árbol del lado derecho */
  .hero-bg { background-position: 15% center; }

  /* Tours grid + servicios grid: 1 columna en móvil para que los textos respiren */
  .servicios-grid { grid-template-columns: 1fr; gap: 18px; }
  .tour-list { grid-template-columns: 1fr; gap: 6px; }

  /* Arte: 1 columna en móvil para que los textos sean legibles (como Gastronomía) */
  .arte-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Metro: imágenes más grandes proporcionalmente */
  .mm-icon { width: 140px; height: 110px; }

  /* Booking */
  .booking-simple { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* Rooms */
  .rooms-pin { flex-direction: column; height: auto; overflow: visible; }
  .rooms-left {
    width: 100%; height: auto;
    padding: 48px 20px 32px;
    border-right: none; border-bottom: 1px solid var(--border);
  }
  .rooms-left h2 { font-size: 2rem; }

  /* Carrusel móvil — scroll nativo con snap */
  .rooms-track {
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 0 32px;
    gap: 0;
    /* quita el transform de desktop */
    transform: none !important;
  }
  .rooms-track::-webkit-scrollbar { display: none; }

  .room-slide {
    scroll-snap-align: start;
    min-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
    height: auto;
    flex-direction: column;
    margin: 0 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    background: var(--white);
    overflow: hidden;
  }
  .room-slide + .room-slide { margin-left: 0; }

  .rs-img { flex: 0 0 220px; width: 100%; }
  .rs-content { overflow: hidden; padding: 20px; }

  .rooms-mob-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px 36px;
    background: var(--cream);
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 180px; }
  .gi-large { grid-column: span 2; height: 220px; }

  /* About */
  .about-inner { gap: 32px; }
  .about-img-frame { aspect-ratio: 4/3; }
  .about-stats { gap: 24px; }
  .a-stat strong { font-size: 2rem; }

  /* Nearby */
  .places-grid { grid-template-columns: 1fr; }

  /* Medellín */
  .medellin-inner { grid-template-columns: 1fr; }
  .medellin-cards { grid-template-columns: 1fr; gap: 16px; }
  .med-card { flex-direction: row; height: 100px; }
  .med-card-img { flex: 0 0 120px; height: 100%; }
  .med-stats { gap: 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 56px 20px 40px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { padding: 20px; flex-direction: column; text-align: center; gap: 8px; }
}

/* ── Responsive 480px ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nav-logo img { height: 90px; width: 90px; margin-top: 40px; }
  .navbar.scrolled .nav-logo img { height: 60px; width: 60px; margin-top: 12px; }

  .hero { padding-top: 120px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; height: 220px; }

  .footer-nav { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .med-stats { flex-direction: column; gap: 20px; }
  .ms-div { display: none; }

  .med-card { flex-direction: column; height: auto; }
  .med-card-img { flex: none; height: 160px; width: 100%; }

  .room-slide { width: 88vw; }

  /* Panels mobile */
  .metro-modes { grid-template-columns: 1fr; }
  .resto-grid { grid-template-columns: 1fr; }
  .arte-grid { grid-template-columns: 1fr; }
  .panel-scroll { padding: 80px 0 60px; }

  /* Metro: en móvil pequeño un poco más compactas para que el texto no se aplaste */
  .mm-icon { width: 120px; height: 95px; }
}

/* ── WhatsApp Button ─────────────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  text-decoration: none;
}
.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .06em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
