/* =========================================================
   HOTEL PLAZA · Punta Arenas
   Estética: elegancia austral patagónica
   ========================================================= */

:root {
  /* Paleta */
  --c-night:    #16242e;  /* azul-verde profundo del estrecho */
  --c-deep:     #1f3540;
  --c-stone:    #5e6b6e;  /* gris piedra */
  --c-mist:     #aeb8b6;
  --c-cloud:    #e8e6df;  /* niebla cálida */
  --c-paper:    #f6f4ee;  /* fondo papel */
  --c-amber:    #c08a3e;  /* dorado madera */
  --c-amber-dk: #a3722f;
  --c-text:     #20303a;
  --c-text-soft:#4a5a62;

  /* Tipografía */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;

  /* Medidas */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-paper);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ===== Tipografía base ===== */
h1,h2,h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }

.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber-dk);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 1.4rem;
  color: var(--c-night);
}

/* ===== Botones ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--c-amber);
  color: #fff;
}
.btn-primary:hover { background: #d4a050; transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(160,114,47,.7); }
.btn-outline {
  border-color: var(--c-night);
  color: var(--c-night);
}
.btn-outline:hover { background: var(--c-night); color: var(--c-paper); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(246,244,238,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header-right { display: flex; align-items: center; gap: 2rem; }
.header-wa-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: #25D366; color: #fff;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; letter-spacing: 0.04em; font-weight: 500;
  transition: background .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.header-wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.brand { display: flex; align-items: center; gap: 0.7rem; color: #fff; transition: color .4s var(--ease); }
.brand-logo { height: 44px; width: auto; display: block; }
.scrolled .brand-logo { filter: invert(1) brightness(0); }
.scrolled .brand { color: var(--c-night); }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.brand-name { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.02em; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
  transition: color .3s var(--ease);
}
.scrolled .nav a { color: var(--c-text); }
.nav a:not(.nav-cta)::after {
  content:""; position:absolute; left:0; bottom:-5px; height:1px; width:0;
  background: var(--c-amber); transition: width .35s var(--ease);
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav a:hover { color: var(--c-amber); }
.nav-cta {
  border: 1px solid currentColor;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--c-amber); border-color: var(--c-amber); color: #fff !important; }

.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s var(--ease); }
.scrolled .nav-toggle span { background: var(--c-night); }

/* ===== Placeholders ===== */
[data-placeholder] {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(94,107,110,.07) 0 12px, rgba(94,107,110,.13) 12px 24px),
    var(--c-cloud);
  border: 1px dashed var(--c-stone);
  display: grid; place-items: center;
  min-height: 160px;
  color: var(--c-stone);
  border-radius: var(--radius);
}
[data-placeholder]::after {
  content: attr(data-placeholder);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  text-align: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: url('../images/hotel_fachada_color.webp') center 30% / cover no-repeat;
}
.hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,32,42,.55), rgba(20,32,42,.32) 50%, rgba(20,32,42,.68)); }
.hero-content { position: relative; max-width: 760px; text-align: center; margin-inline: auto; }
.hero-eyebrow {
  font-size: 0.85rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c-amber); margin-bottom: 1.4rem; font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  opacity: 0; animation: fadeUp .9s var(--ease) .2s forwards;
}
.hero-title {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  opacity: 0; animation: fadeUp 1s var(--ease) .35s forwards;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 300;
  color: var(--c-cloud);
  margin-bottom: 2.4rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
  opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards;
}
.hero .btn { opacity: 0; animation: fadeUp 1s var(--ease) .65s forwards; }
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 0; right: 0;
  width: fit-content; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.85);
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  opacity: 0; animation: fadeUp 1s var(--ease) .9s forwards;
}
.hero-scroll-chevron {
  width: 11px; height: 11px;
  border-right: 1.5px solid rgba(255,255,255,.85);
  border-bottom: 1.5px solid rgba(255,255,255,.85);
  transform: rotate(45deg);
  animation: chevronBounce 1.8s ease-in-out infinite;
}

@keyframes fadeUp { from { opacity:0; transform: translateY(24px);} to {opacity:1; transform:none;} }
@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translateY(-3px); opacity: .5; }
  50%       { transform: rotate(45deg) translateY(3px);  opacity: 1; }
}

/* ===== About ===== */
.about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.about .section-title { font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: 1rem; }
.about-intro { margin-bottom: 2rem; text-align: center; }
.about-lead { font-size: 1rem; color: var(--c-text-soft); }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature {
  background: #fff;
  padding: 2.4rem 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--c-amber);
  box-shadow: 0 20px 40px -28px rgba(22,36,46,.35);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--c-night); }
