:root {
  --green-950: #031b17;
  --green-900: #062b24;
  --green-800: #0b3028;
  --gold: #d4af37;
  --gold-soft: #c9a646;
  --cream: #f5ebd2;
  --beige: #d8c7a1;
  --ink: #111111;
  --line: rgba(212, 175, 55, 0.28);
  --glass: rgba(6, 43, 36, 0.72);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(rgba(245, 235, 210, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 235, 210, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.08), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(216, 199, 161, 0.07), transparent 22rem),
    linear-gradient(135deg, var(--green-950), var(--green-900) 45%, #051f1b);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.26)),
    repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.025), rgba(212, 175, 55, 0.025) 1px, transparent 1px, transparent 9px);
  opacity: 0.9;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(3, 27, 23, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled { padding-block: 0.72rem; background: rgba(3, 27, 23, 0.94); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand img { width: 44px; height: 44px; object-fit: contain; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.3rem);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  color: rgba(245, 235, 210, 0.82);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold); }

.lang-switch {
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 7rem clamp(1.2rem, 5vw, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.32);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 34%, rgba(212, 175, 55, 0.11), transparent 25rem),
    linear-gradient(90deg, rgba(3, 27, 23, 0.78), rgba(6, 43, 36, 0.5) 48%, rgba(3, 27, 23, 0.34)),
    linear-gradient(0deg, rgba(3, 27, 23, 0.72), rgba(3, 27, 23, 0.12));
  z-index: 1;
}

.hero-video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0.94;
  filter: saturate(0.96) contrast(1.05) brightness(0.98);
}

.hero-bg {
  opacity: 0.55;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-fallback { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  min-width: 0;
}

.hero-ornament {
  position: absolute;
  right: 8vw;
  bottom: 12vh;
  z-index: 2;
  width: clamp(120px, 18vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: grid;
  place-items: center;
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14), transparent 58%),
    rgba(3, 27, 23, 0.38);
  box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.08), 0 0 70px rgba(212, 175, 55, 0.12);
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 199, 161, 0.22);
}

.hero-ornament::after {
  inset: 9%;
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.28);
}

.hero-ornament img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.32));
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--cream);
  margin: 0 0 1rem;
}

h1 { font-size: clamp(3.1rem, 7vw, 7.8rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: 1.75rem; }

.hero p, .section-head p, .intro p, .content-narrow p, .split-section p {
  color: rgba(245, 235, 210, 0.78);
  font-size: 1.05rem;
}

.hero-actions, .footer-contact, .room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.18rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.ghost, .btn.outline { color: var(--gold); background: rgba(3, 27, 23, 0.32); }
.btn.small { min-height: 40px; padding: 0.55rem 0.9rem; }

.section, .split-section, .room-detail, .location-layout, .contact-layout, .service-grid, .masonry {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.luxury-band {
  position: relative;
  padding-inline: clamp(1rem, 4vw, 4rem);
}

.luxury-band::before {
  content: "";
  position: absolute;
  inset: clamp(1.25rem, 3vw, 2rem) 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 70%);
  z-index: -1;
}

.intro {
  text-align: center;
  max-width: 900px;
}

.intro h2 {
  max-width: 780px;
  margin-inline: auto;
  text-wrap: balance;
}

.intro > p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  text-wrap: pretty;
}

.rate-note {
  color: var(--gold);
  font-weight: 700;
}

.ornament {
  width: 132px;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.55);
}

.draw-line {
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 1.1s ease;
}

.draw-line.visible,
.visible .draw-line {
  transform: scaleX(1);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.stat-row span {
  min-width: 145px;
  border: 1px solid var(--line);
  background: rgba(3, 27, 23, 0.52);
  padding: 0.9rem 1rem;
  color: var(--beige);
}

.stat-row strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.rooms-home-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.room-card, .service-card, .contact-card, .room-panel {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 40%),
    linear-gradient(180deg, rgba(11, 48, 40, 0.92), rgba(3, 27, 23, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.room-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.room-card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.58); }

.image-frame {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #092821;
}

.price-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  max-width: calc(100% - 1.7rem);
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(245, 235, 210, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 235, 210, 0.96), rgba(212, 175, 55, 0.96));
  color: #061b17;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.image-frame img, .gallery-item img, .mini-gallery img, .main-room-image, .thumb-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.room-card:hover .image-frame img, .gallery-item:hover img { transform: scale(1.06); }

.placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent),
    repeating-linear-gradient(45deg, #082a24, #082a24 12px, #0d372f 12px, #0d372f 24px);
}

.video-feature-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.video-card-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  align-items: stretch;
}

.video-card,
.video-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 8px;
  background: rgba(3, 27, 23, 0.72);
  box-shadow: var(--shadow);
}

.video-card {
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.video-card:nth-child(1) {
  aspect-ratio: 4 / 4.45;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.video-card::before,
.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 27, 23, 0.04), rgba(3, 27, 23, 0.58)),
    radial-gradient(circle at 50% 48%, rgba(212, 175, 55, 0.12), transparent 18rem);
}

.video-card video,
.video-band video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04) brightness(0.96);
  transform: scale(1.01);
}

.video-card > div,
.video-band > div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.video-card h3,
.video-band h2 {
  margin: 0;
  text-wrap: balance;
}

.video-card h3 {
  display: inline;
  padding: 0.28rem 0.48rem;
  background: rgba(3, 27, 23, 0.58);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  border-radius: 50%;
  background: rgba(3, 27, 23, 0.62);
  color: var(--gold);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 44px rgba(212, 175, 55, 0.18);
  transition: transform 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 20px;
  border-left: 18px solid currentColor;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(6, 43, 36, 0.94);
}

.video-card.playing .video-play,
.video-band.playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-band {
  min-height: min(72vh, 620px);
  display: grid;
  padding: 0;
}

.video-band > div {
  width: min(680px, calc(100% - 2rem));
  left: clamp(1rem, 5vw, 4rem);
  right: auto;
  bottom: clamp(1.2rem, 5vw, 4rem);
}

.video-carousel {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
}

.video-carousel-window {
  position: relative;
  min-height: clamp(440px, 62vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: rgba(3, 27, 23, 0.72);
  box-shadow: var(--shadow);
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.video-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.video-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 27, 23, 0.04), rgba(3, 27, 23, 0.62)),
    linear-gradient(90deg, rgba(3, 27, 23, 0.18), transparent 42%, rgba(3, 27, 23, 0.22));
}

.video-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(0.98);
}

.video-slide > div {
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(4.8rem, 9vw, 7rem);
  bottom: clamp(1.15rem, 4vw, 2.2rem);
  z-index: 2;
}

.video-slide h3 {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(3, 27, 23, 0.58);
  backdrop-filter: blur(10px);
  font-size: clamp(1.45rem, 3.2vw, 2.45rem);
  line-height: 1.04;
}

.video-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.66);
  border-radius: 50%;
  background: rgba(3, 27, 23, 0.78);
  color: var(--gold);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.video-arrow::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.video-arrow-prev {
  left: clamp(0.65rem, 2vw, 1.2rem);
}

.video-arrow-prev::before {
  transform: rotate(-135deg);
}

.video-arrow-next {
  right: clamp(0.65rem, 2vw, 1.2rem);
}

.video-arrow-next::before {
  transform: rotate(45deg);
}

.video-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(6, 43, 36, 0.96);
}

.video-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 5;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.video-dots button {
  width: 36px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(216, 199, 161, 0.34);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.video-dots button.active {
  width: 54px;
  background: var(--gold);
}

.card-body, .service-card, .room-panel, .contact-card {
  padding: 1.35rem;
}

.card-body p, .service-card p, .room-panel p, .contact-card p {
  color: rgba(245, 235, 210, 0.74);
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.room-meta span {
  border: 1px solid var(--line);
  color: var(--beige);
  padding: 0.36rem 0.58rem;
  font-size: 0.82rem;
}

.split-section, .room-detail, .location-layout, .contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.mini-gallery img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
}

.page-hero {
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 5vw, 6rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 24%, rgba(212, 175, 55, 0.13), transparent 24rem),
    repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.025), rgba(212, 175, 55, 0.025) 1px, transparent 1px, transparent 12px),
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 32rem),
    rgba(3, 27, 23, 0.38);
}

.ornate-page {
  position: relative;
  overflow: hidden;
}

.ornate-page::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 6vw, 7rem);
  bottom: -4.4rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  transform: rotate(45deg);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.12);
}

.page-hero h1 { max-width: 920px; font-size: clamp(2.8rem, 6vw, 6rem); }

