@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --bg:          #090b11;
  --bg-card:     #0f1320;
  --bg-alt:      #0c1019;
  --bg-section:  #111827;
  --gold:        #c9a96e;
  --gold-light:  #e8c99a;
  --gold-dark:   #9d7d50;
  --gold-bg:     rgba(201, 169, 110, 0.07);
  --gold-border: rgba(201, 169, 110, 0.3);
  --cream:       #f0ebe0;
  --text:        #8a8fa0;
  --text-light:  #5e6270;
  --white:       #ffffff;
  --border:      rgba(255, 255, 255, 0.07);
  --shadow:      0 24px 64px rgba(0, 0, 0, 0.5);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;

  --max-w:   1200px;
  --nav-h:   180px;

  --t:       0.35s ease;
  --t-slow:  0.7s ease;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 14px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--cream);
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: clamp(80px, 10vw, 130px) 0; }

.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text);
  max-width: 560px;
  line-height: 1.85;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .eyebrow { justify-content: center; }

/* Gold divider */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: var(--gold-dark);
  font-size: 12px;
}
.gold-rule::before, .gold-rule::after {
  flex: 1;
  content: '';
  height: 1px;
  background: var(--gold-border);
}

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}

.nav.scrolled {
  background: rgba(9, 11, 17, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 168px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(450%) hue-rotate(2deg) brightness(98%);
}
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.nav__logo-sub {
  font-size: 8px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.72);
  font-weight: 600;
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 13px;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--t);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--t);
}
.btn:hover::after { background: rgba(255, 255, 255, 0.06); }

.btn--gold {
  background: var(--gold);
  color: #060810;
}
.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold-border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn--ghost:hover { background: rgba(201, 169, 110, 0.18); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  transition: gap var(--t), color var(--t);
}
.btn-arrow:hover { gap: 16px; color: var(--gold-light); }
.btn-arrow span { display: block; }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1s ease;
}
.page-hero__bg.loaded { transform: scale(1); }

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,11,17,0.9) 0%, rgba(9,11,17,0.4) 60%, rgba(9,11,17,0.2) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.page-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: var(--cream);
  margin-top: 12px;
}

/* ===========================
   HOMEPAGE HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Slideshow slides */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity;
}
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9, 11, 17, 0.35) 0%,
    rgba(9, 11, 17, 0.55) 45%,
    rgba(9, 11, 17, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 920px;
}

.hero__est {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.3s forwards;
}
.hero__est::before, .hero__est::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(201, 169, 110, 0.4);
}

.hero__title {
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(240, 235, 224, 0.62);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(240, 235, 224, 0.35);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  animation: fadeIn 1s ease 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ===========================
   FEATURES BAR
=========================== */
.features-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.features-bar__inner {
  display: flex;
  justify-content: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 44px;
  border-right: 1px solid var(--border);
  transition: background var(--t);
}
.feature-item:first-child { border-left: 1px solid var(--border); }
.feature-item:hover { background: var(--gold-bg); }
.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-item__name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
}
.feature-item__desc {
  font-size: 12px;
  color: var(--text-light);
}

/* ===========================
   FEATURED ROOMS (homepage)
=========================== */
.rooms-preview { background: var(--bg); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bg-card);
}
.room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.room-card:hover .room-card__img { transform: scale(1.06); }

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,11,17,0.92) 0%, rgba(9,11,17,0.1) 60%);
  transition: opacity var(--t);
}
.room-card:hover .room-card__overlay { opacity: 0.95; }

.room-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  transform: translateY(0);
  transition: transform var(--t-slow);
}
.room-card__type {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.room-card__name {
  font-size: 22px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 6px;
}
.room-card__price {
  font-size: 14px;
  color: rgba(240, 235, 224, 0.6);
}
.room-card__price strong {
  color: var(--gold-light);
  font-size: 18px;
  font-family: var(--font-heading);
}
.room-card__details {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t);
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}
.room-card:hover .room-card__details {
  opacity: 1;
  transform: translateY(0);
}
.room-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  transition: opacity var(--t);
}
.room-card:hover .room-card__cta { opacity: 1; }