.feature p { font-size: 0.92rem; color: var(--c-text-soft); line-height: 1.65; }

/* ===== Marquee ===== */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.about-marquee {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-top: 4.5rem;
  overflow: hidden;
}
.about-marquee::before,
.about-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.about-marquee::before { left: 0;  background: linear-gradient(to right, var(--c-paper), transparent); }
.about-marquee::after  { right: 0; background: linear-gradient(to left,  var(--c-paper), transparent); }

.marquee-track { overflow: hidden; }
.marquee-track:hover .marquee-reel { animation-play-state: paused; }

.marquee-reel {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 96s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  width: 300px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-reel { animation: none; }
  .marquee-track { overflow-x: auto; }
  .slideshow img { transition: none; }
  .hero-scroll-chevron { animation: none; opacity: 1; transform: rotate(45deg); }
}

/* ===== Services ===== */
.services { background: var(--c-night); color: var(--c-cloud); }
.services .section-title { color: #fff; }
.services .section-eyebrow { color: var(--c-amber); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.services-text p { color: var(--c-mist); }
.services-list { margin-top: 2rem; display: grid; gap: 1rem; }
.services-list li {
  position: relative; padding-left: 1.8rem; color: var(--c-cloud);
}
.services-list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; background: var(--c-amber); border-radius: 50%;
}
.room-types-label { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-amber-dk); font-weight: 500; margin-top: 2rem; margin-bottom: 0.75rem; }
.room-chips { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; max-width: 420px; }
.room-chip { font-size: 0.88rem; padding: 0.4rem 0.9rem; border: 1px solid var(--c-amber); border-radius: 999px; color: var(--c-cloud); letter-spacing: 0.04em; text-align: center; }
.services-media { }
.slideshow {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
}
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slideshow img.active { opacity: 1; }

/* ===== Galería ===== */

/* ===== Testimonios ===== */
.testimonials { background: var(--c-cloud); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.testimonial {
  background: var(--c-paper);
  padding: 2.4rem 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--c-amber);
  box-shadow: 0 20px 40px -28px rgba(22,36,46,.35);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  position: relative;
}
.testimonial blockquote::before {
  content: "“"; font-size: 3rem; color: var(--c-amber); opacity: .35;
  position: absolute; top: -1.4rem; left: -0.6rem; font-family: var(--font-display);
}
.testimonial figcaption { font-weight: 500; letter-spacing: 0.04em; color: var(--c-night); }

/* ===== Quote band ===== */
.quote-band { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: clamp(3rem, 6vw, 5rem) 0; color:#fff; text-align:center; overflow:hidden; }
.quote-media {
  position:absolute; inset:0; border:none; border-radius:0;
  background: url('../images/torres_fondo.webp') center/cover no-repeat;
}
.quote-overlay { position:absolute; inset:0; background: rgba(15,28,36,.55); }
.quote-content { position: relative; max-width: 820px; }
.quote-content blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2.4vw, 2rem); font-weight: 300; line-height: 1.3; margin-bottom: 1.2rem;
  white-space: nowrap;
}
.quote-content cite { font-style: normal; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; color: var(--c-amber); }

/* ===== Contacto ===== */
.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: stretch; }
.contact-lead { color: var(--c-text-soft); margin-bottom: 1.6rem; max-width: 40ch; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2.5rem; margin-bottom: 1.6rem; }
.contact-details li { display: grid; gap: 0.2rem; }
.contact-label { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-amber-dk); font-weight: 500; }
.contact-value { font-size: 1.1rem; color: var(--c-text); transition: color .3s var(--ease); }
a.contact-value:hover { color: var(--c-amber-dk); }
.contact-actions { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: .75rem 2.5rem; }
.contact-actions .btn { display: flex; align-items: center; justify-content: center; gap: 0.45rem; text-align: center; height: 3.2rem; padding-left: 0.6rem; padding-right: 0.6rem; min-width: 0; overflow: hidden; }
.contact-actions .btn span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-actions .btn svg { flex-shrink: 0; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; font-size: 0.7rem; }
.btn-instagram:hover { opacity: .88; transform: translateY(-2px); }
.contact-map { height: 100%; min-height: 220px; border-radius: var(--radius); overflow: hidden; }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 220px; }

/* ===== Language Switcher ===== */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: none; cursor: pointer;
  color: #fff; font-family: var(--font-body); font-size: 0.82rem;
  letter-spacing: 0.08em; padding: 0.3rem 0.4rem;
  transition: color .3s var(--ease);
}
.lang-btn:hover { color: var(--c-amber); }
.scrolled .lang-btn { color: var(--c-text); }
.scrolled .lang-btn:hover { color: var(--c-amber-dk); }
.lang-chevron { transition: transform .22s var(--ease); flex-shrink: 0; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 0.6rem); right: 0;
  background: var(--c-night); border: 1px solid rgba(255,255,255,.12);
  border-radius: 0.5rem; padding: 0.35rem 0;
  min-width: 148px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 200;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: none; }
