﻿/* 
  =========================================
  CROSSROADS HOTEL – LUXURY GOLD THEME
  =========================================
  Palette:
    Rich Gold      : #C9A84C
    Deep Navy      : #1A2040
    Warm Ivory     : #FAF6EF
    Champagne      : #F0E4C8
    Crimson Accent : #8B1A2D
  =========================================
*/

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

/* ─── TOP UTILITY BAR ───────────────────────────────── */
.topbar {
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #0E1020 0%, #1A2040 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar-inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left — contact info */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.70rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.topbar-item i {
  font-size: 0.68rem;
  color: #C9A84C;
  width: 12px;
  text-align: center;
}

.topbar-item:hover {
  color: rgba(255, 255, 255, 0.90);
}

/* divider between items */
.topbar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

/* Right — socials + lang */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  transition: all 0.2s ease;
}

.topbar-social-link:hover {
  border-color: #C9A84C;
  color: #C9A84C;
  background: rgba(201, 168, 76, 0.10);
}

/* Language selector */
.topbar-lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.70rem;
  color: rgba(255, 255, 255, 0.50);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  letter-spacing: 0.06em;
  position: relative;
}

.topbar-lang i {
  font-size: 0.62rem;
}

.topbar-lang:hover {
  border-color: rgba(173, 178, 212, 0.35);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(173, 178, 212, 0.08);
}

/* Language dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--text-ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  min-width: 120px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 300;
}

.topbar-lang:hover .lang-dropdown,
.topbar-lang:focus-within .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 9px 16px;
  font-size: 0.70rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(173, 178, 212, 0.10);
  color: rgba(255, 255, 255, 0.90);
}

.lang-option.active {
  color: var(--accent-mist);
}

/* Welcome message */
.topbar-welcome {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-welcome::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* Offset body so content starts below topbar + nav */
body {
  padding-top: 0px;
}

header {
  top: 40px;
  /* start below topbar */
}

header.sticky {
  top: 40px;
  /* stay below topbar unless topbar is hidden (JS will set to 0px) */
}

/* Responsive — hide non-essential items on mobile */
@media (max-width: 768px) {
  .topbar-welcome {
    display: none;
  }

  .topbar-item.tb-email {
    display: none;
  }

  .topbar-sep.tb-sep-email {
    display: none;
  }

  .topbar-lang .lang-label {
    display: none;
  }

  body {
    padding-top: 0px;
  }
}

@media (max-width: 480px) {
  .topbar-left {
    gap: 14px;
  }

  .topbar-socials {
    gap: 10px;
  }
}

/* --- 1. DESIGN TOKENS --- */
:root {
  /* Surface palette – warm ivory luxury */
  --surface-base: #FAF6EF;
  /* warm ivory */
  --surface-linen: #F0E4C8;
  /* champagne */
  --surface-sage: #1A2040;
  /* deep navy */
  --surface-card: rgba(255, 252, 245, 0.92);
  --surface-overlay: rgba(240, 228, 200, 0.65);

  /* Gold accent palette */
  --accent-gold: #C9A84C;
  /* rich gold */
  --accent-gold-deep: #A8872E;
  /* deeper gold */
  --accent-gold-light: #E8D08A;
  /* light gold */
  --accent-navy: #1A2040;
  /* deep navy */
  --accent-navy-mid: #2E3A6E;
  /* medium navy */
  --accent-crimson: #8B1A2D;
  /* crimson accent */

  /* Legacy aliases kept for compatibility */
  --accent-slate: #C9A84C;
  --accent-slate-deep: #A8872E;
  --accent-mist: #E8D08A;
  --accent-mist-deep: #C9A84C;
  --accent-on-dark: #F0E4C8;

  /* Typography */
  --text-ink: #0E1020;
  /* deep navy-black */
  --text-body: #2C2E3A;
  /* rich charcoal */
  --text-subtle: #6B6D7C;
  /* captions, labels */
  --text-ghost: #A8A9B4;
  /* placeholders */
  --text-dark: #0E1020;

  /* Gold tones */
  --gold-primary: #C9A84C;
  --gold-secondary: #A8872E;
  --gold-light: #F0E4C8;

  /* Borders */
  --rule: rgba(26, 32, 64, 0.10);
  --rule-accent: rgba(201, 168, 76, 0.35);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 28px rgba(201, 168, 76, 0.30);
  --shadow-gold: 0 6px 20px rgba(201, 168, 76, 0.35);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Geometry */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast: 100ms;
  --dur-base: 150ms;
  --dur-slow: 250ms;

  /* Layout */
  --nav-h: 60px;
  --nav-h-shrunk: 54px;
  --max-w: 1200px;
  --max-w-text: 680px;
  --blur-glass: blur(14px) saturate(1.5);
}

/* ─── 2. RESET ──────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--surface-base);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: page-appear var(--dur-slow) var(--ease-out) both;
}

@keyframes page-appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ─── 3. TYPOGRAPHY ─────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: var(--font-sans);
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* ─── 4. SCROLLBAR ──────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface-linen);
}

::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 4px;
  border: 2px solid var(--surface-linen);
}

::-webkit-scrollbar-thumb:hover {
  background: #A8872E;
}

/* ─── 5. LAYOUT UTILS ───────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section--linen {
  background: var(--surface-linen);
}

.section--sage {
  background: var(--surface-sage);
}

.section--base {
  background: var(--surface-base);
}

/* Glass card utility */
.glass {
  background: var(--surface-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--rule-accent);
  box-shadow: var(--shadow-md);
}

/* ─── 6. REVEAL ANIMATIONS ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.reveal-delay-3 {
  transition-delay: 360ms;
}

/* ─── 7. SECTION HEADER ─────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A8872E;
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--accent-slate);
  opacity: 0.6;
}

.section-subtitle::before {
  right: 100%;
  margin-right: -20px;
}

.section-subtitle::after {
  left: 100%;
  margin-left: -20px;
}

.section-title {
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #C9A84C, #E8D08A);
  margin: 0 auto 22px;
}

.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-subtle);
  font-size: 0.9rem;
}

/* ─── 8. BUTTONS ────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, #C9A84C 0%, #A8872E 100%);
  color: #fff;
  border: 1px solid #C9A84C;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A8872E 0%, #8A6E20 100%);
  border-color: #A8872E;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.40);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-ink);
  border: 1px solid currentColor;
}

.btn-outline:hover {
  background: #0E1020;
  border-color: #0E1020;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-slate-deep);
  border: 1px solid var(--rule-accent);
  padding: 10px 24px;
}

.btn-ghost:hover {
  background: var(--accent-slate);
  color: var(--text-ink);
  border-color: var(--accent-slate);
  transform: translateY(-2px);
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─── 9. BACK TO TOP & FLOAT WIDGET ──── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--surface-card);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--rule-accent);
  color: var(--text-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #C9A84C, #A8872E);
  color: #fff;
  border-color: #C9A84C;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.floating-book-btn {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: linear-gradient(135deg, #C9A84C, #A8872E);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  transition: all var(--dur-base) var(--ease-out);
}

.floating-book-btn:hover {
  background: linear-gradient(135deg, #A8872E, #7A6018);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

/* ─── 10. NAVIGATION ─────────────────── */
header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: height var(--dur-base) var(--ease-out),
    background var(--dur-base) ease,
    box-shadow var(--dur-base) ease;
}