/* ===========================
   QUOTE / TESTIMONIAL SECTION
=========================== */
.quote-section {
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 320px;
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: var(--cream);
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
.quote-attr {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   GALLERY PREVIEW (homepage)
=========================== */
.gallery-preview { background: var(--bg); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-top: 60px;
}
.gallery-preview-grid .gp-item { overflow: hidden; cursor: pointer; }
.gallery-preview-grid .gp-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
.gallery-preview-grid .gp-item:nth-child(4) { grid-column: 4 / 5; grid-row: 1 / 3; }
.gallery-preview-grid .gp-item:nth-child(5) { grid-column: 1 / 2; grid-row: 2 / 3; }
.gp-item { position: relative; }
.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gp-item:hover img { transform: scale(1.06); }
.gp-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 17, 0.2);
  transition: background var(--t);
}
.gp-item:hover .gp-item__overlay { background: rgba(9, 11, 17, 0.5); }
.gp-item__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gp-item:hover .gp-item__zoom { opacity: 1; }
.gp-item__zoom svg { color: var(--gold); width: 32px; height: 32px; }

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

/* ===========================
   ROOMS PAGE
=========================== */
.rooms-page { background: var(--bg); }

.rooms-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 60px;
}

.room-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--bg-card);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.room-full-card:hover {
  box-shadow: 0 0 0 1px var(--gold-border);
  z-index: 1;
  position: relative;
}

.room-full-card--reversed .room-full-card__image { order: 2; }
.room-full-card--reversed .room-full-card__info { order: 1; }

.room-full-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.room-full-card__image {
  overflow: hidden;
  position: relative;
  max-height: 520px;
  align-self: center;
}
.room-full-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.7s ease;
}
.room-full-card:hover .room-full-card__image img { transform: scale(1.04); }

.room-full-card__info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-full-card__type {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.room-full-card__name {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 20px;
}
.room-full-card__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
}
.room-full-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.meta-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text);
  font-weight: 500;
}
.meta-tag svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }
.room-full-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.room-price {
  display: flex;
  flex-direction: column;
}
.room-price__from {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.room-price__amount {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--cream);
  line-height: 1.1;
}
.room-price__amount span {
  font-size: 16px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 4px;
}

/* Room amenities list */
.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text);
}
.room-amenity::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   GALLERY PAGE
=========================== */
.gallery-page { background: var(--bg); }

.gallery-grid {
  columns: 3;
  column-gap: 3px;
  margin-top: 60px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 17, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; background: rgba(9, 11, 17, 0.45); }
.gallery-item__overlay svg { color: var(--gold); width: 36px; height: 36px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9, 11, 17, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(10px);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all var(--t);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-bg);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ===========================
   AMENITIES PAGE
=========================== */
.amenities-page { background: var(--bg); }

.amenities-intro {
  background: var(--bg);
  padding-bottom: 0;
}

.amenity-category {
  padding: clamp(70px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--border);
}
.amenity-category:last-child { border-bottom: none; }
.amenity-category:nth-child(even) { background: var(--bg-alt); }

.amenity-category__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.amenity-category__inner--reversed .amenity-category__image { order: 2; }
.amenity-category__inner--reversed .amenity-category__content { order: 1; }

.amenity-category__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.amenity-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.amenity-category:hover .amenity-category__image img { transform: scale(1.04); }
.amenity-category__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  pointer-events: none;
}
.amenity-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 11, 17, 0.82);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  z-index: 2;
}
.amenity-badge svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.amenity-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.amenity-badge__title {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.amenity-badge__sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.amenity-category__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 4px;
}
.amenity-category__desc {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 32px;
}
.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.amenity-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  padding: 10px 14px;
  background: var(--gold-bg);
  border: 1px solid transparent;
  transition: border-color var(--t), color var(--t);
}
.amenity-tag:hover { border-color: var(--gold-border); color: var(--cream); }
.amenity-tag svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }

/* ===========================
   ABOUT PAGE
=========================== */
.about-page { background: var(--bg); }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__image {
  position: relative;
}
.about-intro__image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-intro__image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  backdrop-filter: blur(10px);
}
.about-intro__image-badge .year {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}
.about-intro__image-badge .est-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.about-intro__text p {
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-intro__text p:last-child { margin-bottom: 0; }
.about-intro__text .lead {
  font-size: 18px;
  color: rgba(240, 235, 224, 0.8);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Timeline */
.timeline-section { background: var(--bg-alt); }
.timeline {
  position: relative;
  padding: 40px 0;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--gold-border);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 56px;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--gold-bg), 0 0 0 5px var(--gold-border);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.timeline-desc {
  font-size: 14px;
  line-height: 1.75;
  max-width: 240px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.team-card {
  text-align: center;
}
.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
  transition: filter var(--t);
  filter: grayscale(20%);
}
.team-card:hover .team-card__img { filter: grayscale(0%); }
.team-card__name {
  font-size: 18px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info__title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}
.contact-info__desc {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 48px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; }
.contact-detail__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.6;
}

