/* ========================================
   WINDSOR HOUSE — Premium Design System
   Dark, Cinematic, British Colonial
   ======================================== */

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

:root {
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --charcoal: #2A2A2A;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-muted: rgba(196, 162, 101, 0.15);
  --cream: #F2EDE4;
  --cream-dark: #E5DDD0;
  --text: #999;
  --text-light: #666;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-italiana: 'Italiana', serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black);
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--black); }
html::-webkit-scrollbar-thumb { background: var(--gold); }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }

::selection {
  background: var(--gold);
  color: var(--black);
}

/* --- Custom Cursor --- */
.hw-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s var(--ease);
  mix-blend-mode: difference;
}
.hw-cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,162,101,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}

/* --- Loader --- */
.hw-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}
.hw-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hw-loader-inner { text-align: center; }
.hw-loader-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 30px;
  opacity: 0.8;
}
.hw-loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
}
.hw-loader-progress {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadProgress 1.8s var(--ease-out) forwards;
}
@keyframes loadProgress { to { width: 100%; } }

/* --- Animations --- */
.hw-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hw-animate.hw-visible {
  opacity: 1;
  transform: translateY(0);
}

.hw-reveal {
  display: block;
  overflow: hidden;
}
.hw-reveal span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hw-hero.loaded .hw-reveal span { transform: translateY(0); }
.hw-hero.loaded .hw-reveal:nth-child(2) span { transition-delay: 0.15s; }

.hw-reveal-line {
  display: block;
  overflow: hidden;
}
.hw-reveal-line span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out);
}
.hw-hero.loaded .hw-reveal-line span { transform: translateY(0); }
.hw-hero.loaded .hw-reveal-line:nth-child(1) span { transition-delay: 0.5s; }
.hw-hero.loaded .hw-reveal-line:nth-child(2) span { transition-delay: 0.65s; }

/* --- Eyebrow --- */
.hw-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.hw-eyebrow--light { color: var(--gold-light); }

/* --- Button --- */
.hw-btn {
  display: inline-block;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.hw-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.hw-btn:hover { color: var(--black); }
.hw-btn:hover::before { transform: translateY(0); }
.hw-btn span, .hw-btn { position: relative; z-index: 1; }

/* --- Text Divider --- */
.hw-text-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ========================================
   HEADER
   ======================================== */
.hw-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 80px;
  mix-blend-mode: difference;
  transition: background 0.4s, mix-blend-mode 0s;
}
.hw-header.hw-header--solid {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}
.hw-logo {
  display: flex;
  align-items: center;
}
.hw-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.hw-header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hw-header-phone {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.hw-header-phone:hover { opacity: 1; }

/* Hamburger */
.hw-hamburger {
  width: 32px;
  height: 20px;
  background: none;
  border: none;
  position: relative;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hw-hamburger span {
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hw-hamburger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.hw-hamburger.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   FULLSCREEN MENU
   ======================================== */
.hw-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.hw-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.hw-menu-bg {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.15;
}
.hw-menu-nav {
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hw-menu-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
  display: flex;
  align-items: baseline;
  gap: 20px;
  transform: translateX(-20px);
}
.hw-menu-overlay.active .hw-menu-link {
  transform: translateX(0);
}
.hw-menu-link:hover {
  opacity: 1;
  color: var(--gold);
}
.hw-menu-link::before {
  content: attr(data-index);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.hw-menu-link:hover::before { opacity: 1; }

.hw-menu-footer {
  position: absolute;
  bottom: 50px;
  left: 100px;
  display: flex;
  gap: 60px;
  align-items: flex-end;
}
.hw-menu-social {
  display: flex;
  gap: 24px;
}
.hw-menu-social a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.3s;
}
.hw-menu-social a:hover { color: var(--gold); }
.hw-menu-email {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ========================================
   HERO
   ======================================== */
.hw-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hw-hero-slider { position: absolute; inset: 0; }
.hw-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hw-hero-slide.active { opacity: 1; }
.hw-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 12s ease forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.7) 100%
  );
  z-index: 1;
}

.hw-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.hw-hero-badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.8s 1s;
}
.hw-hero.loaded .hw-hero-badge { opacity: 1; }

