/* ============================================================
   LUX ROOMS & SERVICE APARTMENTS — STYLESHEET
   ============================================================ */

:root {
  --deep-black: #080808;
  --rich-dark: #0e0e0e;
  --dark-card: #141414;
  --dark-card-2: #1a1a1a;
  --border-subtle: rgba(255,255,255,0.10);
  --border-mid: rgba(255,255,255,0.18);

  --gold: hsl(42,72%,58%);
  --gold-light: hsl(42,88%,72%);
  --gold-dark: hsl(38,60%,38%);
  --gold-glow: rgba(212,175,95,0.15);
  --gold-glow-strong: rgba(212,175,95,0.28);

  --cream: hsl(40,30%,97%);
  --text-primary: hsl(40,20%,93%);
  --text-secondary: hsl(40,12%,72%);
  --text-muted: hsl(40,8%,55%);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Montserrat', sans-serif;

  --section-padding: clamp(70px, 10vw, 120px);
  --container-max: 1300px;
  --container-pad: clamp(20px, 5vw, 80px);
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── LIGHT THEME OVERRIDES ──────────────────────────────── */
[data-theme="light"] {
  --deep-black:   #faf8f4;
  --rich-dark:    #f2ece2;
  --dark-card:    #e9e2d5;
  --dark-card-2:  #dfd7c8;
  --border-subtle: rgba(0,0,0,0.08);
  --border-mid:    rgba(0,0,0,0.15);
  --gold:          hsl(38,68%,40%);
  --gold-light:    hsl(38,72%,48%);
  --gold-dark:     hsl(36,55%,28%);
  --gold-glow:     rgba(160,120,45,0.10);
  --gold-glow-strong: rgba(160,120,45,0.20);
  --cream:         hsl(30,15%,12%);
  --text-primary:  hsl(30,12%,16%);
  --text-secondary:hsl(30,8%,36%);
  --text-muted:    hsl(30,5%,52%);
}

/* Hardcoded dark colour overrides for light mode */
[data-theme="light"] .nav.scrolled {
  background: rgba(250,246,240,0.96) !important;
  border-bottom-color: rgba(0,0,0,0.10);
}
[data-theme="light"] .nav__hamburger span {
  background: var(--text-primary);
}
[data-theme="light"] .room-gallery__badge {
  background: rgba(250,246,240,0.88);
  color: var(--text-primary);
  border-color: rgba(0,0,0,0.14);
}
[data-theme="light"] .form-select option {
  background: var(--dark-card);
  color: var(--text-primary);
}
[data-theme="light"] .footer {
  background: hsl(30,12%,12%) !important;
}
[data-theme="light"] .section-title {
  color: var(--text-primary);
  text-shadow: none;
}
[data-theme="light"] .section-header--light .section-title {
  color: var(--cream);
}

/* Nav — unscrolled: hero image behind nav, keep text visible on dark bg */
[data-theme="light"] .nav__link { color: rgba(255,255,255,0.92); }
[data-theme="light"] .nav__link:hover { color: #fff; }
/* Nav — scrolled: light panel behind nav, use dark text */
[data-theme="light"] .nav.scrolled .nav__link { color: rgba(20,15,10,0.82); }
[data-theme="light"] .nav.scrolled .nav__link:hover { color: var(--gold-dark); }
[data-theme="light"] .nav.scrolled .nav__theme-toggle { border-color: rgba(0,0,0,0.20); }
[data-theme="light"] .nav.scrolled .logo__location { color: var(--text-muted); border-color: rgba(0,0,0,0.20); }

/* ── Hero + unscrolled nav: always dark, identical to dark theme ── */
[data-theme="light"] #hero,
[data-theme="light"] #main-nav:not(.scrolled) {
  --deep-black:    #080808;
  --rich-dark:     #0e0e0e;
  --dark-card:     #141414;
  --dark-card-2:   #1a1a1a;
  --border-subtle: rgba(255,255,255,0.10);
  --border-mid:    rgba(255,255,255,0.18);
  --gold:          hsl(42,72%,58%);
  --gold-light:    hsl(42,88%,72%);
  --gold-dark:     hsl(38,60%,38%);
  --cream:         hsl(40,30%,97%);
  --text-primary:  hsl(40,20%,93%);
  --text-secondary:hsl(40,12%,72%);
  --text-muted:    hsl(40,8%,55%);
}

/* Room Info */
[data-theme="light"] .room-info__name        { color: var(--text-primary); }
[data-theme="light"] .room-info__desc        { color: var(--text-secondary); }
[data-theme="light"] .room-info__amenity     { color: var(--text-secondary); }
[data-theme="light"] .room-info__price-amount{ color: var(--text-primary); }
[data-theme="light"] .room-info__price-period{ color: var(--text-muted); }
[data-theme="light"] .room-info__price-note  { color: var(--text-muted); }

/* Booking Form */
[data-theme="light"] .booking-form__title    { color: var(--text-primary); }
[data-theme="light"] .form-label             { color: var(--text-secondary); }
[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.16);
}
[data-theme="light"] .form-input::placeholder { color: var(--text-muted); }
[data-theme="light"] input[type="date"].form-input:invalid { border-color: rgba(0,0,0,0.10); }