/* ===========================
   FORMS (contact + booking)
=========================== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 52px 48px;
}

.form-group {
  margin-bottom: 22px;
}
.form-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 400;
  transition: border-color var(--t), background var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-border);
  background: rgba(201, 169, 110, 0.04);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a96e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: var(--bg-card); color: var(--cream); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 12px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.25em;
}

/* ===========================
   BOOKING PAGE
=========================== */
.booking-page { background: var(--bg); }

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.booking-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
}
.booking-summary__title {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.booking-policy {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.booking-policy p {
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.policy-item svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #06080e;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2px;
}
.footer__brand-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--t);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__col-title {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a {
  font-size: 14px;
  color: var(--text);
  transition: color var(--t), padding-left var(--t);
}
.footer__links a:hover { color: var(--cream); padding-left: 6px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}
.footer__contact-item svg { color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12.5px;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a { transition: color var(--t); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ===========================
   ANIMATIONS & SCROLL REVEAL
=========================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].revealed { transform: scale(1); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ===========================
   SUCCESS MESSAGE
=========================== */
.success-msg {
  display: none;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 16px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-top: 16px;
  text-align: center;
}
.success-msg.show { display: block; }

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav__menu { gap: 22px; }
  .rooms-full-grid { grid-template-columns: 1fr; }
  .room-full-card--wide { grid-column: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .gallery-grid { columns: 2; }
  .about-intro { gap: 50px; }
  .amenity-category__inner { gap: 50px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; }
  .gallery-preview-grid .gp-item:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
  .features-bar__inner { flex-wrap: wrap; justify-content: flex-start; }
  .feature-item { flex: 0 0 calc(50% - 1px); border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 8, 14, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
    z-index: 990;
  }
  .nav__menu.open { opacity: 1; pointer-events: all; }
  .nav__link { font-size: 14px; letter-spacing: 0.25em; }
  .nav__book { display: none; }
  .nav__hamburger { display: flex; }
  .nav__container { padding: 0 20px; }

  /* Hero */
  .hero__title { font-size: clamp(40px, 11vw, 60px); }
  .hero__subtitle { font-size: 14px; }
  .hero__actions { flex-direction: column; align-items: center; }

  /* Page hero */
  .page-hero { height: 300px; }
  .page-hero__content { padding: 40px 20px; }
  .page-hero__title { font-size: clamp(28px, 7vw, 42px); }

  /* Features */
  .features-bar__inner { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); flex: 1 0 100%; padding: 20px 24px; }
  .feature-item:first-child { border-left: none; }

  /* Rooms grid */
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card { aspect-ratio: 4/3; }

  /* Gallery preview */
  .gallery-preview-grid { columns: 2; grid-template-columns: unset; grid-template-rows: unset; display: block; margin-top: 30px; }
  .gallery-preview-grid .gp-item { aspect-ratio: 1; margin-bottom: 3px; break-inside: avoid; }
  .gallery-preview-grid .gp-item:nth-child(1),
  .gallery-preview-grid .gp-item:nth-child(4) { grid-column: unset; grid-row: unset; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }

  /* Room cards (rooms page) */
  .room-full-card { grid-template-columns: 1fr; min-height: auto; }
  .room-full-card__image { aspect-ratio: 16/9; height: 260px; }
  .room-full-card__info { padding: 32px 28px; }
  .room-full-card--reversed .room-full-card__image { order: 0; }
  .room-full-card--reversed .room-full-card__info { order: 0; }
  .rooms-full-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Gallery */
  .gallery-grid { columns: 2; }

  /* Amenities */
  .amenity-category__inner { grid-template-columns: 1fr; gap: 36px; }
  .amenity-category__inner--reversed .amenity-category__image { order: 0; }
  .amenity-category__inner--reversed .amenity-category__content { order: 0; }

  /* About */
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-intro__image-badge { right: 0; bottom: -20px; width: 120px; height: 120px; }
  .timeline::before { left: 20px; }
  .timeline-item { padding-right: 0; padding-left: 52px; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 52px; }
  .timeline-item::before { left: 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .room-amenities { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: 1fr; }
  .hero__est::before, .hero__est::after { width: 28px; }
}