header.sticky {
  position: fixed;
  top: 40px;
  /* always below topbar unless JS overrides */
  height: var(--nav-h-shrunk);
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-ink);
}

.logo a span {
  color: var(--accent-slate-deep);
}

.logo img {
  height: 55px;
  max-height: 100%;
  transition: height var(--dur-base) ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-item a {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4A4E62;
  /* distinct deep slate — clearly visible */
  padding: 5px 2px;
  position: relative;
  transition: color var(--dur-fast) ease;
}

/* Underline slide-in indicator */
.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: #C9A84C;
  transition: width var(--dur-base) var(--ease-out);
}

/* Hover state */
.nav-item a:hover {
  color: #A8872E;
}

.nav-item a:hover::after {
  width: 100%;
}

/* Active tab — pill highlight */
.nav-item a.active {
  color: #A8872E;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 100px;
  padding: 5px 12px;
}

.nav-item a.active::after {
  display: none;
  /* pill replaces underline for active */
}

.nav-cta a {
  font-size: 0.70rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-ink);
  border-radius: 1px;
  transition: all var(--dur-base) var(--ease-out);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: hero-drift 18s infinite alternate ease-in-out;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04);
    background-position: center 30%;
  }

  to {
    transform: scale(1.08);
    background-position: center 36%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 10, 15, 0.35) 0%,
      rgba(10, 10, 15, 0.60) 55%,
      rgba(10, 10, 15, 0.80) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 5% 60px;
  max-width: 760px;
}

.hero-tagline {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-mist);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fade-up 0.8s var(--ease-out) 0.2s both;
}

.hero-tagline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-mist);
}

