/* ============================================================
   THE KANDY GRAND HOTEL  Main Stylesheet
   Luxury Hotel Website
   ============================================================ */

/*  Google Fonts  */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/*  CSS Variables  */
:root {
  /* Palette */
  --clr-primary:     #15B8D9;
  --clr-primary-light: #56D4EA;
  --clr-primary-dark:  #0F8FA9;
  --clr-secondary:   gold;
  --clr-secondary-light: #FFE08A;
  --clr-secondary-dark:  #C69500;
  /* Backward-compatible aliases used throughout the stylesheet */
  --clr-gold:        var(--clr-primary);
  --clr-gold-light:  var(--clr-primary-light);
  --clr-gold-dark:   var(--clr-primary-dark);
  --clr-black:       #0D0D0D;
  --clr-charcoal:    #1A1A1A;
  --clr-dark:        #242424;
  --clr-mid:         #3D3D3D;
  --clr-muted:       #888;
  --clr-light-text:  #B0B0B0;
  --clr-white:       #FFFFFF;
  --clr-off-white:   #FAF9F6;
  --clr-cream:       #F5F0E8;
  --clr-bg:          #FAFAFA;
  --clr-border:      #E8E2D8;
  --clr-shadow:      rgba(0,0,0,0.08);

  /* Accent states */
  --clr-success:     #2E7D5B;
  --clr-error:       #C0392B;
  --clr-warning:     #D97706;
  --clr-info:        #1D6FA4;

  /* Typography */
  --font-serif:      'Playfair Display', 'Georgia', serif;
  --font-display:    'Cormorant Garamond', 'Georgia', serif;
  --font-sans:       'Inter', 'Helvetica Neue', sans-serif;

  /* Sizing */
  --radius-sm:       4px;
  --radius-md:       8px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --radius-pill:     999px;

  /* Shadows */
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:       0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:       0 16px 60px rgba(0,0,0,0.16);
  --shadow-gold:     0 4px 24px rgba(21,184,217,0.28);

  /* Transitions */
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width:       1280px;
  --nav-height:      80px;
}

/*  Reset & Base  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* prevent horizontal scroll on iOS Safari */
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-charcoal);
  background: var(--clr-white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/*  Preloader  */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  background: var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px; height: 40px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes pulse   { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes slideLeft { from { transform:translateX(40px); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes shimmer { from { background-position: -200% 0; } to { background-position: 200% 0; } }

/*  Container  */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/*  Typography  */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--clr-black);
  font-weight: 600;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--clr-black);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-muted);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
}

.gold-text { color: var(--clr-gold); }
.text-center { text-align: center; }
.text-muted { color: var(--clr-muted); }

/*  Gold Divider  */
.gold-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  margin: 16px 0 24px;
}

.gold-divider.center { margin: 16px auto 24px; }

/*  Section Spacing  */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }
.section-bg { background: var(--clr-off-white); }
.section-dark { background: var(--clr-charcoal); }

/*  Buttons  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--clr-black);
  border-color: var(--clr-black);
}

.btn-outline-dark:hover {
  background: var(--clr-black);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.btn-outline-gold:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--clr-black);
  color: var(--clr-white);
  border-color: var(--clr-black);
}

.btn-dark:hover {
  background: var(--clr-charcoal);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.76rem; }
.btn-lg { padding: 18px 44px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/*  Navigation  */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
}

.navbar.transparent { background: transparent; }

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.12), 0 8px 40px rgba(0,0,0,0.4);
}

.navbar.light-mode {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 20px rgba(0,0,0,0.05);
}

