@font-face {
  font-family: "Vardi Serif Geo";
  src: url("./assets/fonts/MCh-Ma-Si-Vardi-Serif-400.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BPG Nino Medium";
  src: url("./assets/fonts/BPG-Nino-Medium-500.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --color-burgundy: #5b1020;
  --color-gold: #c8a564;
  --color-dark-wood: #1f1f24;
  --color-cream: #faf6ee;
  --color-cream-muted: #e4dcd0;
  --color-antique-gold: #a98546;
  --color-panel: rgba(17, 18, 24, 0.78);
  --color-panel-soft: rgba(247, 239, 227, 0.06);
  --color-border: rgba(200, 165, 100, 0.26);
  --font-heading: "Vardi Serif Geo", "Noto Serif", "Times New Roman", serif;
  --font-body: "BPG Nino Medium", "Noto Sans Georgian", "Noto Sans", system-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --header-height: 92px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  /* Richer, warmer photo grade (aligned with burgundy / gold palette) */
  --photo-filter: brightness(1.04) contrast(1.08) saturate(1.18);
  --photo-filter-emphasis: brightness(1.06) contrast(1.1) saturate(1.24);
  --photo-filter-hero: brightness(0.97) contrast(1.14) saturate(1.22);
  /* Hero: visible while photo loads; warm plum, not flat gray */
  --hero-fallback: #151014;
  --hero-fallback-mid: #1c1218;
}

html {
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  max-width: 100%;
}

#smooth-wrapper,
#smooth-content {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

@supports not (overflow: clip) {

  #smooth-wrapper,
  #smooth-content {
    overflow-x: hidden;
  }
}

body {
  font-family: var(--font-body);
  color: var(--color-cream);
  background-color: var(--color-dark-wood);
  background-image: radial-gradient(circle at 10% 0%, #3a1122 0%, transparent 34%),
    radial-gradient(circle at 90% 12%, #2a2430 0%, transparent 30%);
  font-size: clamp(1rem, 0.2vw + 0.96rem, 1.07rem);
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image: radial-gradient(circle at 15% 20%, rgba(200, 165, 100, 0.08) 0, transparent 35%),
    radial-gradient(circle at 82% 70%, rgba(91, 16, 32, 0.16) 0, transparent 34%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0f;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease;
}

.preloader.done {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  position: relative;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--color-gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0;
}

.preloader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 1rem;
  transition: width 0.7s var(--ease-premium);
}

.preloader-counter {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(200, 165, 100, 0.15);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(200, 165, 100, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease;
}

.custom-cursor.hovering .cursor-ring {
  width: 64px;
  height: 64px;
  top: -32px;
  left: -32px;
  border-color: var(--color-gold);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.75rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 5;
  opacity: 0;
  padding: 0.35rem 0.75rem 0.5rem;
  border-radius: 2rem;
  background: rgba(12, 8, 14, 0.35);
  border: 1px solid rgba(200, 165, 100, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 165, 100, 0.75);
}

.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* ===== SKIP LINK ===== */
.skip-to-main {
  position: absolute;
  top: -42px;
  left: 0;
  z-index: 1100;
  background: var(--color-burgundy);
  color: var(--color-cream);
  padding: 0.5rem 0.8rem;
  border-radius: 0 0 0.35rem 0;
}

.skip-to-main:focus {
  top: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(200, 165, 100, 0.12);
  backdrop-filter: blur(4px);
  background: rgba(12, 14, 20, 0.33);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease, transform 0.5s var(--ease-premium);
}

.navbar.scrolled {
  background: rgba(12, 14, 20, 0.92);
  border-color: rgba(200, 165, 100, 0.35);
  padding: 0.7rem 0;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  width: min(1260px, 94vw);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.5vw, 1.8rem);
  letter-spacing: 0.08em;
  color: var(--color-gold);
  font-weight: 700;
}

.nav-menu {
  justify-self: center;
  display: flex;
  list-style: none;
  gap: clamp(1rem, 1.6vw, 1.8rem);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--color-cream);
  opacity: 0.96;
  position: relative;
  padding: 0.2rem 0.1rem;
  transition: color 0.35s var(--ease-premium), opacity 0.35s var(--ease-premium);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, rgba(200, 165, 100, 0.3), var(--color-gold), rgba(91, 16, 32, 0.55));
  transition: transform 0.45s var(--ease-premium);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 10, 12, 0.45);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--color-cream);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.lang-btn:hover {
  transform: scale(1.05);
}

