:root {
  --ink: #14100b;
  --ink-2: #1c1610;
  --ink-3: #2a211a;
  --paper: #f8f4ec;
  --paper-2: #f0e9dd;
  --gold: #c9a044;
  --gold-2: #e4b248;
  --wine: #7a1f2b;
  --navy: #14283f;
  --muted: #877a6b;
  --line: rgba(20, 16, 11, 0.12);
  --white: #ffffff;
  --wa: #25d366;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(20, 16, 11, 0.16);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-outline.dark { border-color: rgba(20, 16, 11, 0.5); color: var(--ink); }
.btn-outline.dark:hover { background: var(--ink); color: #fff; }
.btn-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-dark:hover { background: var(--ink); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fae53; transform: translateY(-2px); }
.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.btn-instagram:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-sm { padding: 11px 20px; font-size: 11.5px; letter-spacing: 2px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(20, 16, 11, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  color: #fff;
}
.site-header.scrolled {
  background: rgba(20, 16, 11, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(228, 178, 72, 0.75);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--gold-2);
}
.brand-name { font-family: var(--serif); font-size: 23px; letter-spacing: 4px; text-transform: uppercase; }
.brand-name small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 3.5px; color: var(--gold-2); text-transform: uppercase; font-weight: 600; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 12.5px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 0; position: relative; opacity: 0.85; transition: opacity 0.3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold-2); transition: width 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 13px; letter-spacing: 1px; color: var(--gold-2); font-weight: 600; white-space: nowrap; }
.header-phone:hover { color: #fff; }
.h-icon {
  width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid; place-items: center; transition: all 0.3s; color: #fff;
}
.h-icon:hover { background: var(--gold); border-color: var(--gold); }
.h-icon svg { width: 19px; height: 19px; }
.header-route { display: inline-flex; }
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255, 255, 255, 0.4); color: #fff;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 3px auto; transition: 0.3s; }

/* ---------- Video slider ---------- */
.vslider {
  position: relative; height: 100vh; min-height: 640px; color: #fff; overflow: hidden;
  background: var(--ink);
}
.vslide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease;
  display: flex; align-items: center; z-index: 0;
}
.vslide.active { opacity: 1; visibility: visible; z-index: 1; }
.vslide video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vslide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(10, 8, 5, 0.92) 0%, rgba(10, 8, 5, 0.6) 50%, rgba(10, 8, 5, 0.4) 100%);
}
.vslide-content { position: relative; z-index: 2; padding: 150px 0 30px; max-width: 780px; }
.vslider h1 { font-size: clamp(38px, 5vw, 68px); margin-bottom: 22px; }
.vslider h1 em { font-style: italic; color: var(--gold-2); }
.vslider .hero-kicker { margin-bottom: 18px; }
.vslider p.lead { font-size: 17.5px; opacity: 0.85; max-width: 560px; margin-bottom: 38px; font-weight: 300; }

.hero-kicker {
  font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-2);
  font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; gap: 16px;
}
.hero-kicker::before { content: ""; width: 44px; height: 1px; background: var(--gold); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  z-index: 5; width: min(1200px, 92%);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(to top, rgba(10, 8, 5, 0.55), transparent);
}
.hero-stats div { padding: 24px 18px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.hero-stats div:first-child { border-left: none; }
.hero-stats strong { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--gold-2); display: block; line-height: 1; }
.hero-stats span { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.75; }