/* Booking Summary */
[data-theme="light"] .booking-summary__label { color: var(--text-muted); }
[data-theme="light"] .booking-summary__value { color: var(--text-primary); }
[data-theme="light"] .booking-summary__total { color: var(--text-secondary); }
[data-theme="light"] .booking-summary__total-label { color: var(--text-muted); }
[data-theme="light"] .btn--edit {
  border-color: rgba(0,0,0,0.18);
  color: var(--text-secondary);
}
[data-theme="light"] .btn--edit:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Why Us Cards */
[data-theme="light"] .why-card__title { color: var(--text-primary); }
[data-theme="light"] .why-card__desc  { color: var(--text-secondary); }

/* Testimonials */
[data-theme="light"] .testimonial-card__quote { color: var(--text-primary); }
[data-theme="light"] .testimonial-card__name  { color: var(--text-primary); }
[data-theme="light"] .testimonial-card__meta  { color: var(--text-muted); }

/* Location Section */
[data-theme="light"] .location__card-title { color: var(--text-primary); }

/* Success Banner */
[data-theme="light"] .success-banner p { color: var(--text-secondary); }

/* Mobile nav open panel */
[data-theme="light"] .nav__links.open { background: rgba(250,246,240,0.98); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--deep-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-eyebrow::before { right: 100%; transform: translateX(20px); }
.section-eyebrow::after  { left: 100%;  transform: translateX(-20px); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.section-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--deep-black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--gold-glow-strong);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.75);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(255,255,255,0.05); }

.btn--call {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,95,0.4);
  font-size: 0.7rem;
}
.btn--call:hover {
  background: rgba(212,175,95,0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn--form { flex: 1; }

.btn--large { padding: 18px 48px; font-size: 0.76rem; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollLine {
  0%      { transform: scaleY(0); transform-origin: top; }
  50%     { transform: scaleY(1); transform-origin: top; }
  50.001% { transform: scaleY(1); transform-origin: bottom; }
  100%    { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-luxury), transform 0.85s var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--container-pad);
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px var(--container-pad);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  cursor: default;
  user-select: none;
}
.logo__location {
  font-family: var(--font-display);
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-left: 10px;
  vertical-align: middle;
  border-left: 1px solid var(--border-mid);
  padding-left: 10px;
  display: inline-block;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.25s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 20px;
  border-radius: 2px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--gold); color: var(--deep-black) !important; }

/* ── Theme Toggle Button ────────────────────────────────── */
.nav__theme-toggle {
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.nav__theme-toggle:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.theme-toggle__icon { line-height: 1; transition: opacity 0.2s ease, transform 0.3s ease; }
[data-theme="dark"]  .theme-toggle__icon--sun  { display: none; }
[data-theme="dark"]  .theme-toggle__icon--moon { display: inline; }
[data-theme="light"] .theme-toggle__icon--moon { display: none; }
[data-theme="light"] .theme-toggle__icon--sun  { display: inline; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -10%;
  background: url('/assets/rooms/3/room1.jpg') center 30% / cover no-repeat;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.4) 0%,
    rgba(8,8,8,0.62) 45%,
    rgba(8,8,8,0.88) 88%,
    rgba(8,8,8,1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: 800px;
  animation: fadeUp 1.1s var(--ease-luxury) 0.3s both;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.7);
}
.hero__headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero__subheading {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 44px;
  background: var(--gold);
  opacity: 0.5;
  animation: scrollLine 2.2s ease infinite;
}
.hero__scroll-text {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   ROOM SECTIONS
═══════════════════════════════════════════════════════════ */
.room-section {
  padding: var(--section-padding) var(--container-pad);
  background: var(--deep-black);
  border-top: 1px solid var(--border-subtle);
  max-width: var(--container-max);
  margin-inline: auto;
}
.room-section--alt {
  background: var(--rich-dark);
  max-width: 100%;
  border-top: 1px solid var(--border-subtle);
}
.room-section--alt > .room-section__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 0;
}

.room-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "gallery info"
    "gallery booking";
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.room-section__inner--reverse {
  grid-template-areas:
    "info gallery"
    "booking gallery";
}
.room-section__inner .room-gallery  { grid-area: gallery; }
.room-section__inner .room-info     { grid-area: info; }
.room-section__inner .booking-form  { grid-area: booking; }

/* ── Room Gallery ─────────────────────────────────────────── */
.room-gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 90px; }