.hw-hero h1 {
  font-family: var(--font-italiana);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.hw-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* Hero Bottom Bar */
.hw-hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 50px 40px;
}
.hw-hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hw-scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.6); }
  50% { opacity: 1; transform: scaleX(1); }
}
.hw-hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hw-hero-dots {
  display: flex;
  gap: 20px;
}
.hw-dot {
  background: none;
  border: none;
  padding: 8px 0;
  position: relative;
}
.hw-dot span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.hw-dot::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.hw-dot.active span { color: var(--white); }
.hw-dot.active::after { transform: scaleX(1); }

.hw-hero-reserve {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.hw-hero-reserve:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ========================================
   MARQUEE
   ======================================== */
.hw-marquee {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 20px 0;
}
.hw-marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hw-marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}
.hw-marquee-dot {
  width: 4px !important;
  height: 4px;
  background: var(--gold) !important;
  border-radius: 50%;
  font-size: 0 !important;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   ABOUT — Integrated Hotel Section
   ======================================== */
.hw-about {
  position: relative;
  padding: 140px 80px 120px;
  background:
    radial-gradient(ellipse 900px 700px at 20% 30%, rgba(196,162,101,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 80% 60%, rgba(196,162,101,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 90%, rgba(92,36,52,0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 40%, var(--black) 100%);
  overflow: hidden;
}
/* Decorative corners */
.hw-about-deco {
  position: absolute;
  pointer-events: none;
}
.hw-about-deco--tl {
  top: 50px; left: 50px;
  width: 180px; height: 180px;
  border-left: 1px solid rgba(196,162,101,0.08);
  border-top: 1px solid rgba(196,162,101,0.08);
}
.hw-about-deco--tl::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 28px; height: 2px;
  background: var(--gold);
  opacity: 0.4;
}
.hw-about-deco--tl::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 2px; height: 28px;
  background: var(--gold);
  opacity: 0.4;
}
.hw-about-deco--br {
  bottom: 50px; right: 50px;
  width: 180px; height: 180px;
  border-right: 1px solid rgba(196,162,101,0.08);
  border-bottom: 1px solid rgba(196,162,101,0.08);
}
.hw-about-deco--br::before {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 28px; height: 2px;
  background: var(--gold);
  opacity: 0.4;
}
.hw-about-deco--br::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 2px; height: 28px;
  background: var(--gold);
  opacity: 0.4;
}

/* --- Top: Logo | Statement | Divider | Description --- */
.hw-about-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr auto 1fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 80px;
}
.hw-about-logo {
  align-self: start;
  padding-top: 10px;
}
.hw-about-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(1.2);
}
.hw-about-statement {
  position: relative;
}
.hw-about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.hw-about-title em {
  font-style: italic;
  color: var(--gold);
}
.hw-about-divider-v {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.hw-about-desc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.hw-about-desc p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.9;
}

/* --- Images grid --- */
.hw-about-images {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 8px;
  height: 500px;
}
.hw-about-img-main,
.hw-about-img-side,
.hw-about-img-accent {
  overflow: hidden;
  position: relative;
}
.hw-about-img-main img,
.hw-about-img-side img,
.hw-about-img-accent img {
  transition: transform 0.8s var(--ease-out);
}
.hw-about-img-main:hover img,
.hw-about-img-side:hover img,
.hw-about-img-accent:hover img {
  transform: scale(1.04);
}
.hw-about-img-accent {
  display: flex;
  flex-direction: column;
}
.hw-about-img-accent img {
  flex: 1;
  min-height: 0;
}
.hw-about-img-caption {
  background: var(--black-card);
  padding: 24px;
}
.hw-about-img-caption p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* --- Stats --- */
.hw-about-stats {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hw-estat {
  text-align: center;
  padding: 48px 20px;
  position: relative;
}
.hw-estat + .hw-estat::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; height: 50%; width: 1px;
  background: rgba(255,255,255,0.06);
}
.hw-estat-num {
  font-family: var(--font-italiana);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.hw-estat-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hw-link-arrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}
.hw-link-arrow:hover { gap: 18px; }
.hw-link-arrow span {
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.hw-editorial-col-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 80px;
}
.hw-editorial-intro {
  position: relative;
}
.hw-editorial-number {
  font-family: var(--font-italiana);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.hw-editorial-intro h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.hw-editorial-intro p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.9;
}
.hw-editorial-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hw-editorial-img-side {
  height: 380px;
  overflow: hidden;
  position: relative;
}
.hw-editorial-img-side img {
  transition: transform 0.8s var(--ease-out);
}
.hw-editorial-img-side:hover img {
  transform: scale(1.03);
}
.hw-editorial-img-accent {
  height: 380px;
  overflow: hidden;
  position: relative;
}
.hw-editorial-img-accent img {
  transition: transform 0.8s var(--ease-out);
}
.hw-editorial-img-accent:hover img {
  transform: scale(1.03);
}