/*  Nav inner wrapper */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/*  Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-bar {
  display: block;
  width: 3px;
  height: 34px;
  background: linear-gradient(180deg, var(--clr-gold) 60%, transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  transition: color 0.3s;
}

.navbar.light-mode .nav-logo-text { color: var(--clr-black); }

.nav-logo-text em {
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-family: var(--font-sans);
  margin-top: 2px;
}

/*  Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 9px 12px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  text-decoration: none;
}

.nav-item::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--clr-gold);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item:hover,
.nav-item.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.06);
}

.nav-item:hover::before,
.nav-item.active::before {
  transform: translateX(-50%) scale(1);
}

.navbar.light-mode .nav-item { color: rgba(20,20,20,0.65); }

.navbar.light-mode .nav-item:hover,
.navbar.light-mode .nav-item.active {
  color: var(--clr-black);
  background: rgba(0,0,0,0.04);
}

/*  Right side: Book Now + burger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-book {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111 !important;
  background: var(--clr-gold);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 14px rgba(201,168,76,0.3);
  white-space: nowrap;
  text-decoration: none;
}

.nav-book:hover {
  background: var(--clr-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.42);
}

/*  Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-burger:hover { background: rgba(255,255,255,0.08); }
.navbar.light-mode .nav-burger:hover { background: rgba(0,0,0,0.05); }

.burger-line {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1), opacity 0.3s;
}

.navbar.light-mode .burger-line { background: var(--clr-charcoal); }

.nav-burger.open .burger-line:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.open .burger-line:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/*  Full-screen overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 999;
  display: grid;
  place-items: center;
  clip-path: circle(0% at calc(100% - 60px) 36px);
  transition: clip-path 0.65s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
}

.nav-overlay.open {
  clip-path: circle(160% at calc(100% - 60px) 36px);
  pointer-events: all;
}

.overlay-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 48px;
  width: 100%;
  max-width: 560px;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.overlay-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  opacity: 0;
  transform: translateY(18px);
}

.nav-overlay.open .overlay-link {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.25s, padding-left 0.25s,
              opacity 0.5s cubic-bezier(0.22,1,0.36,1),
              transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.nav-overlay.open .overlay-link:nth-child(1) { transition-delay: 0.10s; }
.nav-overlay.open .overlay-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open .overlay-link:nth-child(3) { transition-delay: 0.20s; }
.nav-overlay.open .overlay-link:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open .overlay-link:nth-child(5) { transition-delay: 0.30s; }
.nav-overlay.open .overlay-link:nth-child(6) { transition-delay: 0.35s; }
.nav-overlay.open .overlay-link:nth-child(7) { transition-delay: 0.40s; }

.overlay-link:hover { color: rgba(255,255,255,0.85); padding-left: 10px; }
.overlay-link.active { color: var(--clr-gold); }

.ol-num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--clr-gold);
  min-width: 22px;
  line-height: 1;
}

.overlay-book {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111 !important;
  background: var(--clr-gold);
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, gap 0.3s;
  opacity: 0;
  transform: translateY(10px);
}

.nav-overlay.open .overlay-book {
  opacity: 1;
  transform: translateY(0);
  transition: background 0.25s, gap 0.3s,
              opacity 0.4s ease 0.50s,
              transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.50s;
}

.overlay-book:hover { background: var(--clr-gold-dark); gap: 18px; }

.overlay-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  transform: translateY(6px);
}

.nav-overlay.open .overlay-footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.58s, transform 0.4s ease 0.58s;
}

.overlay-dot { font-size: 1rem; }

/*  Legacy logo (used by footer) */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  background: var(--clr-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-white);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-family: var(--font-sans);
}

/*  Hero  */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0a;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.04);
}

.hero-slide.is-active .hero-slide-image {
  animation: heroKenBurns 8s ease forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.03); }
  to   { transform: scale(1.13); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay-gradient {
  z-index: -2;
  background: linear-gradient(
    102deg,
    rgba(8,5,4,0.4) 0%,
    rgba(24,14,8,0.3) 42%,
    rgba(20,15,12,0.2) 62%,
    rgba(9,8,8,0.4) 100%
  );
}

.hero-overlay-vignette {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 20%, rgba(45,65,85,0.1) 0%, rgba(6,6,6,0.05) 32%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 32%, rgba(0,0,0,0) 70%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: 34px;
  padding-top: calc(var(--nav-height) + 36px);
  padding-bottom: 84px;
}

.hero-content {
  max-width: 640px;
  align-self: end;
  margin-top: 0;
  text-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 244, 219, 0.86);
  margin-bottom: 12px;
}

.hero-tag-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229,192,138,0.15), rgba(229,192,138,0.95));
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.95rem, 4.2vw, 3.35rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 10px;
  letter-spacing: 0.015em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #ecd8ba;
}

.hero-subtitle {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.84);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 138px;
  padding: 11px 21px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  justify-content: center;
}

.hero-btn-main {
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.24), 0 16px 42px rgba(8,68,84,0.45);
}