.room-gallery__main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-card-2);
}
.room-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}
.room-gallery__main:hover .room-gallery__main-img {
  transform: scale(1.03);
}

.room-gallery__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(8,8,8,0.8);
  color: var(--cream);
  border: 1px solid var(--border-mid);
  padding: 5px 14px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}
.room-gallery__badge--gold {
  background: var(--gold);
  color: var(--deep-black);
  border-color: var(--gold);
}

.room-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.room-gallery__thumbs::-webkit-scrollbar { display: none; }

.room-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  background: none;
  padding: 0;
  opacity: 0.55;
}
.room-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery__thumb:hover { opacity: 0.85; border-color: var(--gold-dark); }
.room-gallery__thumb.active { opacity: 1; border-color: var(--gold); }

/* ── Room Info ────────────────────────────────────────────── */
.room-info { display: flex; flex-direction: column; gap: 24px; }

.room-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.room-info__collection {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.room-info__name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

.room-info__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  font-weight: 300;
}

.room-info__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-info__amenity {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 15px;
  border-radius: 2px;
}
.amenity-icon {
  color: var(--gold-light);
  font-style: normal;
  margin-right: 2px;
}

/* ── Pricing ──────────────────────────────────────────────── */
.room-info__pricing {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}
.room-info__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.room-info__price-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.room-info__price-amount {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
}
.room-info__price-per {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.room-info__price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.room-info__price-divider {
  width: 1px;
  height: 52px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════════════════════ */
.booking-form {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-form__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.booking-form__fields { display: flex; flex-direction: column; gap: 14px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.form-input {
  display: block;
  width: 100%;
  min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 3px;
  padding: 12px 15px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  min-height: 46px; /* Prevent height collapse on date inputs and ensure consistency across browsers */
}
.form-input::placeholder { color: rgba(255,255,255,0.32); }
.form-input:focus {
  border-color: rgba(212,175,95,0.6);
  background: rgba(212,175,95,0.06);
  box-shadow: 0 0 0 3px rgba(212,175,95,0.08);
}
.form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(239,68,68,0.4);
}
/* Prevent empty date inputs from showing invalid styles on page load since they don't support placeholder-shown */
input[type="date"].form-input:invalid {
  border-color: rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.06);
}
input[type="date"].form-input:invalid:focus {
  border-color: rgba(212,175,95,0.6);
  background: rgba(212,175,95,0.06);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23907040' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option { background: #111; color: var(--cream); }

.form-textarea { resize: vertical; min-height: 80px; }

/* date input color and value display fix for iOS Safari */
input[type="date"] {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  color: #ffffff;
}
input[type="date"]::-webkit-date-and-time-value {
  width: 100%;
  min-height: 1.45em;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
input[type="date"]::-webkit-datetime-edit {
  display: block;
  width: 100%;
  padding: 0;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
  opacity: 0.7;
}

.booking-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.booking-form__success {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4px 0 0;
}
.booking-form__success[hidden] { display: none; }

.success-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 4px;
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.5);
  color: #4ade80;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.success-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.success-banner strong { color: #4ade80; display: block; font-size: 0.9rem; margin-bottom: 2px; }

.booking-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,95,0.25);
  border-radius: 4px;
  padding: 20px;
}
.booking-summary__title {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.booking-summary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-summary__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.booking-summary__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.booking-summary__value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.booking-summary__message {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.booking-summary__message span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
}
.booking-summary__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.btn--edit {
  font-size: 0.68rem;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn--edit:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--wa-again {
  font-size: 0.68rem;
  padding: 10px 20px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.35);
  color: #4ade80;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn--wa-again:hover { background: rgba(37,211,102,0.2); }

/* ═══════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════ */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--rich-dark);
  position: relative;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.section-header--light .section-title { color: var(--cream); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.why-card {
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  background: var(--dark-card-2);
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-luxury);
}
.why-card:hover { background: rgba(212,175,95,0.04); border-color: rgba(212,175,95,0.2); transform: translateY(-3px); }
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}
.why-card__desc { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials { padding: var(--section-padding) 0; background: var(--deep-black); overflow: hidden; }
.testimonials__track-wrapper { overflow: hidden; }
.testimonials__track { display: flex; transition: transform 0.7s var(--ease-luxury); }
.testimonial-card {
  min-width: 100%;
  padding: 0 var(--container-pad);
  text-align: center;
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.58;
  max-width: 780px;
  margin: 0 auto 36px;
  position: relative;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -16px; left: -8px;
  font-family: var(--font-serif);
  line-height: 1;
}
.testimonial-card__stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 20px; }
.testimonial-card__star { color: var(--gold); font-size: 0.88rem; }
.testimonial-card__author { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}
.testimonial-card__meta { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.testimonial-card__suite {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
  border: 1px solid rgba(212,175,95,0.3);
  padding: 4px 14px;
  border-radius: 1px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel__dot.active { background: var(--gold); width: 26px; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #050505;
  padding: clamp(52px,7vw,90px) 0 36px;
  border-top: 1px solid var(--border-subtle);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.footer__tagline { font-size: 0.88rem; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 10px; }
.footer__gstin { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; font-family: var(--font-display); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer__address { display: flex; flex-direction: column; gap: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
.footer__links-list { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color 0.25s ease; }
.footer__link:hover { color: var(--gold-light); }

.footer__call-cards { display: flex; flex-direction: column; gap: 10px; }
.footer__call-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.83rem;
}
.footer__call-card:hover { border-color: var(--gold); background: rgba(212,175,95,0.06); }
.footer__call-card > span { font-size: 1.1rem; }
.footer__call-card div { display: flex; flex-direction: column; gap: 1px; }
.footer__call-card strong { color: var(--cream); font-size: 0.85rem; font-weight: 600; }
.footer__call-card span:last-child { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-display); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__craft { font-family: var(--font-serif); font-style: italic; opacity: 1; color: rgba(255,255,255,0.75); }
.footer__craft a { color: var(--gold-light, #d4af5f); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.footer__craft a:hover { color: #fff; }

/* ── Sticky CTA ────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
}
.btn--sticky-call {
  width: 100%;
  border-radius: 0;
  padding: 16px 36px calc(16px + env(safe-area-inset-bottom));
  font-size: 0.72rem;
  background: var(--gold);
  color: var(--deep-black);
  border-color: var(--gold);
}
.btn--sticky-call:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-us__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .room-section__inner,
  .room-section__inner--reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .room-section__inner .room-info,
  .room-section__inner--reverse .room-info {
    display: contents;
  }
  .room-section__inner .room-header,
  .room-section__inner--reverse .room-header {
    order: 1;
  }
  .room-section__inner .room-gallery,
  .room-section__inner--reverse .room-gallery {
    order: 2;
  }
  .room-section__inner .room-details,
  .room-section__inner--reverse .room-details {
    order: 3;
  }
  .room-section__inner .booking-form,
  .room-section__inner--reverse .booking-form {
    order: 4;
  }
  .room-gallery { position: static; }
  .room-gallery__thumbs { gap: 6px; }
  .room-gallery__thumb { width: 64px; height: 50px; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    padding: 18px 20px;
  }
  .nav.scrolled {
    padding: 12px 20px;
  }
  .nav__links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 80%; max-width: 300px;
    background: rgba(6,6,6,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 36px;
    gap: 24px;
    border-left: 1px solid rgba(212,175,95,0.15);
    transition: right 0.4s var(--ease-luxury);
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 0.9rem; color: rgba(255,255,255,0.8); letter-spacing: 0.12em; }
  .nav__link--cta { font-size: 0.8rem; }
  .nav__hamburger { display: flex; z-index: 1001; }
  .nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .booking-form {
    padding: 24px 20px;
  }
  .booking-form__title {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  .form-input {
    padding: 12px 12px;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-row--three {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-row--three .form-group:last-child {
    grid-column: span 2;
  }
  .booking-form__actions { flex-direction: column; }
  .booking-form__actions .btn { width: 100%; }

  /* Hero mobile fix */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 80px;
  }
  .hero__content {
    padding: 0 24px;
    text-align: left;
  }
  .hero__eyebrow { font-size: 0.68rem; }
  .hero__headline { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 18px; }
  .hero__subheading {
    font-size: 0.95rem;
    margin: 0 0 28px;
    max-width: 100%;
    color: rgba(255,255,255,0.78);
  }
  .hero__actions {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .hero__actions .btn {
    width: auto;
    max-width: none;
    flex: 1;
    padding: 14px 20px;
    font-size: 0.66rem;
  }
  .hero__overlay {
    background: linear-gradient(
      160deg,
      rgba(8,8,8,0.55) 0%,
      rgba(8,8,8,0.7) 40%,
      rgba(8,8,8,0.92) 75%,
      rgba(8,8,8,1) 100%
    );
  }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom)); /* Add spacing so sticky CTA doesn't cover footer content */
  }
  .sticky-cta { display: block; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .room-section { padding: 48px 20px; }
  .booking-summary__grid { grid-template-columns: 1fr; }
  .booking-summary__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__actions .btn { font-size: 0.62rem; padding: 13px 16px; }
  .room-section__inner { gap: 28px; }
  .room-info__pricing { flex-direction: column; gap: 16px; }
  .room-info__price-divider { width: 60px; height: 1px; }
  .why-us__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row--three {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-row--three .form-group:last-child {
    grid-column: span 1;
  }
  .booking-form__actions { flex-direction: column; }
  .booking-form__actions .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION (SEO & AEO)
═══════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--deep-black);
  border-top: 1px solid var(--border-subtle);
}
.faq__grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: var(--container-pad);
}
.faq__item {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-luxury), background 0.3s var(--ease-luxury);
}
.faq__item:hover {
  border-color: rgba(212, 175, 95, 0.25);
  background: rgba(212, 175, 95, 0.02);
}
.faq__item[open] {
  border-color: rgba(212, 175, 95, 0.4);
  background: rgba(212, 175, 95, 0.04);
}
.faq__question {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--cream);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  transition: color 0.3s ease;
}
/* Remove default triangle in Safari */
.faq__question::-webkit-details-marker {
  display: none;
}
/* Add custom gold icon indicator */
.faq__question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease-luxury);
}
.faq__item[open] .faq__question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq__question:hover {
  color: var(--gold-light);
}
.faq__answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
  animation: fadeIn 0.4s var(--ease-luxury) forwards;
}
.faq__answer strong {
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════
   LOCATION SECTION (GOOGLE MAPS)
═══════════════════════════════════════════════════════════ */
.location {
  padding: var(--section-padding) 0;
  background: var(--rich-dark);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: stretch;
  padding-inline: var(--container-pad);
  max-width: 1200px;
  margin: 0 auto;
}
.location__card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.location__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.location__icon {
  font-size: 2.2rem;
  display: block;
}
.location__card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
}
.location__address-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.location__details {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location__details strong {
  color: var(--text-secondary);
}
.location__actions {
  margin-top: 8px;
}
.location__actions .btn {
  display: inline-flex;
  width: auto;
}
.location__map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--dark-card-2);
  min-height: 400px;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  filter: grayscale(1) invert(0.92) contrast(1.1) brightness(0.9);
  transition: filter 0.5s var(--ease-luxury);
}
.location__map iframe:hover,
.location__map iframe:focus {
  filter: grayscale(0) invert(0) contrast(1) brightness(1);
}

@media (max-width: 768px) {
  .location__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .location__map {
    min-height: 320px;
  }
  .location__map iframe {
    min-height: 320px;
  }
}

@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; }
}