/* Stats strip integrado */
.hw-editorial-stats {
  max-width: 1400px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hw-estat {
  text-align: center;
  padding: 48px 20px;
  position: relative;
}
.hw-estat + .hw-estat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.hw-estat-num {
  font-family: var(--font-italiana);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.hw-estat-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ========================================
   STATS STRIP
   ======================================== */
.hw-stats-strip {
  padding: 80px 80px;
  background: var(--black-card);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hw-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.hw-stat {
  text-align: center;
}
.hw-stat-number {
  font-family: var(--font-italiana);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hw-stat-line {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px auto;
}
.hw-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ========================================
   CINEMATIC
   ======================================== */
.hw-cinematic {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.hw-cinematic-img {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
}
.hw-cinematic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: cinematicKenBurns 20s ease-in-out infinite alternate;
}
@keyframes cinematicKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}
.hw-cinematic-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.75) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.6) 100%);
}
.hw-cinematic::before {
  content: '';
  position: absolute;
  top: 50px; right: 50px;
  width: 160px; height: 160px;
  border-right: 1px solid rgba(196,162,101,0.12);
  border-top: 1px solid rgba(196,162,101,0.12);
  z-index: 2;
  pointer-events: none;
}
.hw-cinematic::after {
  content: '';
  position: absolute;
  bottom: 50px; left: 50px;
  width: 160px; height: 160px;
  border-left: 1px solid rgba(196,162,101,0.12);
  border-bottom: 1px solid rgba(196,162,101,0.12);
  z-index: 2;
  pointer-events: none;
}
.hw-cinematic-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}
.hw-cinematic-content h2 {
  font-family: var(--font-italiana);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hw-cinematic-sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ========================================
   EXPERIENCES — Bento Grid
   ======================================== */
.hw-exp {
  padding: 140px 50px;
  background:
    radial-gradient(ellipse 600px 500px at top right, rgba(196,162,101,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at top left, rgba(92,36,52,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--black-card) 0%, var(--black-soft) 40%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
/* Líneas decorativas esquina superior derecha */
.hw-exp::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 50px;
  width: 180px;
  height: 180px;
  border-right: 1px solid rgba(196,162,101,0.1);
  border-top: 1px solid rgba(196,162,101,0.1);
  pointer-events: none;
}
.hw-exp::after {
  content: '';
  position: absolute;
  top: 80px;
  right: 70px;
  width: 120px;
  height: 120px;
  border-right: 1px solid rgba(196,162,101,0.06);
  border-top: 1px solid rgba(196,162,101,0.06);
  pointer-events: none;
}
/* Línea decorativa esquina superior izquierda */
.hw-exp-head::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50px;
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, rgba(196,162,101,0.12), transparent);
  pointer-events: none;
}
.hw-exp-head::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50px;
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom, rgba(196,162,101,0.12), transparent);
  pointer-events: none;
}
.hw-exp-watermark {
  position: absolute;
  left: -60px;
  bottom: -40px;
  width: 400px;
  height: 400px;
  opacity: 0.025;
  pointer-events: none;
}
.hw-exp-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hw-exp-head {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
  position: static;
}
.hw-exp-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

/* Bento layout */
.hw-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Items grandes ocupan 2 columnas */
.hw-bento-big {
  grid-column: span 2;
}

.hw-bento-item {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}
.hw-bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.hw-bento-item:hover img {
  transform: scale(1.06);
}

.hw-bento-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.05) 100%
  );
  z-index: 1;
  transition: background 0.5s;
}
.hw-bento-item:hover .hw-bento-grad {
  background: linear-gradient(
    to top,
    rgba(62,22,35,0.9) 0%,
    rgba(62,22,35,0.2) 50%,
    rgba(62,22,35,0.05) 100%
  );
}

.hw-bento-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
}
.hw-bento-tag {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,162,101,0.3);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.hw-bento-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}
.hw-bento-big .hw-bento-info h3 {
  font-family: var(--font-italiana);
  font-size: 2.4rem;
}
.hw-bento-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 360px;
}

/* ========================================
   EVENTOS
   ======================================== */