.lang-btn.active {
  background: var(--color-gold);
  color: #1a1717;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  color: inherit;
  border-radius: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: transform 0.3s var(--ease-premium), opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-height) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(5rem, 14vh, 7rem);
  display: grid;
  place-items: center;
  align-content: center;
  overflow: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  background-color: var(--hero-fallback);
  background-image:
    radial-gradient(ellipse 95% 55% at 50% 85%, rgba(91, 16, 32, 0.42) 0%, transparent 58%),
    radial-gradient(circle at 15% 15%, rgba(200, 165, 100, 0.07) 0%, transparent 42%),
    linear-gradient(168deg, var(--hero-fallback) 0%, var(--hero-fallback-mid) 48%, #120c10 100%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 165, 100, 0.35), transparent);
  z-index: 4;
  pointer-events: none;
}

/* Keep .container width (min(1180px, 92vw)); never width:100% here — it fills the viewport and pins text to the edges */
.hero-container {
  position: relative;
  z-index: 4;
  padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px));
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transform-origin: center center;
  will-change: transform;
  filter: var(--photo-filter-hero);
}

@media (max-width: 767px) {
  .hero-background {
    transform: scale(1.04);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(91, 16, 32, 0.58) 0%, transparent 52%),
    radial-gradient(circle at 92% 76%, rgba(200, 165, 100, 0.26) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 38%, rgba(255, 245, 230, 0.04) 0%, transparent 55%),
    linear-gradient(168deg,
      rgba(24, 10, 16, 0.86) 0%,
      rgba(18, 12, 18, 0.22) 48%,
      rgba(20, 8, 14, 0.88) 100%);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 0%, rgba(8, 4, 10, 0.55) 100%);
  mix-blend-mode: multiply;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: color-dodge;
}

.hero-particle {
  position: absolute;
  width: clamp(2px, 0.4vw, 4px);
  height: clamp(2px, 0.4vw, 4px);
  background: radial-gradient(circle at center, #ffd700, transparent 80%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  box-shadow: 0 0 12px 1px rgba(200, 165, 100, 0.6);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 42rem;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  overflow: visible;
  padding-block: 0.35rem;
  padding-bottom: clamp(0.5rem, 2vw, 1rem);
}

.hero-accent {
  font-family: var(--font-body);
  color: rgba(247, 239, 227, 0.95);
  font-size: clamp(0.68rem, 1.05vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  padding: 0.5rem 1.1rem 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(30, 12, 20, 0.55);
  border: 1px solid rgba(200, 165, 100, 0.32);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.accent-line {
  display: inline-block;
  flex-shrink: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--color-antique-gold), var(--color-gold));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.8vw, 4.85rem);
  font-weight: 400;
  line-height: 1.14;
  max-width: 100%;
  width: fit-content;
  overflow: visible;
  color: var(--color-cream);
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.45),
    0 12px 48px rgba(12, 4, 10, 0.5);
  letter-spacing: 0.01em;
  text-wrap: balance;
  /* Even padding so swashes / descenders clear without skewing the lockup */
  padding: 0.12em 0.12em 0.36em 0.08em;
  margin: 0;
}

.title-word {
  display: inline-block;
  margin-right: 0.16em;
  vertical-align: baseline;
  transform: translateY(110%);
  opacity: 0;
}

/* Solid gold (no background-clip) — keeps baseline aligned with “Hotel” and avoids clipped descenders */
.title-word--brand {
  margin-right: 0;
  color: #e8cf94;
  text-shadow:
    0 1px 0 rgba(255, 248, 230, 0.22),
    0 2px 20px rgba(0, 0, 0, 0.45),
    0 10px 40px rgba(12, 4, 10, 0.45);
}

.hero-subtitle {
  max-width: 46ch;
  color: rgba(250, 246, 238, 0.95);
  font-size: clamp(1.06rem, 1.75vw, 1.28rem);
  line-height: 1.66;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 165, 100, 0.12);
  border: 1px solid rgba(200, 165, 100, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: 0.5rem;
  width: fit-content;
}