.lang-option {
  padding: 0.5rem 1rem; font-size: 0.86rem; cursor: pointer;
  color: var(--c-cloud); transition: background .15s, color .15s;
  white-space: nowrap;
}
.lang-option:hover { background: rgba(255,255,255,.07); color: #fff; }
.lang-option.active { color: var(--c-amber); }

/* ===== Footer ===== */
.site-footer { background: var(--c-night); color: var(--c-mist); }

.footer-columns {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem); padding-top: 4rem; padding-bottom: 3rem;
}
.footer-col--brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col--brand .footer-logo { height: 126px; width: auto; display: block; margin-bottom: 1.4rem; }
.footer-subtitle { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-stone); margin-bottom: 1rem; font-weight: 500; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.88rem; color: var(--c-stone); line-height: 1.55; border-top: 0.5px solid rgba(255,255,255,.15); padding-top: 0.9rem; }
.footer-col-title { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-cloud); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-links a { font-size: 0.88rem; color: var(--c-stone); transition: color .25s var(--ease); }
.footer-col-links a:hover { color: var(--c-cloud); }
.footer-address { font-style: normal; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.88rem; color: var(--c-stone); }
.footer-address a { color: var(--c-stone); transition: color .25s var(--ease); }
.footer-address a:hover { color: var(--c-cloud); }

.footer-social-bar { border-top: 0.5px solid rgba(255,255,255,.1); padding: 1.1rem 0; }
.footer-social-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-follow { font-size: 0.84rem; color: var(--c-stone); letter-spacing: 0.03em; }
.footer-social-right { display: flex; align-items: center; gap: 1rem; }
.footer-find { font-size: 0.82rem; color: var(--c-stone); }
.footer-social-icons { display: flex; gap: 0.55rem; align-items: center; }
.footer-social-icon { display: block; transition: transform .2s var(--ease), opacity .2s; line-height: 0; }
.footer-social-icon:hover { transform: translateY(-2px); opacity: .85; }

.footer-bottom-bar { border-top: 0.5px solid rgba(255,255,255,.1); padding: 1.1rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: var(--c-stone); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--c-stone); transition: color .25s var(--ease); }
.footer-legal a:hover { color: var(--c-cloud); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */

/* — 1024px: tablet landscape — */
@media (max-width: 1024px) {
  .header-right { gap: 1.5rem; }
  .nav { gap: 1.5rem; }
}

/* — 768px: tablet portrait — */
@media (max-width: 768px) {
  .header-right { gap: 0.75rem; }
  .nav { gap: 1rem; }
  .header-wa-btn { padding: 0.4rem 0.6rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about, .quote-band, .contact { min-height: auto; }
  .slideshow { height: 320px; }
  .contact-map, .contact-map iframe { min-height: 320px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 3rem; }
}

/* — 640px: mobile grande — */
@media (max-width: 640px) {
  .nav {
    position: fixed; top: var(--header-h); right: 0;
    width: min(78vw, 320px); height: calc(100vh - var(--header-h));
    background: var(--c-night);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1.5rem var(--gutter);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { color: var(--c-cloud); width: 100%; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .scrolled .nav a { color: var(--c-cloud); }
  .nav-cta { border: none; padding: 0.9rem 0; }
  .nav-toggle { display: flex; }
  .header-right { margin-left: auto; gap: 0.6rem; }
  .features, .testimonial-grid { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .quote-content blockquote { white-space: normal; font-size: clamp(1.2rem, 4.5vw, 1.8rem); }
  .footer-columns { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .marquee-item { width: 220px; height: 130px; }
  .about-marquee::before, .about-marquee::after { width: 40px; }
  .room-chips { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

/* — 480px: mobile estándar — */
@media (max-width: 480px) {
  .header-wa-text { display: none; }
  .header-wa-btn { padding: 0.4rem 0.5rem; }
  .contact-actions { grid-template-columns: 1fr; gap: 0.75rem; }
  .contact-actions .btn { width: 100%; }
  .footer-social-inner { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
  .footer-social-right { justify-content: center; }
}

/* — 360px: mobile pequeño — */
@media (max-width: 360px) {
  .brand-logo { height: 38px; }
  .room-chips { grid-template-columns: 1fr; }
  .section-eyebrow { letter-spacing: 0.12em; }
  .footer-subtitle { letter-spacing: 0.1em; }
  .marquee-item { width: 180px; height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