.hw-eventos {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hw-eventos-bg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
}
.hw-eventos-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: eventosKenBurns 18s ease-in-out infinite alternate;
}
@keyframes eventosKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(1%, -0.5%); }
}
.hw-eventos-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
}
.hw-eventos-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 40px;
}

/* ---- Luxury ornamental frame ---- */
.hw-eventos-frame {
  position: relative;
  max-width: 720px;
  width: 100%;
  padding: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(196,162,101,0.3) 40%, rgba(196,162,101,0.1) 50%, rgba(196,162,101,0.3) 60%, var(--gold) 100%);
}
/* Corner ornaments */
.hw-eventos-frame::before,
.hw-eventos-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.hw-eventos-frame::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}
.hw-eventos-frame::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

.hw-eventos-frame-inner {
  position: relative;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 55px;
  text-align: center;
}
/* Inner corner ornaments */
.hw-eventos-frame-inner::before,
.hw-eventos-frame-inner::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.hw-eventos-frame-inner::before {
  top: -8px;
  right: -8px;
  border-left: none;
  border-bottom: none;
}
.hw-eventos-frame-inner::after {
  bottom: -8px;
  left: -8px;
  border-right: none;
  border-top: none;
}

/* ---- Entrance animations ---- */
.hw-eventos-frame {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.hw-eventos-frame.hw-visible {
  opacity: 1;
  transform: scale(1);
}
.hw-eventos-frame.hw-visible .hw-eventos-badge {
  animation: fadeInDown 0.8s var(--ease-out) 0.3s both;
}
.hw-eventos-frame.hw-visible h2 {
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}
.hw-eventos-frame.hw-visible .hw-eventos-features {
  animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}
.hw-eventos-frame.hw-visible .hw-btn {
  animation: fadeInUp 0.6s var(--ease-out) 0.9s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Frame corner glow on visible */
.hw-eventos-frame.hw-visible::before,
.hw-eventos-frame.hw-visible::after {
  animation: cornerGlow 2s ease-in-out 0.4s both;
}
@keyframes cornerGlow {
  0% { opacity: 0; }
  50% { opacity: 1; border-color: var(--gold-light); }
  100% { opacity: 1; border-color: var(--gold); }
}

/* Shimmer line on overlay */
.hw-eventos-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.04), transparent);
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* ---- Badge with decorative lines ---- */
.hw-eventos-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.2rem;
}
.hw-eventos-badge-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hw-eventos-badge .hw-eyebrow {
  margin-bottom: 0;
}

/* ---- Text ---- */
.hw-eventos-frame-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}
.hw-eventos-frame-inner p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Features row ---- */
.hw-eventos-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.8rem;
  flex-wrap: nowrap;
}
.hw-eventos-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.hw-eventos-feat-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196,162,101,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.hw-eventos-feat:hover .hw-eventos-feat-icon {
  border-color: var(--gold);
  background: var(--gold-muted);
}
.hw-eventos-feat-icon i {
  color: var(--gold);
  font-size: 1rem;
}
.hw-eventos-feat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hw-eventos-feat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(196,162,101,0.3), transparent);
  flex-shrink: 0;
}

/* ========================================
   TOUR 360
   ======================================== */
.hw-tour360 {
  padding: 120px 80px;
  background: var(--black-card);
}
.hw-tour360-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.hw-tour360-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hw-tour360-text p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.hw-tour360-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,162,101,0.15);
  aspect-ratio: 16/10;
}
.hw-tour360-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.hw-tour360-frame:hover img {
  transform: scale(1.04);
}
.hw-tour360-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  z-index: 1;
}
.hw-tour360-play i {
  font-size: 3rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.hw-tour360-play span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hw-tour360-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.35);
  transition: background 0.4s;
}
.hw-tour360-frame:hover::after {
  background: rgba(10,10,10,0.15);
}

/* ========================================
   ROOMS — Editorial showcase
   ======================================== */
.hw-rooms {
  padding: 0 0 80px;
}
.hw-rooms-intro {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 40px;
}
.hw-rooms-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hw-rooms-intro p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}

.hw-room {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 70vh;
}
.hw-room--reverse {
  grid-template-columns: 1fr 1.3fr;
}
.hw-room--reverse .hw-room-img { order: 2; }
.hw-room--reverse .hw-room-info { order: 1; }