.hero-booking-meta {
  margin-top: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-booking-panel {
  width: min(100%, 370px);
  justify-self: end;
}

.hero-booking-mobile {
  display: none;
}

.hero-booking-mobile .booking-bar {
  margin-top: 0 !important;
}

.booking-bar.booking-bar-hero {
  margin-top: 0;
  padding: 20px 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.52);
  background: linear-gradient(156deg, rgba(10,13,17,0.76) 0%, rgba(35,23,15,0.56) 100%);
  box-shadow: 0 22px 44px rgba(0,0,0,0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-booking-head {
  margin-bottom: 12px;
}

.hero-booking-kicker {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
}

.hero-booking-note {
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}

.booking-bar.booking-bar-hero .booking-bar-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.booking-bar.booking-bar-hero .booking-bar-grid > :last-child {
  grid-column: auto;
}

.booking-bar.booking-bar-hero .booking-field label {
  color: rgba(255,255,255,0.76);
  margin-bottom: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.booking-bar.booking-bar-hero .booking-field input,
.booking-bar.booking-bar-hero .booking-field select {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.2);
  color: #1f1f1f;
  padding: 10px 13px;
  font-size: 0.84rem;
  border-radius: 8px;
  min-height: 42px;
}

.booking-bar.booking-bar-hero .booking-field input:focus,
.booking-bar.booking-bar-hero .booking-field select:focus {
  border-color: rgba(236,216,186,0.85);
  box-shadow: 0 0 0 3px rgba(236,216,186,0.18);
}

.hero-booking-submit {
  min-height: 44px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.hero-preview-nav {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-preview-nav.is-hidden { display: none; }

.hero-preview {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  padding: 3px;
  border-radius: 50%;
  border: 1.3px solid rgba(255,255,255,0.78);
  background: rgba(7,12,18,0.42);
  box-shadow: 0 10px 26px rgba(0,0,0,0.34);
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-preview-left { left: clamp(10px, 2vw, 30px); }
.hero-preview-right { right: clamp(10px, 2vw, 30px); }

.hero-preview:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: rgba(255,255,255,0.96);
  box-shadow: 0 16px 30px rgba(0,0,0,0.42);
}

.hero-preview:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(236,216,186,0.4), 0 16px 30px rgba(0,0,0,0.42);
}

.hero-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-controls {
  position: absolute;
  right: min(5vw, 52px);
  bottom: 34px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-controls.is-hidden { display: none; }

.hero-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 2px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.42);
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: #f1ddbe;
}

.hero-animate {
  opacity: 0;
  transform: translateY(22px);
}

.hero-content.is-animating .hero-animate {
  animation: heroTextUp 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-content.is-animating .hero-animate-1 { animation-delay: 0.1s; }
.hero-content.is-animating .hero-animate-2 { animation-delay: 0.22s; }
.hero-content.is-animating .hero-animate-3 { animation-delay: 0.35s; }
.hero-content.is-animating .hero-animate-4 { animation-delay: 0.48s; }
.hero-content.is-animating .hero-animate-5 { animation-delay: 0.62s; }

@keyframes heroTextUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*  Quick Booking Bar  */
.booking-bar {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px 32px;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.booking-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.booking-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 8px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--clr-charcoal);
  background: var(--clr-off-white);
  transition: var(--transition);
  appearance: none;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

/*  Cards  */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* Room Card */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.room-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-card-image img {
  transform: scale(1.08);
}

.room-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--clr-gold);
  color: var(--clr-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

.room-card-badge.unavailable {
  background: var(--clr-mid);
}

.room-card-body {
  padding: 24px;
}

.room-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.room-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-muted);
}

.room-card-meta-item i { color: var(--clr-gold); font-size: 0.75rem; }

.room-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.room-card-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.room-price-amount {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.room-price-label {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.room-card-actions {
  display: flex;
  gap: 8px;
}

/* Grid layouts */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/*  Review Card  */
.review-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-gold);
  opacity: 0.15;
}

.review-stars { margin-bottom: 12px; }
.review-stars i { color: var(--clr-gold); font-size: 0.85rem; }

.review-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-black);
}

.review-author-meta {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

/*  Amenity Card  */
.amenity-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--clr-border);
}

.amenity-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--clr-gold);
}

.amenity-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--clr-cream);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.amenity-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/*  Stats  */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/*  Gallery  */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--clr-white);
  transform: scale(0.8);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/*  Gallery Filter  */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  color: var(--clr-muted);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

/*  Forms  */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--clr-charcoal);
  background: var(--clr-white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-control::placeholder { color: var(--clr-light-text); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-error);
  margin-top: 5px;
}

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 5px;
}

/* Star Rating Input */
.star-input { display: flex; gap: 4px; }

.star-input label {
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--clr-border);
  transition: color 0.2s;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.star-input input { display: none; }
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label {
  color: var(--clr-gold);
}

/*  Alerts + Toasts  */
.alert {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-left-width: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.24s ease;
}