.hero-location-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== BUTTONS ===== */
.hero-cta,
.btn-primary,
.btn-outline {
  border: 1px solid var(--color-gold);
  border-radius: 0.62rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-block;
  text-align: center;
  transition: transform 0.45s var(--ease-premium), background 0.45s var(--ease-premium), color 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.hero-cta,
.btn-primary {
  background: linear-gradient(140deg, #d6b273, var(--color-antique-gold) 58%, #86673a);
  color: #1c1918;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta::before,
.btn-primary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  inset: -120% -35%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.55) 50%, transparent 62%);
  transform: translateX(-90%) rotate(8deg);
  transition: transform 0.9s var(--ease-premium);
  pointer-events: none;
}

.hero-cta:hover,
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(200, 165, 100, 0.35), 0 0 0 1px rgba(255, 241, 214, 0.28) inset;
}

.hero-cta:hover::before,
.btn-primary:hover::before,
.btn-outline:hover::before {
  transform: translateX(90%) rotate(8deg);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  padding: 0.85rem 1.25rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta-outline {
  background: rgba(8, 6, 12, 0.35);
  color: var(--color-cream);
  border-color: rgba(200, 165, 100, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta-outline:hover {
  background: rgba(200, 165, 100, 0.12);
  border-color: var(--color-gold);
}

.booking-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: clamp(0.25rem, 1.5vw, 0.5rem);
  opacity: 0;
  transform: translateY(20px);
}

/* ===== SECTIONS ===== */
section {
  position: relative;
  padding: clamp(6rem, 8vw, 8.5rem) 0;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 165, 100, 0.24), transparent);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.section-header.compact {
  margin-bottom: 1.2rem;
}

.section-label {
  font-family: var(--font-heading);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
  text-wrap: balance;
}

.section-description {
  margin-top: 0.95rem;
  color: rgba(250, 246, 238, 0.92);
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.68;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ROOMS ===== */
.rooms {
  background: linear-gradient(180deg, rgba(14, 13, 18, 0.65), rgba(17, 16, 21, 0.1));
}

.room-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.room-card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.27);
  transition: border-color 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
  will-change: transform;
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(120deg, rgba(200, 165, 100, 0.16), transparent 42%, rgba(255, 255, 255, 0.08) 58%, transparent 100%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 0.5s var(--ease-premium), transform 0.7s var(--ease-premium);
  pointer-events: none;
  z-index: 1;
}

.room-card:hover {
  border-color: rgba(200, 165, 100, 0.6);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4), 0 8px 30px rgba(200, 165, 100, 0.18);
}

.room-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.room-image-wrap {
  overflow: hidden;
  position: relative;
}

.room-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform-origin: center;
  filter: var(--photo-filter);
  transition: transform 0.9s var(--ease-premium), filter 0.6s ease;
  will-change: transform;
}

.room-card:hover .room-image {
  filter: var(--photo-filter-emphasis);
}

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}



.room-card:hover .room-image-overlay {
  opacity: 1;
}

.room-content {
  padding: 1.1rem;
  position: relative;
  z-index: 2;
}

.room-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-bottom: 0.8rem;
  transition: transform 0.4s var(--ease-premium), color 0.4s ease;
}

.room-card:hover .room-content h3 {
  transform: translateX(6px);
  color: var(--color-gold);
}

.room-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}

.room-specs li {
  background: rgba(247, 239, 227, 0.05);
  border: 1px solid rgba(200, 165, 100, 0.18);
  border-radius: 0.6rem;
  padding: 0.54rem;
  display: grid;
  gap: 0.2rem;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-premium);
}

.room-card:hover .room-specs li {
  border-color: rgba(200, 165, 100, 0.35);
  background: rgba(247, 239, 227, 0.08);
}

.room-specs span {
  color: rgba(250, 246, 238, 0.78);
  font-size: 0.82rem;
}

.room-specs strong {
  font-size: 0.98rem;
}

.room-icons {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.room-icons li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.9);
  transition: transform 0.35s var(--ease-premium);
}

.room-card:hover .room-icons li {
  transform: translateX(4px);
}

