:root {
  --bg: #F6F1E8;
  --bg-elev: #FFFDF8;
  --ink: #1F1813;
  --ink-soft: #5A4F47;
  --muted: #8A7F76;
  --line: #E6DDCB;
  --accent: #9C6A3F;
  --accent-dark: #7E5128;
  --gold: #B89165;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;
  --shadow-sm: 0 1px 2px rgba(40, 30, 20, 0.05), 0 2px 8px rgba(40, 30, 20, 0.04);
  --shadow-md: 0 6px 18px rgba(40, 30, 20, 0.08), 0 18px 40px rgba(40, 30, 20, 0.07);
  --shadow-lg: 0 12px 32px rgba(40, 30, 20, 0.12), 0 28px 60px rgba(40, 30, 20, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --pad-x: clamp(20px, 4vw, 48px);
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform-origin: 0 50%;
  transform: scaleX(var(--p, 0));
  transition: transform 0.08s linear;
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.topbar.is-scrolled {
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.topbar.is-scrolled .brand { color: var(--ink); }
.brand-mark {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}
.brand-text { font-size: 15px; }
.brand-sep { color: rgba(255, 255, 255, 0.55); transition: color 0.3s ease; }
.topbar.is-scrolled .brand-sep { color: var(--muted); }

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.topnav a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.topnav a:hover { color: #fff; }
.topnav a:hover::after { transform: scaleX(1); }
.topbar.is-scrolled .topnav a { color: var(--ink-soft); }
.topbar.is-scrolled .topnav a:hover { color: var(--ink); }

.lang-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 3px;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.topbar.is-scrolled .lang-toggle {
  background: var(--bg-elev);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.topbar.is-scrolled .lang-btn { color: var(--ink-soft); }
.lang-btn:hover { color: #fff; }
.topbar.is-scrolled .lang-btn:hover { color: var(--ink); }
.lang-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}
.topbar.is-scrolled .lang-btn[aria-pressed="true"] { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1410;
}
.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.15) 40%, rgba(20, 14, 10, 0.85) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--pad-x) 110px;
  color: #fff;
}
.hero-eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #F5EFE6;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #F5EFE6;
}
.hero-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 120;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.hero-sub {
  margin: 0 0 34px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero-price-block {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(20, 14, 10, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-price-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-price-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
}
.hero-price-amount {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: bob 2.4s ease-in-out infinite;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #06321a;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #06321a; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-lg {
  padding: 20px 32px;
  font-size: 16px;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
}
.btn-lg .btn-sub {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}
.section-lead {
  margin: 0 0 36px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.65;
}

/* ---------- Facts ---------- */
.facts {
  background: var(--bg-elev);
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.facts .section-eyebrow { margin-bottom: 28px; }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.fact {
  padding: 24px 16px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fact:first-child { border-left: 0; }
.fact-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 80;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.fact-unit {
  font-family: var(--font-sans);
  font-size: 0.32em;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.fact-label {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ---------- Description ---------- */
.desc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.desc-intro {
  position: sticky;
  top: 96px;
}
.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.rooms > .room-card:last-child { grid-column: 1 / -1; }
.room-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.room-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 145, 101, 0.4);
}
.room-card:hover::before { transform: scaleY(1); }
.room-num {
  display: inline-block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.room-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.room-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.room-card li {
  margin: 8px 0;
  line-height: 1.55;
}
.room-card li::marker { color: var(--gold); }
.room-note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

/* ---------- Gallery ---------- */
.section-gallery { background: var(--bg-elev); }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: var(--line);
  border: 0;
  padding: 0;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0) 55%, rgba(20, 14, 10, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}

/* ---------- Videos ---------- */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.video {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.video:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.video video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* ---------- Contact ---------- */
.section-contact {
  background: linear-gradient(180deg, var(--bg) 0%, #EEE3D0 100%);
  text-align: center;
}
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-inner .section-title,
.contact-inner .section-eyebrow,
.contact-inner .contact-lead { text-align: center; }
.contact-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 560px;
}
.contact-card {
  width: 100%;
  max-width: 640px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-address {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Studio band ---------- */
.section-studio {
  background: var(--ink);
  color: #F6F1E8;
  text-align: center;
  border-top: 1px solid rgba(184, 145, 101, 0.18);
  position: relative;
  overflow: hidden;
}
.section-studio::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 145, 101, 0.65) 50%, transparent 100%);
  pointer-events: none;
}
.section-studio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 145, 101, 0.10) 0%, rgba(184, 145, 101, 0) 55%);
  pointer-events: none;
}
.studio-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.studio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.studio-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.studio-title {
  margin: 0 0 18px;
  max-width: 720px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: #F6F1E8;
}
.studio-lead {
  margin: 0 0 34px;
  max-width: 580px;
  color: rgba(246, 241, 232, 0.74);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}
.btn-studio {
  background: var(--gold);
  color: var(--ink);
  border-color: transparent;
}
.btn-studio:hover {
  background: #a47c54;
  color: var(--ink);
}
.btn-studio .btn-sub { color: rgba(31, 24, 19, 0.72); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #c9bfb1;
  padding: 32px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .lang-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.footer .lang-btn { color: #c9bfb1; }
.footer .lang-btn:hover { color: #fff; }
.footer .lang-btn[aria-pressed="true"] { background: var(--accent); color: #fff; }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
}
.mobile-cta-call { background: var(--accent); color: #fff; }
.mobile-cta-whatsapp { background: var(--whatsapp); color: #06321a; }
.mobile-cta.is-hidden { display: none !important; }
body.has-mobile-cta { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
body.has-mobile-cta .footer { padding-bottom: 16px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 5, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox.is-open {
  display: flex;
  animation: lbFade 0.25s ease-out;
}
@keyframes lbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 26px; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 18px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.16); }
.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  font-style: italic;
}

/* ---------- Focus styles ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .desc-grid { grid-template-columns: 1fr; }
  .desc-intro { position: static; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .topnav { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { min-height: 94vh; }
  .hero-content { padding: 110px var(--pad-x) 90px; }
  .hero-img { object-position: center 30%; }
  .hero-price-block { padding: 12px 18px; gap: 14px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 20px 8px; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact:nth-child(3) { border-top: 1px solid var(--line); }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }
  .brand-text { font-size: 13px; }
  .brand-sep, .brand-text > span:last-child { display: none; }
  .rooms { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-item--featured { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
  .btn-lg { width: 100%; max-width: 360px; min-width: 0; }
  .contact-row { flex-direction: column; align-items: stretch; }
  .videos { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .lightbox { padding: 12px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 42px; height: 42px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(36px, 12vw, 56px); }
  .hero-price-amount { font-size: 22px; }
  .hero-price-label { font-size: 10px; }
  .mobile-cta-btn span { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-img { transform: none !important; animation: none !important; }
}

html.aos-failed [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