.content-narrow {
  width: min(850px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  font-size: 1.08rem;
}

.room-gallery {
  display: grid;
  gap: 0.8rem;
}

.main-room-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.main-room-image {
  aspect-ratio: 16 / 10;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.thumb-grid img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
  color: var(--beige);
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.55rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.feature-list .room-price {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.masonry {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--glass);
}

.gallery-item img, .gallery-item .placeholder {
  min-height: 260px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.85rem 1rem;
  color: var(--beige);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-service-card {
  position: relative;
  min-height: clamp(280px, 28vw, 390px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(3, 27, 23, 0.1), rgba(3, 27, 23, 0.9)),
    var(--service-image, url("../images/site-new/shared/restaurant/restaurant-01.webp")) center / cover;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.media-service-card::before,
.media-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.media-service-card::before {
  background:
    linear-gradient(180deg, rgba(3, 27, 23, 0.06) 0%, rgba(3, 27, 23, 0.38) 42%, rgba(3, 27, 23, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 27, 23, 0.78), rgba(3, 27, 23, 0.16) 58%, rgba(3, 27, 23, 0.5));
}

.media-service-card::after {
  border: 1px solid rgba(212, 175, 55, 0.16);
  inset: 0.7rem;
}

.media-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.media-service-card .service-icon {
  display: block;
  width: 82px;
  min-width: 82px;
  height: 82px;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0;
  background: var(--service-image, url("../images/site-new/shared/restaurant/restaurant-01.webp")) center / cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  text-indent: -999px;
}

.media-service-card h2,
.media-service-card h3,
.media-service-card p {
  max-width: 92%;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
}

.media-service-card h2,
.media-service-card h3 {
  margin-top: 1.8rem;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
}

.media-service-card p {
  font-weight: 700;
}

.service-coffee { --service-image: url("../images/services/simit-breakfast.webp"); background-position: center; }
.service-wifi { --service-image: url("../images/services/hotel-wifi.webp"); background-position: center; }
.service-desk { --service-image: url("../images/site-new/shared/out/ceiling-hall-01.webp"); background-position: center; }
.service-car { --service-image: url("../images/services/maybach-transfer.webp"); background-position: center; }
.service-clean { --service-image: url("../images/services/cleaning.webp"); background-position: center; }
.service-family { --service-image: url("../images/services/family-room.webp"); background-position: center; }

.image-story {
  position: relative;
}

.image-story::before,
.rooms-showcase::before {
  content: "";
  position: absolute;
  inset: auto auto 6% -8%;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.055);
  filter: blur(28px);
  z-index: -1;
}

.layered-photos {
  position: relative;
  min-height: clamp(360px, 48vw, 580px);
}

.layered-photos img {
  position: absolute;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.layered-photos img:nth-child(1) {
  width: 70%;
  height: 70%;
  right: 0;
  top: 4%;
}

.layered-photos img:nth-child(2) {
  width: 48%;
  height: 48%;
  left: 0;
  bottom: 3%;
}

.layered-photos img:nth-child(3) {
  width: 42%;
  height: 36%;
  left: 12%;
  top: 0;
  transform: translateY(-8%);
}

.center-showcase {
  min-height: 105vh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 10vw, 9rem) 1rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(212, 175, 55, 0.16), transparent 27rem),
    linear-gradient(180deg, rgba(2, 19, 16, 0.55), rgba(8, 42, 36, 0.58), rgba(2, 19, 16, 0.55));
}

.center-showcase::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.showcase-frame {
  width: min(960px, 100%);
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(3, 27, 23, 0.62);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42), inset 0 0 80px rgba(212, 175, 55, 0.055);
  transform: translateY(var(--showcase-y, 0)) scale(var(--showcase-scale, 1));
  transition: transform 0.08s linear;
}

.showcase-frame::before,
.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(216, 199, 161, 0.18);
}

.showcase-frame::after {
  inset: 2.1rem;
  border-color: rgba(212, 175, 55, 0.14);
}

.showcase-photo-stack {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}

.showcase-photo-stack img {
  position: absolute;
  width: 34%;
  height: 58%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.35);
  filter: saturate(0.85);
}

.showcase-photo-stack img:first-child {
  left: 4%;
  top: 10%;
}

.showcase-photo-stack img:last-child {
  right: 4%;
  bottom: 10%;
}

.showcase-copy {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 2rem));
  text-align: center;
}