.room-icons svg,
.amenity-icon-item svg {
  width: 19px;
  height: 19px;
  fill: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-premium);
}

.room-card:hover .room-icons svg {
  transform: rotate(8deg) scale(1.15);
}

/* ===== ROOM GALLERY ===== */
.room-gallery {
  margin-top: 3rem;
}

.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(14, 14, 18, 0.76);
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--ease-premium), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.slider-btn:hover {
  transform: scale(1.12);
  border-color: rgba(200, 165, 100, 0.6);
  background: rgba(30, 24, 28, 0.88);
  box-shadow: 0 8px 24px rgba(200, 165, 100, 0.2);
}

.slider-track-wrap {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: #0f0f14;
}

.slider-track {
  display: flex;
  transition: transform 0.6s var(--ease-premium);
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  opacity: 0.5;
  transition: opacity 0.5s var(--ease-premium);
  pointer-events: none;
}

.slide img {
  height: clamp(260px, 52vw, 500px);
  object-fit: cover;
  cursor: zoom-in;
  filter: var(--photo-filter);
  transition: filter 0.55s ease;
}

.slide.active img {
  filter: var(--photo-filter-emphasis);
}

.slide figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.74rem;
  border-radius: 0.5rem;
  background: rgba(10, 10, 12, 0.84);
  border: 1px solid rgba(200, 165, 100, 0.28);
  transform: translateY(0);
  opacity: 1;
  transition: background 0.5s ease;
  z-index: 2;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ===== HORIZONTAL GALLERY ===== */
.horizontal-gallery {
  overflow: hidden;
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: linear-gradient(180deg, rgba(30, 20, 25, 0.2), rgba(14, 13, 18, 0.8));
}

.horizontal-gallery::before {
  display: none;
}

.horizontal-gallery-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.hg-item {
  width: clamp(300px, 35vw, 480px);
  height: clamp(220px, 28vw, 360px);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.hg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: filter 0.5s ease, transform 0.5s var(--ease-premium);
}

.hg-item:hover img {
  filter: var(--photo-filter-emphasis);
}

@media (max-width: 767px) {
  .horizontal-gallery {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .horizontal-gallery-inner {
    padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
    gap: 1rem;
  }

  .hg-item {
    scroll-snap-align: start;
  }
}

.hg-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 1;
}

.hg-item-overlay span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
}

/* ===== AMENITIES ===== */
.amenities {
  background: linear-gradient(180deg, rgba(17, 16, 21, 0), rgba(91, 16, 32, 0.18));
}

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

.amenity-feature {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 0.95rem;
  padding: 1.4rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium), background 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}

.amenity-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 165, 100, 0.08);
  position: absolute;
  top: -0.3rem;
  right: 0.6rem;
  line-height: 1;
  transition: color 0.5s ease, transform 0.5s var(--ease-premium);
  pointer-events: none;
}

.amenity-feature:hover .amenity-number {
  color: rgba(200, 165, 100, 0.2);
  transform: translateY(-4px) scale(1.05);
}

.amenity-feature::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 60%;
  height: 280%;
  transform: rotate(18deg);
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.8s var(--ease-premium);
  pointer-events: none;
}

.amenity-feature:hover::after {
  left: 115%;
}

.amenity-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 165, 100, 0.5);
  background: rgba(17, 18, 24, 0.92);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35), 0 0 40px rgba(200, 165, 100, 0.06);
}

.amenity-feature h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.62rem);
  margin-bottom: 0.45rem;
  transition: transform 0.4s var(--ease-premium), color 0.4s ease;
}

.amenity-feature:hover h3 {
  transform: translateX(5px);
  color: #edd09b;
}

.amenity-feature p {
  color: rgba(250, 246, 238, 0.9);
  font-size: 1rem;
  line-height: 1.62;
  position: relative;
  z-index: 1;
}

.amenity-icons {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.amenity-icon-item {
  background: rgba(247, 239, 227, 0.05);
  border: 1px solid rgba(200, 165, 100, 0.2);
  border-radius: 0.8rem;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  text-align: center;
  padding: 0.85rem 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  transition: transform 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), background 0.4s var(--ease-premium), box-shadow 0.4s ease;
}