.alert > * {
  flex: 1;
  min-width: 0;
}

.alert strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.alert ul {
  list-style: disc;
  padding-left: 18px;
  margin-top: 8px;
}

.alert li + li { margin-top: 4px; }

.alert-success {
  background: rgba(46,125,91,0.12);
  border-color: rgba(46,125,91,0.3);
  color: var(--clr-success);
}

.alert-error {
  background: rgba(192,57,43,0.12);
  border-color: rgba(192,57,43,0.35);
  color: var(--clr-error);
}

.alert-warning {
  background: rgba(217,119,6,0.12);
  border-color: rgba(217,119,6,0.34);
  color: var(--clr-warning);
}

.alert-info {
  background: rgba(29,111,164,0.12);
  border-color: rgba(29,111,164,0.32);
  color: var(--clr-info);
}

.alert-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.65);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.alert-close:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.toast-stack {
  position: fixed;
  top: calc(var(--nav-height) + 10px);
  right: clamp(12px, 2vw, 24px);
  width: min(420px, calc(100vw - 24px));
  z-index: 6000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  --toast-accent: var(--clr-info);
  --toast-soft: rgba(29,111,164,0.14);
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbfe 100%);
  border: 1px solid rgba(26,26,26,0.12);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
  padding: 14px 14px 16px;
  overflow: hidden;
  transform: translateY(-8px) scale(0.985);
  opacity: 0;
  animation: toastIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--toast-accent);
}

.toast-success {
  --toast-accent: var(--clr-success);
  --toast-soft: rgba(46,125,91,0.14);
}

.toast-error {
  --toast-accent: var(--clr-error);
  --toast-soft: rgba(192,57,43,0.16);
}

.toast-warning {
  --toast-accent: var(--clr-warning);
  --toast-soft: rgba(217,119,6,0.16);
}

.toast-info {
  --toast-accent: var(--clr-info);
  --toast-soft: rgba(29,111,164,0.14);
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--toast-soft);
  color: var(--toast-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.toast-content {
  min-width: 0;
  padding-right: 2px;
}

.toast-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--toast-accent);
  margin: 2px 0 4px;
}

.toast-message {
  margin: 0;
  color: var(--clr-dark);
  font-size: 0.875rem;
  line-height: 1.45;
}

.toast-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
  color: #60646d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.toast-close:hover {
  color: #151922;
  background: rgba(255,255,255,0.98);
  transform: translateY(-1px);
}

.toast-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(0,0,0,0.06);
}

.toast-progress::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--toast-accent);
  transform-origin: left center;
  animation: toastProgress var(--toast-duration, 5200ms) linear forwards;
}

.toast.is-paused .toast-progress::before {
  animation-play-state: paused;
}

.toast.is-hiding {
  animation: toastOut 0.26s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-8px) scale(0.97); }
}

@keyframes toastProgress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

@media (max-width: 680px) {
  .toast-stack {
    right: 12px;
    left: 12px;
    width: auto;
    top: calc(var(--nav-height) + 8px);
  }

  .toast {
    padding: 12px 12px 14px;
    gap: 10px;
  }

  .toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.95rem;
  }
}

/*  Breadcrumb  */
.page-hero {
  background: var(--clr-charcoal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--clr-gold); }

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
}

/*  Booking Summary  */
.booking-summary {
  background: var(--clr-off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.booking-summary-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1rem;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--clr-border);
  color: var(--clr-black);
}

.summary-label { color: var(--clr-muted); }
.summary-value { font-weight: 600; color: var(--clr-black); }
.summary-value.gold { color: var(--clr-gold); font-size: 1.2rem; }

/*  Room Detail  */
.room-gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.room-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.room-gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.room-gallery-thumb:hover,
.room-gallery-thumb.active { opacity: 1; }

.room-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.room-amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.room-amenity-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--clr-off-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.room-amenity-tag i { color: var(--clr-gold); font-size: 0.85rem; }

/*  FAQ  */
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-black);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover { background: var(--clr-off-white); }
.faq-question.open { background: var(--clr-cream); color: var(--clr-gold-dark); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--clr-muted);
}

.faq-question.open .faq-icon {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.8;
}

.faq-answer.open { display: block; animation: fadeUp 0.3s ease; }

/*  Contact  */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-cream);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 4px;
}

.contact-info-text span,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--clr-charcoal);
}

.contact-info-text a:hover { color: var(--clr-gold); }