.hw-room-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hw-room-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--black-soft);
}
.hw-room--reverse .hw-room-info {
  background: var(--black-card);
}
.hw-room-type {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.hw-room-info h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

/* Slide-in animations */
.hw-room .hw-room-img {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out);
}
.hw-room .hw-room-info {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s var(--ease-out) 0.15s, transform 1.2s var(--ease-out) 0.15s;
}
.hw-room--reverse .hw-room-img {
  transform: translateX(80px);
}
.hw-room--reverse .hw-room-info {
  transform: translateX(-80px);
}
.hw-room.hw-room-visible .hw-room-img,
.hw-room.hw-room-visible .hw-room-info {
  opacity: 1;
  transform: translateX(0);
}
.hw-room-info p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.hw-room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
}
.hw-room-amenities span {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hw-room-amenities i {
  color: var(--gold);
  font-size: 0.85rem;
}
.hw-room-price {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hw-price-from {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}
.hw-price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
}
.hw-price-value small {
  font-size: 0.7rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

.hw-rooms-cta {
  text-align: center;
  margin-top: 80px;
}

/* ========================================
   GALLERY
   ======================================== */
.hw-gallery {
  padding: 60px 50px;
  background: var(--black-soft);
}
.hw-gallery-header {
  margin-bottom: 60px;
  text-align: center;
}
.hw-gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.hw-gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  columns: 4;
  column-gap: 8px;
}
.hw-gal-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}
.hw-gal-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.hw-gal-item:hover img { transform: scale(1.04); }
.hw-gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.3);
  opacity: 0;
  transition: opacity 0.4s;
}
.hw-gal-item:hover::after { opacity: 1; }

/* ========================================
   UBICACIÓN
   ======================================== */