.amenity-icon-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(200, 165, 100, 0.52);
  background: rgba(247, 239, 227, 0.09);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.amenity-icon-item svg {
  transition: transform 0.5s var(--ease-premium), filter 0.4s ease;
}

.amenity-icon-item:hover svg {
  transform: translateY(-4px) scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(200, 165, 100, 0.45));
}

/* ===== HISTORY ===== */
.history {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(16, 14, 18, 0.38));
}

.history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.history-content {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: clamp(1.15rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.distance-list {
  margin-top: 1.05rem;
  display: grid;
  gap: 0.75rem;
}

.distance-item {
  border: 1px solid rgba(200, 165, 100, 0.24);
  border-radius: 0.75rem;
  padding: 0.75rem;
  background: rgba(247, 239, 227, 0.05);
  transition: transform 0.4s var(--ease-premium), border-color 0.4s ease, box-shadow 0.4s ease;
}

.distance-item:hover {
  transform: translateX(6px);
  border-color: rgba(200, 165, 100, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.distance-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.12rem;
}

.history-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
}

/* ===== BOOKING ===== */
.booking {
  background: linear-gradient(180deg, rgba(91, 16, 32, 0.18), rgba(17, 16, 21, 0.04));
}

.booking-links-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-panel);
  padding: clamp(1rem, 2.4vw, 1.7rem);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.booking-links-panel:hover {
  border-color: rgba(200, 165, 100, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, rgba(17, 16, 21, 0.05), rgba(0, 0, 0, 0.26));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 1rem;
}

.contact-content,
.contact-card {
  background: linear-gradient(145deg, rgba(17, 18, 24, 0.95), rgba(12, 12, 16, 0.88));
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: clamp(1rem, 2.3vw, 1.8rem);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease-premium), border-color 0.5s ease, box-shadow 0.5s ease;
}

.contact-content:hover,
.contact-card:hover {
  border-color: rgba(200, 165, 100, 0.4);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  background: linear-gradient(155deg, rgba(200, 165, 100, 0.2), rgba(17, 18, 24, 0.92) 58%);
}

.contact-card .hero-cta {
  width: 100%;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
}

.contact-card .hero-cta::after {
  content: " →";
}

.contact-list {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.contact-list a {
  color: var(--color-gold);
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #edd09b;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.contact-card p {
  margin-bottom: 1rem;
  color: rgba(250, 246, 238, 0.9);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(200, 165, 100, 0.2);
  background: rgba(9, 10, 14, 0.86);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: rgba(250, 246, 238, 0.88);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ===== ROOM DETAILS OVERLAY ===== */
.room-details-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--ease-premium);
  padding: 2rem;
}

.room-details-overlay.active {
  opacity: 1;
  visibility: visible;
}

.room-details-container {
  width: min(1200px, 100%);
  max-height: 90vh;
  background: var(--color-dark-wood);
  border: 1px solid var(--color-border);
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-premium);
}

.room-details-container::-webkit-scrollbar {
  display: none;
}

.close-modal-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 0;
  color: var(--color-cream);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.4s var(--ease-premium), color 0.3s ease;
}

.close-modal-btn:hover {
  transform: rotate(90deg);
  color: var(--color-gold);
}

.room-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 600px;
}

.room-details-gallery {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-detail-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.main-detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 0.8s var(--ease-premium), filter 0.5s ease;
}

.detail-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.detail-thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.detail-thumbnail:hover,
.detail-thumbnail.active {
  opacity: 1;
  border-color: var(--color-gold);
}

.detail-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: filter 0.35s ease;
}

.detail-thumbnail:hover img,
.detail-thumbnail.active img {
  filter: var(--photo-filter-emphasis);
}

.room-details-info {
  padding: 4rem 3rem;
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.room-details-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-gold);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream-muted);
}

.spec-item strong {
  font-size: 1.05rem;
  color: var(--color-cream);
}

.detail-description {
  font-size: 1.08rem;
  line-height: 1.74;
  color: var(--color-cream-muted);
  font-weight: 400;
}

.detail-amenities-list h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-cream);
}

.detail-amenities-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.detail-amenities-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-cream-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-amenities-list li::before {
  content: "•";
  color: var(--color-gold);
}