.hero-title {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 300;
  line-height: 1.05;
  animation: fade-up 0.8s var(--ease-out) 0.4s both;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 42px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  animation: fade-up 0.8s var(--ease-out) 0.55s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 0.7s both;
}

/* White-themed hero buttons */
.hero-buttons .btn-primary {
  background: #fff;
  color: var(--text-ink);
  border-color: #fff;
}

.hero-buttons .btn-primary:hover {
  background: var(--accent-slate);
  border-color: var(--accent-slate);
  color: var(--text-ink);
}

.hero-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--dur-fast) ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator p {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--accent-mist);
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.8s infinite ease-in-out;
}

@keyframes scroll-wheel {
  0% {
    top: 7px;
    opacity: 1
  }

  80% {
    top: 20px;
    opacity: 0
  }

  100% {
    top: 7px;
    opacity: 0
  }
}

/* ─── 12. SUBPAGE HERO ───────────────── */
.subpage-hero {
  height: 32vh;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 15, 0.40) 0%, rgba(10, 10, 15, 0.72) 100%);
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 20px) 5% 20px;
}

.subpage-hero-title {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 14px;
}

.subpage-hero-breadcrumbs {
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.subpage-hero-breadcrumbs a {
  color: var(--accent-mist);
}

.subpage-hero-breadcrumbs a:hover {
  color: #fff;
}

/* ─── 13. BOOKING CARD ───────────────── */
.booking-section {
  padding: 0;
  margin-top: -64px;
  position: relative;
  z-index: 10;
}

.booking-card {
  padding: 38px 44px;
  border-radius: var(--radius-md);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) 160px;
  gap: 18px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  height: 48px;
  padding: 0 14px;
  background: var(--surface-base);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  color: var(--text-ink);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-slate);
  box-shadow: 0 0 0 3px rgba(173, 178, 212, 0.14);
  background: #fff;
}

.form-group select option {
  background: #fff;
  color: var(--text-ink);
}

.booking-form button {
  height: 48px;
  width: 100%;
}

/* ─── 14. FEATURED ROOMS ─────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.room-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--surface-base);
  transition: transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #C9A84C;
}

.room-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.room-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.room-card:hover .room-image-wrapper img {
  transform: scale(1.06);
}

.room-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rule-accent);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.room-price-badge span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-ink);
  font-weight: 500;
}

.room-info {
  padding: 28px 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.room-stars {
  color: #C9A84C;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.room-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.room-desc {
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.7;
}

.room-amenity-icons {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.room-amenity-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.room-amenity-icon i {
  color: var(--accent-slate-deep);
  font-size: 0.85rem;
}

.room-card .btn {
  width: 100%;
}

/* ─── 15. AMENITIES ──────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.amenity-card {
  padding: 38px 28px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
  background: var(--surface-base);
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.amenity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C9A84C, #E8D08A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-slate);
  background: #fff;
}

.amenity-card:hover::after {
  transform: scaleX(1);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.10), rgba(168, 135, 46, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.30);
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 22px;
  transition: all var(--dur-base) var(--ease-out);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, #C9A84C, #A8872E);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.amenity-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* ─── 16. GALLERY ────────────────────── */
.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
  margin-top: 40px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.75) 0%, rgba(10, 10, 15, 0.05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-slate);
  color: var(--text-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--dur-base) var(--ease-out);
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
  opacity: 1;
}

.gallery-title {
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-serif);
  font-weight: 400;
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--dur-base) var(--ease-out) 50ms;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) ease, visibility var(--dur-base) ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 82vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rule-accent);
  transform: scale(0.92);
  transition: transform var(--dur-base) var(--ease-out);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.lightbox.show .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.80);
  padding: 14px 22px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) ease;
  z-index: 1000;
}

.lightbox-nav:hover {
  background: var(--accent-slate);
  color: var(--text-ink);
  border-color: var(--accent-slate);
}

.lightbox-prev {
  left: 36px;
}

.lightbox-next {
  right: 36px;
}

/* ─── 17. ABOUT ──────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-text-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 22px;
  line-height: 1.25;
}

.about-text-content p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.about-features {
  margin: 28px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.about-features li i {
  color: var(--accent-slate-deep);
  width: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.stat-item {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
  background: var(--surface-linen);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--text-ink);
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
}

.about-image-side {
  position: relative;
  height: 540px;
}

.about-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: 36px;
  left: -36px;
  padding: 22px 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--rule-accent);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 180px;
}

.about-floating-card i {
  font-size: 1.6rem;
  color: var(--accent-slate-deep);
  margin-bottom: 8px;
  display: block;
}

.about-floating-card span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-ink);
}

/* ─── 18. TESTIMONIALS ───────────────── */
.testimonials-slider-container {
  max-width: 780px;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.55s var(--ease-out);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--accent-slate);
  opacity: 0.4;
  margin-bottom: 12px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: var(--text-ink);
  line-height: 1.55;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-img-wrapper {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--rule-accent);
  margin-bottom: 14px;
  background: var(--surface-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-ink);
  font-weight: 500;
}