.vslide-brand {
  position: absolute; top: 110px; right: 28px; z-index: 3;
  font-family: var(--serif); letter-spacing: 3px; text-transform: uppercase; font-size: 14px;
  color: rgba(255, 255, 255, 0.85); border: 1px solid rgba(255, 255, 255, 0.35); padding: 10px 18px;
}
.vnav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 52px; height: 52px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff; font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: all 0.3s; padding: 0 0 4px 0;
}
.vnav:hover { background: var(--gold); border-color: var(--gold); }
.vnav.prev { left: 26px; }
.vnav.next { right: 26px; }
.vdots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; gap: 10px;
}
.vdots button {
  width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.vdots button.active { background: var(--gold); border-color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 22px; right: 30px; transform: none;
  z-index: 5; color: rgba(255, 255, 255, 0.6); font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(to bottom, var(--gold-2), transparent); animation: drip 2s infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink-2); color: rgba(255, 255, 255, 0.85); overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--serif); font-size: 20px; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 36px; display: flex; align-items: center; gap: 36px; white-space: nowrap;
}
.marquee span::after { content: "\2726"; color: var(--gold); font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section.dark { background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 160%); color: #fff; }
.section.muted { background: var(--paper-2); }
.section-head { max-width: 660px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-size: 11.5px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  font-weight: 600; display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.section-head.center .kicker { justify-content: center; }
.kicker::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 16.5px; }
.section.dark .section-head p { color: rgba(255, 255, 255, 0.6); }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .img-frame { position: relative; }
.split .img-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split .img-frame .frame-border { position: absolute; inset: 22px; border: 1px solid rgba(255, 255, 255, 0.7); pointer-events: none; }
.split .img-frame .badge {
  position: absolute; bottom: -26px; right: -26px; background: var(--gold); color: #fff;
  padding: 26px 30px; text-align: center; min-width: 170px;
}
.split .img-frame .badge strong { font-family: var(--serif); font-size: 40px; display: block; line-height: 1; }
.split .img-frame .badge span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.split .content h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 22px; }
.split .content p { color: var(--muted); margin-bottom: 18px; }
.split .content p strong { color: var(--ink); }
.split .content ul { margin: 20px 0 30px; display: grid; gap: 12px; }
.split .content li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.split .content li::before { content: "\2713"; color: var(--gold); font-weight: 700; }