.detail-booking {
  margin-top: auto;
  padding-top: 2rem;
}

@media (max-width: 920px) {
  .room-details-grid {
    grid-template-columns: 1fr;
  }

  .room-details-info {
    border-left: 0;
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 1.5rem;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 1400;
  padding: 1rem;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  width: min(1100px, 95vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.65rem;
  border: 1px solid rgba(200, 165, 100, 0.4);
  filter: var(--photo-filter-emphasis);
  animation: lightboxIn 0.5s var(--ease-premium);
}

@keyframes lightboxIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-cream);
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.2);
  color: var(--color-gold);
}

/* ===== CONTACT SOCIAL LINKS ===== */
.contact-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.social-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-gold);
  transition: all 0.3s var(--ease-premium);
  background: rgba(200, 165, 100, 0.05);
}

.social-contact-btn:hover {
  background: rgba(200, 165, 100, 0.15);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-contact-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-contact-btn.viber {
  color: #8f5db7;
}

.social-contact-btn.viber:hover {
  background: rgba(143, 93, 183, 0.15);
  border-color: #8f5db7;
}

.social-contact-btn.whatsapp {
  color: #25D366;
}

.social-contact-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  background: rgba(14, 13, 19, 0.92);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: none;
  cursor: pointer;
  z-index: 999;
  place-items: center;
  transition: transform 0.4s var(--ease-premium), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(200, 165, 100, 0.3);
  background: rgba(20, 18, 24, 0.95);
}

.scroll-to-top.visible {
  display: inline-grid;
}

/* ===== SCROLL REVEAL BASE ===== */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-scroll] {
    opacity: 1;
    transform: none;
  }

  .custom-cursor {
    display: none;
  }

  .preloader {
    display: none;
  }
}

@media (hover: none) {
  .custom-cursor {
    display: none;
  }
}

@media (max-width: 1100px) {
  .amenity-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenity-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .navbar {
    padding-inline: 0;
  }

  .nav-container {
    position: relative;
    width: 100%;
    padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "logo lang burger"
      "menu menu menu";
    grid-template-rows: auto;
    gap: 0.6rem 0.65rem;
    align-items: center;
  }

  .nav-logo {
    grid-area: logo;
    min-width: 0;
  }

  .logo-text {
    font-size: clamp(0.78rem, 3.4vw, 1.15rem);
    letter-spacing: 0.06em;
    line-height: 1.15;
  }

  .lang-switcher {
    grid-area: lang;
    justify-self: end;
    flex-shrink: 0;
  }

  .lang-btn {
    padding: 0.45rem 0.55rem;
    font-size: 0.7rem;
  }

  .hamburger {
    grid-area: burger;
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    grid-area: menu;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    z-index: 1001;
    margin: 0;
    padding: 0.85rem max(16px, env(safe-area-inset-left, 0px)) 1.15rem max(16px, env(safe-area-inset-right, 0px));
    background: rgba(12, 14, 20, 0.97);
    border-bottom: 1px solid rgba(200, 165, 100, 0.28);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    max-height: min(70vh, calc(100dvh - var(--header-height) - 12px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    display: block;
    font-size: 1.08rem;
    padding: 0.65rem 0.35rem;
    border-radius: 0.45rem;
  }

  .nav-link::after {
    bottom: 0.35rem;
    left: 0.35rem;
    width: calc(100% - 0.7rem);
  }

  .room-cards {
    grid-template-columns: 1fr;
  }

  .history-grid {
    grid-template-columns: 1fr;
  }

  .custom-cursor {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: calc(var(--header-height) + 2.75rem);
    padding-bottom: clamp(4.5rem, 18vw, 6rem);
  }

  .hero-accent {
    letter-spacing: 0.1em;
    padding: 0.45rem 0.85rem 0.45rem 0.75rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 10vw, 3.15rem);
    line-height: 1.16;
    letter-spacing: 0.005em;
    padding: 0.1em 0.08em 0.34em 0.06em;
  }

  .room-specs {
    grid-template-columns: 1fr;
  }

  .room-icons {
    grid-template-columns: 1fr;
  }

  .amenity-feature-grid,
  .amenity-icons {
    grid-template-columns: 1fr;
  }

  .custom-cursor {
    display: none;
  }
}