/*  Footer  */
.footer {
  background: var(--clr-black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text { color: var(--clr-white); }
.footer-tagline {
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover { color: var(--clr-white); padding-left: 4px; }
.footer-link::before {
  content: '';
  font-size: 0.7rem;
  color: var(--clr-gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-link:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item i {
  color: var(--clr-gold);
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--clr-gold); }

/*  Back to Top  */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTop:hover { background: var(--clr-gold-dark); transform: translateY(-3px); }

/*  Skeleton Loading  */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/*  Modal / Lightbox  */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-off-white);
  color: var(--clr-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
}

.modal-close:hover { background: var(--clr-error); color: var(--clr-white); }

/*  Scroll animations  */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/*  Utilities  */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.w-full { width: 100%; }
.hidden { display: none; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ================================================================
   RESPONSIVE  Mobile-First, Comprehensive
   Breakpoints: 1200 | 1024 | 900 | 768 | 640 | 480 | 380
   ================================================================ */

/*  Large tablet / small desktop  */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .nav-wrap  { padding: 0 20px; }

  .hero-preview-nav         { display: none; }
  .hero-shell               { grid-template-columns: minmax(0, 1fr) minmax(280px, 340px); gap: 28px; padding-bottom: 74px; }
  .hero-content             { max-width: 560px; align-self: end; margin-top: 0; }
  .hero-title               { font-size: clamp(1.85rem, 4.2vw, 3.1rem); }
  .featured-grid            { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid              { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
  .footer-grid > :last-child{ grid-column: 1 / -1; }
  .stats-grid               { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .booking-bar-grid         { grid-template-columns: 1fr 1fr 1fr auto; }
}

/*  Tablet landscape  */
@media (max-width: 1024px) {
  .hero-shell               { grid-template-columns: 1fr; align-content: center; gap: 22px; padding-top: calc(var(--nav-height) + 28px); padding-bottom: 72px; }
  .hero-content             { max-width: 620px; align-self: start; margin-top: 18px; }
  .hero-booking-panel       { justify-self: start; width: min(390px, 100%); }
  .booking-bar.booking-bar-hero { padding: 18px 16px 16px; }
  .hero-controls            { right: 20px; }
  .rooms-grid               { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid             { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .footer-grid              { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .stats-grid               { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .form-grid-3              { grid-template-columns: 1fr 1fr; }

  /* Booking bar: stack to 2 cols */
  .booking-bar-grid         { grid-template-columns: 1fr 1fr; gap: 14px; }
  .booking-bar-grid > :last-child { grid-column: 1 / -1; }
  .booking-bar              { padding: 24px; }
}

/*  Tablet portrait / mobile nav breakpoint  */
@media (max-width: 900px) {
  :root { --nav-height: 64px; }

  /* - Navigation  */
  .nav-menu   { display: none; }
  .nav-burger { display: flex; }
  .nav-book   { display: none; }

  /* - Grids -- */
  .rooms-grid           { grid-template-columns: 1fr 1fr; gap: 20px; }
  .featured-grid        { grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-grid-2          { grid-template-columns: 1fr; }
  .form-grid-3          { grid-template-columns: 1fr; }
  .room-amenities-list  { grid-template-columns: 1fr 1fr; }

  /* - Gallery  */
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide    { grid-column: span 2; }
  .gallery-item.tall    { grid-row: span 1; }

  /* - Booking bar -- */
  .booking-bar          { margin-top: -40px; padding: 20px; border-radius: var(--radius-md); }
  .booking-bar-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .booking-bar-grid > :last-child { grid-column: 1 / -1; }

  .hero-shell           { min-height: 94vh; padding-bottom: 68px; }
  .hero-subtitle        { max-width: 100%; }
  .hero-booking-panel   { width: min(390px, 100%); }
  .hero-controls        { bottom: 24px; }

  /* - Sections -- */
  .section    { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .section-sm { padding: 50px 0; }
}

/*  Mobile (large phones)  */
@media (max-width: 768px) {
  /* - Typography  */
  .hero-title       { font-size: clamp(1.7rem, 6.1vw, 2.45rem); }
  .hero-subtitle    { font-size: 0.82rem; margin-bottom: 18px; }
  .hero-actions     { flex-direction: column; gap: 12px; }
  .hero-actions .btn{ width: 100%; justify-content: center; max-width: 300px; font-size: 0.7rem; }
  .hero-booking-meta { font-size: 0.58rem; letter-spacing: 0.1em; }
  .page-title       { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .section-title    { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* - Hero - */
  .hero             { min-height: 100svh; }
  .hero-shell       { min-height: 100svh; grid-template-columns: 1fr; align-items: end; align-content: end; padding-top: calc(var(--nav-height) + 22px); padding-bottom: 92px; }
  .hero-content     { align-self: end; margin-top: 0; margin-bottom: 12px; }
  .hero-booking-panel { display: none; }
  .booking-bar.booking-bar-hero { max-width: 360px; padding: 16px 14px 14px; }
  .hero-booking-kicker { font-size: 1.5rem; }
  .hero-booking-note { font-size: 0.7rem; }
  .hero-controls    { left: 16px; right: 16px; justify-content: space-between; }
  .hero-dots        { flex: 1; justify-content: center; }
  .page-hero        { padding: 110px 0 60px; }

  .hero-booking-mobile { display: block; padding: 18px 0 0; background: var(--clr-white); }
  .hero-booking-mobile .booking-bar { margin-top: 0; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }

  /* - Booking bar -- */
  .booking-bar          { margin-top: -30px; padding: 18px 16px; }
  .booking-bar-grid     { grid-template-columns: 1fr; gap: 12px; }
  .booking-bar-grid > :last-child { grid-column: auto; }
  .booking-bar-grid .btn{ width: 100%; justify-content: center; padding: 14px; }

  /* - Room card - */
  .rooms-grid           { grid-template-columns: 1fr; gap: 20px; }
  .featured-grid        { grid-template-columns: 1fr; gap: 20px; }
  .room-card-footer     { flex-direction: column; gap: 12px; align-items: flex-start; }
  .room-card-actions    { width: 100%; }
  .room-card-actions .btn { flex: 1; justify-content: center; }

  /* - Room detail -- */
  .room-gallery-thumbs  { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .room-amenities-list  { grid-template-columns: 1fr; }

  /* - Booking summary (unstick on mobile)  */
  .booking-summary      { position: static; margin-bottom: 24px; }

  /* - Stats -- */
  .stats-grid           { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* - Gallery  */
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
  .gallery-filter       { gap: 6px; }
  .filter-btn           { padding: 8px 14px; font-size: 0.72rem; }

  /* - Reviews grid - */
  .reviews-grid         { grid-template-columns: 1fr !important; }
  .review-card          { padding: 24px; }

  /* - Contact  */
  .contact-grid         { grid-template-columns: 1fr !important; }

  /* - Amenities grid -- */
  .amenities-grid       { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }

  /* - Footer - */
  .footer               { padding: 60px 0 0; }
  .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-tagline       { max-width: 100%; }
  .footer-bottom        { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links  { justify-content: center; flex-wrap: wrap; gap: 14px; }

  /* - Sections -- */
  .section    { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .section-sm { padding: 40px 0; }

  /* - Modals - */
  .modal        { padding: 28px 20px; margin: 0 8px; }
}

/*  Mobile (standard phones)  */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav-wrap  { padding: 0 16px; }
  .overlay-body { padding: 0 24px; }

  /* - Navigation  */
  :root { --nav-height: 60px; }
  .logo-text span { display: none; }  /* hide subtitle line */

  /* - Hero - */
  .hero         { min-height: 100svh; }
  .hero-shell   { gap: 22px; padding-bottom: 78px; }
  .hero-title   { font-size: clamp(1.55rem, 7.2vw, 2.12rem); line-height: 1.1; }
  .hero-subtitle{ font-size: 0.76rem; max-width: 100%; }
  .hero-booking-meta { font-size: 0.54rem; letter-spacing: 0.08em; }
  .hero-booking-panel { width: 100%; }
  .booking-bar.booking-bar-hero { max-width: 100%; }
  .hero-booking-kicker { font-size: 1.35rem; margin-bottom: 6px; }
  .hero-booking-note { font-size: 0.68rem; }
  .hero-nav     { display: none; }

  .hero-booking-mobile { padding-top: 14px; }
  .hero-booking-mobile .booking-bar { padding: 16px 14px; }

  /* - Booking bar -- */
  .booking-bar  { margin-top: -24px; border-radius: var(--radius-md); }
  .booking-field input,
  .booking-field select { padding: 13px 14px; font-size: 0.9rem; }

  /* - Room card - */
  .room-card-body       { padding: 18px; }
  .room-card-title      { font-size: 1.15rem; }
  .room-price-amount    { font-size: 1.4rem; }

  /* - Gallery  */
  .gallery-grid         { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 6px; }
  .gallery-item.wide    { grid-column: span 2; }
  .gallery-item.tall    { grid-row: span 1; }

  /* - Gallery filter: horizontal scroll - */
  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-filter::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* - Stats -- */
  .stats-grid           { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number          { font-size: 2.2rem; }

  /* - Amenities - */
  .amenities-grid       { grid-template-columns: 1fr !important; }
  .amenity-card         { padding: 28px 20px; }

  /* - Buttons  */
  .btn-lg               { padding: 15px 28px; font-size: 0.84rem; }
  .btn                  { padding: 13px 24px; }

  /* - Forms -- */
  .form-control         { padding: 13px 14px; }
  .form-group           { margin-bottom: 18px; }

  /* - Page hero - */
  .page-hero            { padding: 96px 0 48px; }
  .page-title           { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .breadcrumb           { font-size: 0.72rem; }

  /* - Room gallery thumbs  */
  .room-gallery-thumbs  { grid-template-columns: repeat(3, 1fr); }
  .room-gallery-main    { aspect-ratio: 4/3; }

  /* - Footer - */
  .footer-bottom-links  { gap: 10px; }
  .footer-bottom-links a{ font-size: 0.8rem; }

  /* - Back to top -- */
  #backToTop { bottom: 20px; right: 16px; width: 42px; height: 42px; }

  /*  Section spacing  */
  .section    { padding: 54px 0; }
  .section-lg { padding: 70px 0; }
  .section-sm { padding: 34px 0; }
}

/*  Small phones ( 480px)  */
@media (max-width: 480px) {
  /* - Nav -- */
  .logo-icon { width: 36px; height: 36px; font-size: 1rem; }
  .logo-text { font-size: 1.05rem; }

  /* - Hero - */
  .hero-shell   { gap: 20px; padding-bottom: 72px; }
  .hero-title   { font-size: clamp(1.4rem, 9vw, 1.9rem); }
  .hero-tag     { font-size: 0.52rem; letter-spacing: 0.14em; }
  .hero-actions .btn { max-width: 100%; }
  .booking-bar.booking-bar-hero { padding: 14px 12px; border-radius: 14px; }
  .hero-booking-kicker { font-size: 1.2rem; }
  .hero-booking-note { display: none; }
  .hero-booking-mobile .booking-bar { padding: 14px 12px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.is-active { width: 22px; }

  /* - Room card - */
  .room-card-meta { gap: 10px; }
  .room-card-meta-item { font-size: 0.75rem; }

  /* - Reviews  */
  .review-card          { padding: 20px 16px; }
  .review-card::before  { font-size: 3.5rem; top: 10px; left: 16px; }

  /* - Alerts - */
  .alert { padding: 14px 16px; font-size: 0.85rem; }

  /* - Booking summary - */
  .booking-summary      { padding: 20px 16px; }
  .summary-row          { font-size: 0.85rem; }

  /* - Gallery  */
  .gallery-grid         { grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; gap: 5px; }

  /* - Stats -- */
  .stat-number { font-size: 2rem; }
  .stat-label  { font-size: 0.75rem; }

  /* - Footer - */
  .social-btn { width: 34px; height: 34px; font-size: 0.78rem; }

  /* - FAQ -- */
  .faq-question { padding: 16px 18px; font-size: 0.88rem; }
  .faq-answer   { padding: 0 18px 16px; font-size: 0.86rem; }

  /* - Buttons  */
  .btn    { padding: 12px 20px; font-size: 0.8rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.82rem; }
  .btn-sm { padding: 9px 16px;  font-size: 0.72rem; }

  /* - Modal -- */
  .modal { padding: 24px 16px; }
}

/*  Very small phones ( 380px)  */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-shell { padding-bottom: 66px; }
  .hero-title { font-size: 1.32rem; }
  .hero-actions .btn { max-width: 100%; }
  .hero-booking-meta { display: none; }
  .hero-booking-kicker { font-size: 1.08rem; }

  .room-card-actions { flex-direction: column; gap: 8px; }
  .room-card-actions .btn { width: 100%; }

  .footer-bottom-links { flex-direction: column; align-items: center; gap: 8px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 1.8rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: auto; }
}

/*  Touch / hover refinements  */
@media (hover: none) {
  /* Remove hover transforms on touch devices */
  .room-card:hover           { transform: none; }
  .card:hover                { transform: none; }
  .amenity-card:hover        { transform: none; }
  .review-card:hover         { transform: none; }
  .btn-gold:hover            { transform: none; }
  .btn-outline:hover         { transform: none; }
  .btn-outline-dark:hover    { transform: none; }
  .btn-outline-gold:hover    { transform: none; }
  .btn-dark:hover            { transform: none; }
  .nav-book:hover            { transform: none; }
  .hero-btn-main:hover       { transform: none; }
  #backToTop:hover           { transform: translateY(0); }

  /* But keep the image zoom on tap  nice on touch */
  .room-card:active .room-card-image img { transform: scale(1.04); }
}

/*  Landscape phone orientation  */
@media (max-width: 900px) and (orientation: landscape) {
  .hero         { min-height: 100vw; }
  .hero-shell   { min-height: 100vw; grid-template-columns: 1fr 280px; gap: 20px; padding-top: calc(var(--nav-height) + 14px); padding-bottom: 64px; }
  .hero-content { align-self: start; margin-top: 0; }
  .hero-title   { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .hero-subtitle{ display: none; }
  .booking-bar.booking-bar-hero { padding: 12px; }
  .hero-booking-note { display: none; }
  .page-hero    { padding: 80px 0 40px; }
  .section      { padding: 50px 0; }
}

/*  Reduced motion  */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ================================================================
   PAGE-SPECIFIC LAYOUT CLASSES (replaces inline grid styles)
   ================================================================ */

/* Booking page: form + sidebar */
.layout-booking {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Contact page: form + info */
.layout-contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* Room detail: info + booking */
.layout-room-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* About story: image + text */
.layout-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About facilities: 3 col */
.layout-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* About / home stats: 4 col */
.layout-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

/* Room info 2-col inside card */
.layout-room-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 0.88rem;
}

/* Room amenity tags 2-col */
.layout-amenity-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Reviews grid */
.layout-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Inline form rows (name+email) */
.layout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/*  Responsive overrides  */
@media (max-width: 1024px) {
  .layout-booking      { grid-template-columns: 1fr 320px; gap: 32px; }
  .layout-contact      { grid-template-columns: 1fr 360px; gap: 40px; }
  .layout-room-detail  { grid-template-columns: 1fr 320px; gap: 32px; }
  .layout-about-story  { gap: 48px; }
  .layout-reviews      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .layout-3col         { grid-template-columns: 1fr 1fr; }
  .layout-4col         { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .layout-reviews      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .layout-booking      { grid-template-columns: 1fr; gap: 24px; }
  .layout-contact      { grid-template-columns: 1fr; gap: 32px; }
  .layout-room-detail  { grid-template-columns: 1fr; gap: 24px; }
  .layout-about-story  { grid-template-columns: 1fr; gap: 32px; }
  .layout-form-row     { grid-template-columns: 1fr; margin-bottom: 0; }
  .layout-reviews      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .layout-3col         { grid-template-columns: 1fr; }
  .layout-4col         { grid-template-columns: 1fr 1fr; gap: 16px; }
  .layout-room-info    { grid-template-columns: 1fr; }
  .layout-amenity-tags { grid-template-columns: 1fr; }
}

/*  Global horizontal overflow containment  */
/* Catches any rogue element that pushes beyond viewport width  */
section, header, footer, nav, main, article, aside {
  max-width: 100%;
  box-sizing: border-box;
}

/* ================================================================
   HOME PAGE RESPONSIVE LAYOUT
   ================================================================ */

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.home-about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.home-about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-copy {
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.home-about-copy-last {
  margin-bottom: 30px;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.home-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
}

.home-stat-label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  line-height: 1.4;
}

.home-amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-why-heading {
  color: var(--clr-white);
}

.home-why-subtitle {
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

.home-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-why-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.home-why-card:hover {
  border-color: rgba(21, 184, 217, 0.3);
  transform: translateY(-3px);
}

.home-why-icon {
  width: 56px;
  height: 56px;
  background: rgba(21,184,217,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.2rem;
  color: var(--clr-gold);
}

.home-why-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.home-why-text {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.home-reviews-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-cta {
  background: var(--clr-cream);
  padding: 70px 0;
}

.home-cta-title {
  max-width: 640px;
  margin: 0 auto 16px;
}

.home-cta-subtitle {
  margin: 0 auto 34px;
}

.home-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.home-cta-actions .btn {
  width: 100%;
  max-width: 340px;
  justify-content: center;
}

@media (min-width: 600px) {
  .home-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .home-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cta {
    padding: 84px 0;
  }
}

@media (min-width: 900px) {
  .home-about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .home-amenities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .home-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .home-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .home-cta-actions .btn {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .home-about-grid {
    gap: 80px;
  }

  .home-why-grid {
    gap: 32px;
  }
}