.author-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-ink);
  margin-bottom: 3px;
}

.author-role {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-slate-deep);
  margin-bottom: 8px;
}

.testimonial-stars {
  color: var(--accent-slate-deep);
  font-size: 0.75rem;
  letter-spacing: 3px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rule);
  cursor: pointer;
  transition: all var(--dur-fast) ease;
}

.slider-dot.active {
  background: var(--accent-slate-deep);
  width: 22px;
  border-radius: 4px;
}

.slider-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-subtle);
  cursor: pointer;
  transition: color var(--dur-fast) ease;
}

.slider-arrow:hover {
  color: var(--accent-slate-deep);
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

/* ─── 19. OFFERS ─────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-base);
  border: 1px solid var(--rule);
  transition: all var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-slate);
}

.offer-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.offer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.offer-card:hover .offer-img-wrapper img {
  transform: scale(1.06);
}

.offer-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--text-ink);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-content {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 0.84rem;
  color: var(--text-subtle);
  margin-bottom: 18px;
  flex-grow: 1;
}

.offer-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}

.offer-old-price {
  text-decoration: line-through;
  color: var(--text-ghost);
  font-size: 0.85rem;
}

.offer-new-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-ink);
  font-weight: 500;
}

/* ─── 20. CONTACT ────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-linen);
  border: 1px solid var(--rule);
  color: var(--accent-slate-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.contact-info-details a:hover {
  color: var(--accent-slate-deep);
}

.map-container {
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface-linen);
  color: var(--text-subtle);
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--accent-slate-deep);
  margin-bottom: 10px;
}

.map-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 6px;
  display: block;
}

.contact-form-panel {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-control-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-control-group input,
.form-control-group textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--surface-base);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  color: var(--text-ink);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.form-control-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-control-group input:focus,
.form-control-group textarea:focus {
  border-color: var(--accent-slate);
  box-shadow: 0 0 0 3px rgba(173, 178, 212, 0.14);
  background: #fff;
}

.form-control-group input::placeholder,
.form-control-group textarea::placeholder {
  color: var(--text-ghost);
}

.form-error {
  color: #c0392b;
  font-size: 0.72rem;
  margin-top: 4px;
  display: none;
}

.form-control-group.invalid input,
.form-control-group.invalid textarea {
  border-color: #c0392b;
}

.form-control-group.invalid .form-error {
  display: block;
}

.form-success-msg {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.35);
  color: #218838;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-linen);
  border: 1px solid var(--rule);
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--dur-fast) ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #C9A84C, #A8872E) !important;
  border-color: #C9A84C !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
}

/* ─── 21. NEWS ───────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-base);
  border: 1px solid var(--rule);
  transition: all var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-slate);
}

.news-img-wrapper {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.news-card:hover .news-img-wrapper img {
  transform: scale(1.06);
}

.news-date {
  position: absolute;
  bottom: 14px;
  left: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  padding: 3px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-ink);
  border: 1px solid var(--rule-accent);
}

.news-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-desc {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-bottom: 18px;
  flex-grow: 1;
}

.news-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A8872E;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.news-link i {
  transition: transform var(--dur-fast) ease;
}

.news-card:hover .news-link i {
  transform: translateX(4px);
}

/* ─── 22. FOOTER ─────────────────────── */
footer {
  background: linear-gradient(180deg, #0E1020 0%, #1A2040 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.20);
  padding: 90px 0 36px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  margin-bottom: 64px;
}

.footer-column h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 1px;
  background: #C9A84C;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: #FAF6EF;
  margin-bottom: 14px;
  display: inline-block;
  font-weight: 500;
}

.footer-logo span {
  color: #C9A84C;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.55);
  margin-bottom: 22px;
  line-height: 1.75;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.50);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--dur-fast) ease;
}

.footer-links li a:hover {
  color: #C9A84C;
  transform: translateX(4px);
}

.newsletter-text {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.50);
  margin-bottom: 18px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  flex-grow: 1;
  height: 46px;
  padding: 0 52px 0 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  color: var(--text-ink);
  font-size: 0.84rem;
}