.showcase-copy h2 {
  font-size: clamp(2.6rem, 6vw, 6rem);
}

.scroll-gallery {
  width: 100%;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(90deg, rgba(3, 27, 23, 0.72), rgba(11, 48, 40, 0.52), rgba(3, 27, 23, 0.72));
}

.scroll-gallery .section-head {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.scroll-track {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  padding-bottom: 1rem;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

.scroll-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.scroll-track figure {
  flex: 0 0 min(72vw, 420px);
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(3, 27, 23, 0.72);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scroll-track img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.scroll-track figcaption {
  padding: 0.9rem 1rem;
  color: var(--beige);
  font-weight: 700;
}

.testimonial-grid,
.timeline-grid,
.attraction-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card,
.timeline-card,
.attraction-card {
  margin: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 42%),
    rgba(6, 43, 36, 0.78);
  box-shadow: var(--shadow);
}

.testimonial-card,
.timeline-card {
  padding: 1.35rem;
}

.testimonial-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--cream);
}

.testimonial-card cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.timeline-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.event-venue {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(212, 175, 55, 0.48);
  background:
    radial-gradient(circle at 12% 16%, rgba(212, 175, 55, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(11, 48, 40, 0.94), rgba(3, 27, 23, 0.98));
  box-shadow: var(--shadow);
}

.event-venue h2 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 0.98;
}

.event-venue p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(245, 235, 210, 0.8);
  font-size: 1.08rem;
  font-weight: 700;
}

.event-venue .btn {
  margin-top: 1rem;
}

.event-venue-media {
  position: relative;
  min-height: 360px;
}

.event-venue-media img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow: var(--shadow);
}

.event-venue-media img:first-child {
  inset: 0 0 18% 14%;
  width: 86%;
  height: 72%;
}

.event-venue-media img:last-child {
  left: 0;
  bottom: 0;
  width: 68%;
  height: 52%;
}

.quote-panel {
  width: min(1080px, calc(100% - 2rem));
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(212, 175, 55, 0.34);
  text-align: center;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.11), rgba(3, 27, 23, 0.78) 62%);
}

.quote-panel p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 0;
}

.amenity-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.amenity-cloud span,
.attraction-list a {
  border: 1px solid var(--line);
  background: rgba(3, 27, 23, 0.56);
  color: var(--beige);
  padding: 0.75rem 0.95rem;
}

.attraction-list {
  display: grid;
  gap: 0.75rem;
}

.attraction-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.attraction-list a:hover {
  transform: translateX(6px);
  border-color: rgba(212, 175, 55, 0.58);
}

.attraction-list strong { color: var(--cream); }
.attraction-list span { color: var(--gold); }

.attraction-photo-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.attraction-photo-list a {
  position: relative;
  min-height: 190px;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.attraction-photo-list a:hover {
  transform: translateY(-4px);
}

.attraction-photo-list img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.attraction-photo-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 27, 23, 0.08), rgba(3, 27, 23, 0.86));
}

.attraction-photo-list a:hover img {
  transform: scale(1.04);
}

.attraction-copy {
  display: grid;
  gap: 0.25rem;
  width: 100%;
  padding: 1rem;
}

.attraction-copy small {
  color: var(--gold);
  font-weight: 800;
}

.attraction-card {
  overflow: hidden;
}

.attraction-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.attraction-card div {
  padding: 1.2rem;
}

.attraction-card span {
  color: var(--gold);
  font-weight: 800;
}

.cta-strip {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(11, 48, 40, 0.88), rgba(3, 27, 23, 0.92));
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(3, 27, 23, 0.62);
  padding: 1rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--cream);
  font-weight: 800;
}

.faq-item p {
  color: var(--beige);
}

.room-hero-detail {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 6rem);
  overflow: hidden;
}

.room-hero-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 27, 23, 0.94), rgba(3, 27, 23, 0.28));
  z-index: 1;
}

.room-hero-detail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-price-badge {
  top: clamp(5.6rem, 9vw, 8.4rem);
  right: clamp(1rem, 5vw, 6rem);
  z-index: 2;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  padding: 0.55rem 0.95rem;
}