.hw-ubicacion {
  position: relative;
  height: 80vh;
  min-height: 550px;
  background: var(--black);
}
.hw-ubi-map {
  position: absolute;
  inset: 0;
}
.hw-ubi-map iframe {
  width: 100%;
  height: 100%;
}
.hw-ubi-card {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196,162,101,0.12);
  padding: 44px 48px;
  max-width: 420px;
}
.hw-ubi-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.hw-ubi-card > p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hw-ubi-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hw-ubi-meta span {
  font-size: 0.75rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hw-ubi-meta i {
  color: var(--gold);
  font-size: 0.8rem;
}
.hw-ubi-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hw-ubi-contacts a {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.hw-ubi-contacts a:hover { color: var(--white); }
.hw-ubi-contacts i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.hw-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hw-footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hw-footer-brand {
  display: flex;
  align-items: center;
}
.hw-footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.hw-footer-nav {
  display: flex;
  gap: 32px;
}
.hw-footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.hw-footer-nav a:hover { color: var(--gold); }

.hw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.hw-footer-bottom p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.hw-footer-bottom strong { color: var(--gold); }
.hw-footer-smart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}
.hw-footer-smart:hover { opacity: 0.7; }
.hw-footer-smart img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* ========================================
   WHATSAPP
   ======================================== */
.hw-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  z-index: 90;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
  transition: transform 0.3s;
}
.hw-wa:hover { transform: scale(1.1); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hw-cursor, .hw-cursor-follower { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

  .hw-header { padding: 0 24px; height: 70px; }
  .hw-header-phone { display: none; }
  .hw-logo-full { display: none; }

  .hw-menu-nav { padding: 0 40px; }
  .hw-menu-link { font-size: 2.2rem; }
  .hw-menu-footer { left: 40px; bottom: 30px; flex-direction: column; gap: 16px; }
  .hw-menu-bg { width: 100%; opacity: 0.08; }

  .hw-hero h1 { font-size: 4.5rem; }
  .hw-hero-bottom { padding: 0 24px 30px; }
  .hw-hero-scroll { display: none; }
  .hw-hero-reserve { display: none; }

  .hw-about { padding: 100px 40px 80px; }
  .hw-about-top { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hw-about-logo { display: flex; justify-content: center; }
  .hw-about-logo img { width: 120px; }
  .hw-about-divider-v { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0 auto; }
  .hw-about-desc .hw-text-divider { margin: 1.5rem auto; }
  .hw-about-images { grid-template-columns: 1fr 1fr; height: 400px; }
  .hw-about-img-accent { grid-column: span 2; height: auto; flex-direction: row; }
  .hw-about-img-accent img { width: 50%; height: 200px; flex: none; }
  .hw-about-img-caption { flex: 1; display: flex; flex-direction: column; justify-content: center; }
  .hw-about-stats { grid-template-columns: repeat(2, 1fr); margin-top: 50px; }
  .hw-estat { padding: 36px 16px; }
  .hw-estat-num { font-size: 2.5rem; }
  .hw-about-deco--tl, .hw-about-deco--br { display: none; }

  .hw-cinematic { height: 60vh; }
  .hw-cinematic::before, .hw-cinematic::after { display: none; }

  .hw-exp { padding: 100px 24px; }
  .hw-exp::before, .hw-exp::after, .hw-exp-head::before, .hw-exp-head::after { display: none; }
  .hw-bento { grid-template-columns: 1fr 1fr; }
  .hw-bento-big { grid-column: span 2; }
  .hw-bento-item { height: 340px; }

  .hw-eventos-content { padding: 80px 24px; }
  .hw-eventos-frame { max-width: 600px; }
  .hw-eventos-frame-inner { padding: 50px 36px; }
  .hw-eventos-feat { padding: 0 14px; }
  .hw-eventos-frame::before,
  .hw-eventos-frame::after,
  .hw-eventos-frame-inner::before,
  .hw-eventos-frame-inner::after { width: 30px; height: 30px; }
  .hw-tour360 { padding: 80px 40px; }
  .hw-tour360-inner { grid-template-columns: 1fr; }

  .hw-rooms { padding: 100px 0; }
  .hw-rooms-intro { padding: 0 40px; }
  .hw-room { grid-template-columns: 1fr; }
  .hw-room--reverse { grid-template-columns: 1fr; }
  .hw-room--reverse .hw-room-img { order: 1; }
  .hw-room--reverse .hw-room-info { order: 2; }
  .hw-room-img { min-height: 50vh; }
  .hw-room-info { padding: 60px 40px; }

  .hw-gallery { padding: 100px 24px; }
  .hw-gallery-grid { columns: 2; }

  .hw-ubi-card { left: 20px; right: 20px; bottom: 20px; max-width: none; padding: 30px; }

  .hw-footer-top { flex-direction: column; gap: 30px; text-align: center; padding: 50px 24px; }
  .hw-footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .hw-footer-bottom { flex-direction: column; align-items: center; gap: 6px; padding: 16px 24px; }
}

@media (max-width: 640px) {
  .hw-hero h1 { font-size: 3.2rem; }
  .hw-hero-badge { font-size: 0.5rem; letter-spacing: 0.3em; }
  .hw-hero-dots { gap: 14px; }

  .hw-marquee-track span { font-size: 0.8rem; }

  .hw-about { padding: 60px 20px 60px; }
  .hw-about-desc .hw-text-divider { margin: 1.5rem auto; }
  .hw-about-logo img { width: 90px; }
  .hw-about-images { grid-template-columns: 1fr; height: auto; }
  .hw-about-img-main { height: 300px; }
  .hw-about-img-side { height: 250px; }
  .hw-about-img-accent { grid-column: span 1; flex-direction: column; }
  .hw-about-img-accent img { width: 100%; height: 250px; }
  .hw-about-stats { grid-template-columns: repeat(2, 1fr); }
  .hw-estat { padding: 30px 12px; }
  .hw-estat-num { font-size: 2.2rem; }

  .hw-cinematic-content h2 { font-size: 2.5rem; }

  .hw-exp { padding: 80px 16px; }
  .hw-bento { grid-template-columns: 1fr; }
  .hw-bento-big { grid-column: span 1; }
  .hw-bento-item { height: 300px; }
  .hw-bento-big .hw-bento-info h3 { font-size: 1.8rem; }

  .hw-room-label { font-size: 3rem; }
  .hw-room-info h3 { font-size: 1.8rem; }

  .hw-gallery-grid { columns: 1; }

  .hw-eventos { min-height: 90vh; }
  .hw-eventos-content { padding: 60px 16px; }
  .hw-eventos-frame-inner { padding: 40px 24px; }
  .hw-eventos-frame::before,
  .hw-eventos-frame::after,
  .hw-eventos-frame-inner::before,
  .hw-eventos-frame-inner::after { width: 24px; height: 24px; }
  .hw-eventos-features { flex-direction: column; gap: 0; }
  .hw-eventos-feat { flex-direction: row; padding: 12px 0; }
  .hw-eventos-feat-divider { width: 80%; height: 1px; background: linear-gradient(90deg, transparent, rgba(196,162,101,0.2), transparent); }
  .hw-eventos-badge-line { width: 30px; }
  .hw-eventos-frame-inner h2 { font-size: 2rem; }
}