.newsletter-form input:focus {
  border-color: var(--accent-slate);
  background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input::placeholder {
  color: var(--text-ghost);
}

.newsletter-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #C9A84C, #A8872E);
  color: #fff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background var(--dur-fast) ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #A8872E, #7A6018);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.40);
  font-weight: 500;
  transition: color var(--dur-fast) ease;
}

.footer-bottom-links a:hover {
  color: #C9A84C;
}

/* ─── 23. PRELOADER ──────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: #FAF6EF;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-ink);
  letter-spacing: 0.12em;
}

.preloader-logo span {
  color: #C9A84C;
}

.preloader-bar {
  width: 120px;
  height: 1px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}

.preloader-progress {
  position: absolute;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #C9A84C, #E8D08A);
  animation: load-bar 1.8s infinite ease-in-out;
}

@keyframes load-bar {
  0% {
    left: -100%;
    width: 100%
  }

  100% {
    left: 100%;
    width: 100%
  }
}

/* ─── 24. KEYFRAME HELPERS ───────────── */

/* --- WHATSAPP BOOKING BUTTON --- */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #0a6b5e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40);
  color: #fff;
}

.btn-whatsapp i {
  font-size: 1rem;
}

/* Nav CTA area � holds both Book Now and WhatsApp */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Floating WhatsApp widget */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  left: 32px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 99;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  animation: wa-pulse 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.70), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

.floating-whatsapp-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0E1020;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
}

/* Nav WhatsApp button -- smaller for header */
.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.30);
  white-space: nowrap;
  text-decoration: none;
}

.nav-whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #0a6b5e);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}

.nav-whatsapp-btn i {
  font-size: 0.9rem;
}

/* Gold Book Now button in nav */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #C9A84C, #A8872E);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-xs);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 3px 10px rgba(201, 168, 76, 0.30);
  text-decoration: none;
  border: 1px solid #C9A84C;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, #A8872E, #8A6E20);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.45);
  color: #fff !important;
}

/* Hero override for gold hero buttons */
.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #C9A84C, #A8872E) !important;
  color: #fff !important;
  border-color: #C9A84C !important;
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #A8872E, #7A6018) !important;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.50) !important;
}

/* Scroll indicator gold wheel */
.scroll-wheel {
  background: #C9A84C;
}

/* Social icons hover gold */
.social-icon:hover {
  background: #C9A84C !important;
  border-color: #C9A84C !important;
  color: #fff !important;
}

/* Stats gold number */
.stat-number {
  color: #C9A84C;
}

/* Responsive: hide WhatsApp text on small screens */
@media (max-width: 1024px) {
  .nav-whatsapp-btn span {
    display: none;
  }

  .nav-whatsapp-btn {
    padding: 8px 12px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .nav-whatsapp-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-whatsapp-btn {
    display: none;
  }

  .floating-whatsapp {
    bottom: 80px;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── 25. RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-side {
    height: 420px;
    order: -1;
  }

  .about-floating-card {
    left: 16px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 50px;
  }

  .section {
    padding: 40px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000000;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-left: 1px solid var(--rule);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    z-index: 100;
    transition: right var(--dur-base) var(--ease-out);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    right: 0;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    align-items: center;
  }

  .hero-content {
    padding: 0px 5% 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .booking-section {
    margin-top: -40px;
  }

  .booking-card {
    padding: 24px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .slider-arrow {
    display: none;
  }

  .testimonials-slider-container {
    padding: 0 0 30px;
  }

  .testimonial-slide {
    padding: 0 10px;
  }

  .gallery-grid {
    columns: 2 200px;
  }

  .about-image-side {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }

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

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

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .floating-book-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 0.68rem;
  }
}

/* Home page specific nav colors */
.home-nav .nav-item a {
  color: #FFFFFF;
}

.home-nav .nav-item a:hover {
  color: #A8872E;
}

.home-nav.sticky .nav-item a {
  color: #FFFFFF;
}

.home-nav.sticky .nav-item a:hover {
  color: #A8872E;
}

/* -- MOBILE TOP MARGIN & RESPONSIVE FIXES -- */
@media (max-width: 768px) {
  .logo img {
    height: 40px !important;
  }

  .subpage-hero {
    height: auto !important;
    min-height: 200px !important;
  }

  .subpage-hero-content {
    padding: calc(var(--nav-h) + 10px) 5% 16px !important;
  }

  .subpage-hero-title {
    font-size: 1.5rem !important;
    margin-bottom: 4px !important;
  }

  .section-header {
    margin-bottom: 18px !important;
  }

  .section {
    padding: 28px 0 !important;
  }
}