/* ---------- Room tabs ---------- */
.room-tabs {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px;
}
.room-tab {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 28px; cursor: pointer; transition: all 0.3s ease;
}
.room-tab:hover { border-color: var(--gold); color: var(--ink); }
.room-tab.active {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

.room-panel {
  display: none;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.room-panel.active { display: grid; animation: fadeUp 0.6s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.room-gallery .room-main {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}
.room-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.room-thumbs img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; cursor: pointer; opacity: 0.85; transition: opacity 0.3s, transform 0.3s; }
.room-thumbs img:hover { opacity: 1; transform: translateY(-3px); }
.room-thumbs img.active-thumb { outline: 2px solid var(--gold); opacity: 1; }

.room-info h3 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 6px; }
.room-info h3 small {
  display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 6px;
}
.room-info > p { color: var(--muted); margin: 20px 0 24px; font-size: 15.5px; }
.room-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
.room-feats li {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
  border: 1px solid var(--line); padding: 11px 16px; background: var(--white);
}
.room-feats li::before { content: "\2726"; color: var(--gold); font-size: 11px; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  border: 1px solid rgba(255, 255, 255, 0.12); padding: 42px 36px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.feature .icon { font-family: var(--serif); font-size: 42px; color: var(--gold); line-height: 1; margin-bottom: 22px; }
.feature h3 { font-size: 22px; margin-bottom: 12px; }
.feature p { color: rgba(255, 255, 255, 0.65); font-size: 14.5px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--wine); color: #fff; padding: 74px 0; }
.stats-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .cell strong { font-family: var(--serif); font-size: 56px; color: var(--gold-2); display: block; line-height: 1; }
.stats-band .cell span { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.75; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.g-card {
  position: relative; overflow: hidden; display: block;
  background: var(--ink);
}
.g-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.7s ease, opacity 0.5s; }
.g-card:hover img { transform: scale(1.08); opacity: 0.75; }
.g-card .g-cap {
  position: absolute; inset: auto 0 0 0; padding: 44px 18px 16px;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.9), transparent);
  color: #fff; font-family: var(--serif); font-size: 19px; letter-spacing: 1px;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.g-card:hover .g-cap { transform: translateY(0); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; padding: 110px 0; color: #fff; text-align: center;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 8, 5, 0.9), rgba(122, 31, 43, 0.72)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 16px; }
.cta-band p { opacity: 0.85; max-width: 580px; margin: 0 auto 38px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; }
.map-wrap {
  position: relative; border: 6px solid var(--white); box-shadow: var(--shadow);
  background: var(--ink);
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: saturate(0.85); }
.info-cards { display: grid; gap: 16px; margin-top: 26px; }
.info-card { display: flex; gap: 20px; padding: 22px 26px; background: var(--white); border: 1px solid var(--line); }
.info-card .ic { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.info-card h4 { font-size: 15px; margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--sans); }
.info-card p, .info-card a { color: var(--muted); font-size: 15px; }
.info-card a:hover { color: var(--gold); }

.form-wrap { background: var(--white); border: 1px solid var(--line); padding: 44px; }
.form-wrap h3 { font-size: 28px; margin-bottom: 6px; }
.form-note { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; color: var(--ink-3); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--paper);
  font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.contact-buttons { display: grid; gap: 12px; margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-grid h4 { color: #fff; font-size: 17px; margin-bottom: 22px; letter-spacing: 1px; }
.footer-grid a { display: block; padding: 6px 0; font-size: 14.5px; transition: color 0.3s, padding-left 0.3s; }
.footer-grid a:hover { color: var(--gold-2); padding-left: 6px; }
.footer-about p { font-size: 14.5px; margin: 18px 0 24px; }
.footer-brand { font-family: var(--serif); font-size: 26px; letter-spacing: 4px; color: #fff; text-transform: uppercase; }
.footer-brand small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 3.5px; color: var(--gold-2); margin-top: 6px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.2); display: grid; place-items: center;
  font-size: 15px; transition: all 0.3s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 26px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a { color: var(--gold-2); }

/* ---------- Float buttons ---------- */
.wa-float, .ph-float {
  position: fixed; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s;
}
.wa-float { bottom: 96px; background: var(--wa); animation: pulse 2.4s infinite; }
.ph-float { bottom: 26px; background: var(--gold); color: #fff; }
.wa-float:hover, .ph-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.ph-float svg { width: 26px; height: 26px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Mobile quick bar ---------- */
.quickbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(20, 16, 11, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(4, 1fr);
}
.quickbar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: rgba(255, 255, 255, 0.85); font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 4px 12px; transition: color 0.3s;
}
.quickbar a:hover { color: var(--gold-2); }
.quickbar .qb-ic { font-size: 18px; color: var(--gold-2); line-height: 1; }
.quickbar .qb-ic.wa { color: var(--wa); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav ul { gap: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split { gap: 40px; }
  .room-panel { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-phone { display: none; }
  .header-route { display: none; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(15, 13, 11, 0.98); z-index: 99;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 26px; }
  .main-nav a { font-size: 18px; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 100; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .vslider { height: 100svh; min-height: 620px; }
  .vslide-brand { top: 96px; right: 14px; font-size: 12px; padding: 8px 12px; }
  .vslide-content { padding: 130px 0 26px; }
  .vslider h1 { font-size: clamp(30px, 8vw, 40px); }
  .vnav { display: none; }
  .hero-stats { bottom: 56px; grid-template-columns: repeat(2, 1fr); }
  .hero-stats div:nth-child(3) { border-left: none; }
  .hero-stats div { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .hero-stats strong { font-size: 30px; }
  .scroll-hint { display: none; }

  .section { padding: 80px 0; }
  .features-grid, .stats-band .grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .img-frame { margin-bottom: 44px; }
  .split .img-frame .badge { right: 12px; }

  .room-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
  .room-tab { white-space: nowrap; }
  .room-panel, .room-panel.active { grid-template-columns: 1fr; gap: 30px; }
  .room-feats { grid-template-columns: 1fr 1fr; }

  .cta-band { background-attachment: scroll; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 24px; }

  .wa-float { bottom: 92px; right: 16px; }
  .ph-float { bottom: 26px; right: 16px; }
  .quickbar { display: grid; }
  .wa-float, .ph-float { width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 19px; letter-spacing: 3px; }
}