.room-hero-detail div {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.contact-card img {
  width: calc(100% + 2.7rem);
  max-width: none;
  margin: -1.35rem -1.35rem 1.2rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 800;
}

.contact-note-icon {
  overflow: hidden;
  padding: 0;
  background: rgba(3, 27, 23, 0.62);
}

.contact-note-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-box {
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(6, 43, 36, 0.72);
  color: var(--beige);
  overflow: hidden;
}

.map-box iframe { width: 100%; height: 430px; border: 0; }

.reservation-form {
  display: grid;
  gap: 1rem;
}

.reservation-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--beige);
  font-weight: 700;
}

.reservation-form input, .reservation-form select, .reservation-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(3, 27, 23, 0.72);
  color: var(--cream);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.reservation-form textarea { resize: vertical; }

.message {
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.12);
  color: var(--cream);
  padding: 0.85rem 1rem;
}

.contact-card a {
  display: block;
  color: var(--gold);
  margin-top: 0.6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background: #021310;
  color: rgba(245, 235, 210, 0.74);
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0;
}

.footer-contact a { color: var(--gold); }

.footer-address {
  max-width: 520px;
  color: rgba(245, 235, 210, 0.82);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.6rem);
  bottom: clamp(1rem, 2.5vw, 1.6rem);
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(245, 235, 210, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 24px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.campaign-popup[hidden] {
  display: none;
}

.campaign-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 19, 16, 0.76);
  backdrop-filter: blur(9px);
  animation: campaignFade 0.35s ease both;
}

.campaign-popup-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(1.5rem, 5vw, 2.35rem);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.22), transparent 17rem),
    linear-gradient(145deg, rgba(6, 43, 36, 0.98), rgba(3, 27, 23, 0.98));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.52), 0 0 44px rgba(212, 175, 55, 0.18);
  animation: campaignPop 0.5s cubic-bezier(0.2, 0.9, 0.25, 1.15) both;
}

.campaign-popup-panel::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  pointer-events: none;
  border: 1px solid rgba(216, 199, 161, 0.16);
}

.campaign-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  background: rgba(3, 27, 23, 0.7);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.campaign-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.campaign-badge {
  display: inline-grid;
  place-items: center;
  min-width: 142px;
  min-height: 142px;
  margin: 0 auto 1.15rem;
  padding: 1rem;
  border: 2px solid rgba(212, 175, 55, 0.86);
  border-radius: 50%;
  background: radial-gradient(circle, #f1cc4f, var(--gold) 55%, #9f7b16);
  color: #061b17;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
  text-shadow: 0 1px rgba(245, 235, 210, 0.35);
  animation: campaignPulse 1.15s ease-in-out infinite alternate;
}

.campaign-popup-panel h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
}

.campaign-popup-panel p {
  color: rgba(245, 235, 210, 0.86);
  font-size: 1.08rem;
  font-weight: 700;
}

.campaign-action {
  margin-top: 0.8rem;
  animation: campaignButtonGlow 1.2s ease-in-out infinite alternate;
}

@keyframes campaignFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes campaignPop {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes campaignPulse {
  from {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.2), 0 0 28px rgba(212, 175, 55, 0.28);
  }
  to {
    transform: scale(1.06);
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.06), 0 0 48px rgba(212, 175, 55, 0.56);
  }
}

@keyframes campaignButtonGlow {
  from { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  to { box-shadow: 0 0 28px rgba(212, 175, 55, 0.42); }
}

.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.24s; }

.mask-reveal {
  clip-path: inset(0 0 0 0);
}

.mask-reveal img {
  transform-origin: center;
}

.text-reveal h1 {
  animation: textRise 0.9s ease both 0.15s;
}

@keyframes textRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (max-width: 1200px) {
  .rooms-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(3, 27, 23, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.65rem 0; }
  .card-grid, .service-grid, .split-section, .room-detail, .location-layout, .contact-layout, .video-card-grid {
    grid-template-columns: 1fr;
  }
  .event-venue {
    grid-template-columns: 1fr;
  }
  .event-venue-media {
    min-height: 320px;
  }
  .testimonial-grid, .timeline-grid, .attraction-card-grid {
    grid-template-columns: 1fr;
  }
  .attraction-photo-list {
    grid-template-columns: 1fr;
  }
  .layered-photos {
    width: min(100%, 560px);
    min-height: clamp(360px, 82vw, 520px);
    margin: 1rem auto 0;
  }
  .layered-photos img:nth-child(1) {
    position: absolute;
    width: 78%;
    height: 66%;
    right: 0;
    top: 5%;
    z-index: 1;
  }
  .layered-photos img:nth-child(2) {
    position: absolute;
    width: 54%;
    height: 42%;
    left: 0;
    bottom: 4%;
    z-index: 2;
  }
  .layered-photos img:nth-child(3) {
    position: absolute;
    width: 44%;
    height: 34%;
    left: 7%;
    top: 0;
    transform: none;
    z-index: 3;
  }
  .showcase-photo-stack {
    opacity: 0.22;
  }
  .video-card-grid {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0 0.15rem 0.85rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .video-card {
    flex: 0 0 min(76vw, 360px);
    aspect-ratio: 4 / 5.2;
    scroll-snap-align: center;
  }
  .video-band {
    min-height: 420px;
  }
  .video-carousel {
    width: 100%;
    padding: 0;
  }
  .video-carousel-window {
    min-height: min(64vh, 560px);
  }
  .video-arrow {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
  }
  .video-arrow-prev {
    left: 0.65rem;
  }
  .video-arrow-next {
    right: 0.65rem;
  }
  .hero {
    min-height: auto;
    padding: clamp(4rem, 11vw, 6rem) clamp(1rem, 5vw, 2rem) clamp(2rem, 8vw, 3rem);
  }
  .hero-content {
    max-width: 100%;
    padding-right: clamp(0rem, 24vw, 8rem);
  }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(3rem, 11vw, 5.5rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }
  .hero-content > p:not(.eyebrow) {
    max-width: 34rem;
  }
  .hero-ornament {
    right: clamp(1.1rem, 4vw, 2rem);
    bottom: clamp(1.3rem, 4vw, 2rem);
    width: clamp(104px, 24vw, 160px);
    opacity: 0.88;
  }
  .site-footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 1.25rem;
    min-height: 86px;
  }
  .brand span { font-size: 1.2rem; }
  .cinematic-hero::after { inset: 0.9rem; }
  .hero {
    padding: 5.2rem 1.15rem 2rem;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-content h1 {
    font-size: clamp(2.55rem, 12vw, 4.15rem);
    line-height: 1.02;
  }
  .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-bottom: clamp(7.5rem, 31vw, 10rem);
  }
  .hero-actions .btn, .reservation-form .btn { width: 100%; }
  .hero-ornament {
    left: 50%;
    right: auto;
    bottom: 1.25rem;
    width: clamp(108px, 34vw, 142px);
    transform: translateX(-50%);
    opacity: 0.98;
  }
  .section, .split-section, .room-detail, .location-layout, .contact-layout, .service-grid, .masonry {
    width: min(100% - 1.5rem, 1180px);
  }
  .intro {
    text-align: center;
  }
  .intro h2, .section-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    overflow-wrap: anywhere;
  }
  .intro p, .section-head p, .split-section p {
    font-size: 1rem;
  }
  .stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .stat-row span {
    min-width: 0;
    width: 100%;
  }
  .stat-row span:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 182px);
  }
  .layered-photos {
    min-height: clamp(320px, 86vw, 430px);
  }
  .layered-photos img:nth-child(1) {
    width: 82%;
    height: 62%;
    right: 0;
    top: 8%;
  }
  .layered-photos img:nth-child(2) {
    width: 56%;
    height: 38%;
    left: 0;
    bottom: 4%;
  }
  .layered-photos img:nth-child(3) {
    width: 48%;
    height: 31%;
    left: 5%;
    top: 0;
  }
  .video-card {
    flex-basis: 78vw;
    aspect-ratio: 4 / 5.35;
  }
  .video-card > div,
  .video-band > div {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    width: auto;
  }
  .video-play {
    width: 58px;
    height: 58px;
  }
  .video-play::before {
    left: 23px;
    top: 18px;
  }
  .video-carousel-window {
    min-height: min(58vh, 460px);
  }
  .video-slide > div {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }
  .video-slide h3 {
    font-size: 1.55rem;
  }
  .scroll-track figure {
    flex-basis: min(78vw, 340px);
  }
  .scroll-track img {
    height: 360px;
  }
  .mini-gallery, .thumb-grid { grid-template-columns: repeat(2, 1fr); }
  .price-badge {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 1.05rem;
  }
  .hero-price-badge {
    top: 5rem;
    right: 1rem;
    font-size: 1.2rem;
  }
}
