/* ==========================================================================
   Hotel Panchavati Palace — Design System (V3 Luxury Edition)
   Palette: Warm Sandstone Ivory, Deep Imperial Maroon, Radiant Brass Gold, Forest Leaf
   Type: Cormorant Garamond (display/headings) + Karla (body/UI)
   ========================================================================== */

:root {
  /* -- Luxury Color Tokens -- */
  --ivory:          #FBF8F2;   /* warm sandstone ivory background */
  --ivory-deep:     #F0E8D8;   /* deeper warm sandstone for panels */
  --ivory-light:    #FFFFFF;   /* pure light for cards */
  --maroon:         #601828;   /* deep imperial temple maroon */
  --maroon-dark:    #3C0C17;   /* deep shadow maroon */
  --maroon-light:   #7D2437;   /* hover/accent maroon */
  --gold:           #C08E3E;   /* polished brass gold */
  --gold-light:     #E5BF77;   /* soft warm gold */
  --gold-subtle:    #F5EAD4;   /* very light gold tint */
  --forest:         #2F5A38;   /* sacred tulsi / banyan green */
  --wa-green:       #25D366;   /* authentic WhatsApp brand green */
  --wa-dark:        #1EBE5D;
  --ink:            #201712;   /* rich warm charcoal for high legibility */
  --ink-soft:       #544A42;   /* secondary readable ink */
  --ink-muted:      #7C7168;   /* captions & timestamps */
  --white:          #FFFFFF;

  /* -- Type Tokens -- */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Karla', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* -- Layout & Dimensions -- */
  --max-w:          1240px;
  --gutter:         clamp(1rem, 3.5vw, 2.5rem);
  --radius-sm:      4px;
  --radius:         8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-pill:    9999px;

  /* -- Shadows & Elevations -- */
  --shadow-sm:      0 2px 8px rgba(32, 23, 18, 0.05);
  --shadow-md:      0 8px 24px -4px rgba(32, 23, 18, 0.08), 0 2px 6px rgba(32, 23, 18, 0.04);
  --shadow-lg:      0 16px 40px -8px rgba(32, 23, 18, 0.12), 0 4px 12px rgba(32, 23, 18, 0.06);
  --shadow-luxury:  0 22px 50px -10px rgba(60, 12, 23, 0.18), 0 6px 18px rgba(32, 23, 18, 0.06);
  --shadow-glow:    0 0 20px rgba(192, 142, 62, 0.35);

  /* -- Motion & Transitions -- */
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:  0.2s;
  --duration-base:  0.35s;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Prevent unwanted iOS auto-zoom on form controls */
input, select, textarea {
  font-size: 16px;
}

/* Fix universal image rendering and prevent clipping/stretching */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

p {
  margin: 0 0 1.1em;
  max-width: 65ch;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.7;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(3.75rem, 8vw, 7rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section--deep {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: var(--ivory);
}

.section--deep h1,
.section--deep h2,
.section--deep h3 {
  color: var(--ivory);
}

.section--panel {
  background: var(--ivory-deep);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.5rem);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.8em;
}

.kicker::before,
.kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-head:not(.center) .kicker::after {
  display: none;
}

/* Decorative luxury divider */
.ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0.5rem 0 1.2rem;
}
.ornament::before, .ornament::after {
  content: "";
  width: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.85em;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #B07E32 100%);
  color: #261108;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 18px rgba(192, 142, 62, 0.4);
  transform: translateY(-2px);
  color: #1A0B05;
}

.btn-outline {
  background: transparent;
  border-color: rgba(96, 24, 40, 0.4);
  color: var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.section--deep .btn-outline,
.cta-band .btn-outline,
.cta-band-actions .btn-outline,
.hero .btn-outline {
  color: #FFFFFF !important;
  border-color: rgba(229, 191, 119, 0.65) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.section--deep .btn-outline:hover,
.cta-band .btn-outline:hover,
.cta-band-actions .btn-outline:hover,
.hero .btn-outline:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--maroon-dark) !important;
  box-shadow: 0 6px 20px rgba(192, 142, 62, 0.45) !important;
  text-shadow: none;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2EE06E 0%, #20B356 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-whatsapp svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.topbar {
  background: var(--maroon-dark);
  color: rgba(248, 245, 238, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0.015em;
  border-bottom: 1px solid rgba(192, 142, 62, 0.25);
  position: relative;
  z-index: 501;
}

.topbar .container,
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(0.55rem + env(safe-area-inset-top));
  padding-bottom: 0.55rem;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-contact {
  color: var(--gold-light);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

.topbar-contact:hover {
  color: var(--white);
  text-decoration: underline;
}

.topbar-contact svg {
  width: 16px;
  height: 16px;
  fill: #25D366;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(248, 245, 238, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
}

.topbar-right svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-light);
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 248, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(96, 24, 40, 0.1);
  transition: all var(--duration-base) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(32, 23, 18, 0.08);
  background: rgba(251, 248, 242, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: transform var(--duration-fast) var(--ease);
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(192, 142, 62, 0.25));
  transition: transform var(--duration-fast) var(--ease);
}

.brand:hover img {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon-dark);
  letter-spacing: -0.01em;
}

.brand-text .place {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--duration-fast) var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease);
}

.nav-links a:hover {
  color: var(--maroon);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--maroon);
  font-weight: 700;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-book-now {
  background: var(--gold);
  color: var(--maroon-dark);
  border: 1px solid var(--gold-light);
  font-weight: 700;
  padding: 0.65em 1.4em;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(192, 142, 62, 0.28);
  transition: all var(--duration-fast) var(--ease);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-book-now:hover {
  background: var(--gold-light);
  color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 142, 62, 0.42);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 510;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2.5px;
  background: var(--maroon-dark);
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
}

.nav-toggle span { top: 18px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Luxury Mobile Slide-Out Side Panel (Drawer)
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 5, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(350px, 86vw);
  background: linear-gradient(180deg, #3A0C16 0%, #20060D 60%, #160408 100%);
  color: var(--ivory);
  z-index: 1250;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(229, 191, 119, 0.25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav-drawer::-webkit-scrollbar {
  display: none;
}

.mobile-nav-drawer.is-active {
  transform: translateX(0);
}

/* Drawer Top Bar */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid rgba(229, 191, 119, 0.15);
  background: rgba(0, 0, 0, 0.2);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.drawer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(229, 191, 119, 0.4));
}

.drawer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  display: block;
}

.drawer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}

.drawer-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(229, 191, 119, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.drawer-close-btn:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: rotate(90deg);
}

.drawer-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Drawer Body & Navigation */
.drawer-body {
  padding: 1.2rem 1.4rem calc(2.4rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  flex: 1;
}

.drawer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-list li {
  margin: 0;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: rgba(251, 248, 242, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
  border-left: 3px solid transparent;
}

.drawer-nav-link:hover,
.drawer-nav-link.is-active,
.drawer-nav-link[aria-current="page"] {
  background: rgba(192, 142, 62, 0.16);
  color: var(--gold-light);
  border-left-color: var(--gold-light);
  padding-left: 1.2rem;
}

.drawer-nav-link svg.link-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.drawer-nav-link:hover svg.link-arrow,
.drawer-nav-link[aria-current="page"] svg.link-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Drawer Action Buttons */
.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.3rem;
}

.drawer-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.drawer-btn-wa:hover {
  background: #20BA56;
  transform: translateY(-2px);
  color: #ffffff;
}

.drawer-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 191, 119, 0.35);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.drawer-btn-call:hover {
  background: rgba(229, 191, 119, 0.15);
  color: var(--white);
  border-color: var(--gold-light);
}

/* Drawer Contact & Location Info */
.drawer-info {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(229, 191, 119, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.drawer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(251, 248, 242, 0.78);
  line-height: 1.45;
}

.drawer-info-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.drawer-info-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.drawer-social {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.4rem;
}

.drawer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 191, 119, 0.25);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.drawer-social a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   Luxury Hospitality Preloader (Panchavati Palace Cinematic Entrance)
   100% Fully Responsive Across All Devices & Viewports (Desktop & Mobile)
   Guarantees zero text cropping, seamless ambient frame, and royal animation
   ========================================================================== */
html.loader-active,
body.loader-active {
  overflow: hidden !important;
  height: 100% !important;
}

.site-loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background-color: #F8F3EA; /* warm ivory base matching artwork canvas */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Ambient blurred background layer: guarantees ZERO harsh black bars on any aspect ratio */
.site-loader::before {
  content: "";
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  background-image: url('../Loading.png');
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.92);
  transform: scale(1.08);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .site-loader::before {
    background-image: url('../loading-mobile.png');
    filter: blur(22px) brightness(0.88);
    opacity: 0.92;
  }
}

.site-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Stage container holding the artwork & animation overlays */
.loader-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.loader-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-media picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Central artwork entrance & breathing: NEVER CROPPED ON MOBILE */
.loader-image {
  display: block;
  will-change: transform, opacity;
  animation: artworkEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes artworkEntrance {
  0% {
    opacity: 0.1;
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}

/* Desktop: Wide Cinematic Display */
@media (min-width: 769px) {
  .loader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    filter: drop-shadow(0 10px 30px rgba(45, 20, 10, 0.25));
  }
}

/* Mobile: Portrait Artwork Containment - GUARANTEES ZERO TEXT OR GRAPHIC CROPPING */
@media (max-width: 768px) {
  .loader-stage {
    width: min(100vw, calc(100vh * (941 / 1672)));
    height: min(100vh, calc(100vw * (1672 / 941)));
    aspect-ratio: 941 / 1672;
    margin: auto;
    overflow: hidden;
    display: block;
    box-shadow: 0 12px 40px rgba(35, 12, 18, 0.42);
    border-radius: 4px;
  }

  .loader-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .loader-media picture,
  .loader-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 8px 24px rgba(35, 12, 18, 0.35));
  }
}

/* Divine Aura / Living Radiance around Sacred Tree Medallion */
.loader-aura {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: min(340px, 50vw);
  height: min(340px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 110, 0.5) 0%, rgba(212, 145, 45, 0.22) 45%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: color-dodge;
  animation: auraBreathe 2.4s ease-in-out infinite alternate;
  z-index: 2;
}

.loader-aura::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(245, 205, 115, 0.45);
  animation: auraPulseRing 2.4s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
  pointer-events: none;
}

@keyframes auraPulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .loader-aura {
    top: 32.8%;
    left: 50%;
    width: 36%;
    height: auto;
    aspect-ratio: 1;
  }
}

@keyframes auraBreathe {
  0%   { transform: translate(-50%, -50%) scale(0.92); opacity: 0.45; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: 0.9; }
}

/* Sunlight morning gleam over the river and temple spires */
.loader-sunlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 520px at 48% 68%, rgba(255, 230, 160, 0.22) 0%, rgba(255, 195, 100, 0.08) 45%, transparent 70%);
  animation: sunlightDrift 2.6s ease-in-out 0.2s infinite alternate;
  mix-blend-mode: screen;
  z-index: 2;
}

@media (max-width: 768px) {
  .loader-sunlight {
    background: radial-gradient(circle at 50% 78%, rgba(255, 235, 160, 0.32) 0%, rgba(255, 195, 90, 0.12) 40%, transparent 65%);
  }
}

@keyframes sunlightDrift {
  0%   { transform: translate(-2%, -1%) scale(0.96); opacity: 0.5; }
  100% { transform: translate(3%, 2%) scale(1.04); opacity: 0.9; }
}

/* Sacred floating temple rose & marigold petals */
.loader-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.petal {
  position: absolute;
  border-radius: 65% 35% 70% 30% / 50% 60% 40% 50%;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(60, 15, 20, 0.3));
  will-change: transform, opacity;
}

.petal-1 { width: 9px; height: 13px; left: 16%; top: -15px; background: radial-gradient(circle at 35% 35%, #E65578 0%, #A31D3E 75%, #700E25 100%); animation: petalDrift 2.8s ease-in 0.3s infinite; }
.petal-2 { width: 8px; height: 11px; left: 32%; top: -15px; background: radial-gradient(circle at 35% 35%, #F07590 0%, #B82548 75%, #7D122C 100%); animation: petalDrift 2.6s ease-in 0.6s infinite; }
.petal-3 { width: 10px; height: 14px; left: 74%; top: -15px; background: radial-gradient(circle at 35% 35%, #E69530 0%, #C46D15 75%, #8B4308 100%); animation: petalDrift 3.1s ease-in 0.4s infinite; }
.petal-4 { width: 7px; height: 10px; left: 86%; top: -15px; background: radial-gradient(circle at 35% 35%, #E65578 0%, #A31D3E 75%, #700E25 100%); animation: petalDrift 2.5s ease-in 0.8s infinite; }
.petal-5 { width: 8px; height: 12px; left: 52%; top: -15px; background: radial-gradient(circle at 35% 35%, #F5AB40 0%, #D67F1A 75%, #9E530B 100%); animation: petalDrift 2.7s ease-in 1.0s infinite; }
.petal-6 { width: 11px; height: 15px; left: 62%; top: -15px; background: radial-gradient(circle at 35% 35%, #D44265 0%, #941B38 75%, #6A0E23 100%); animation: petalDrift 3.0s ease-in 0.5s infinite; }

@keyframes petalDrift {
  0%   { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg) scale(0.85); }
  15%  { opacity: 0.75; }
  85%  { opacity: 0.65; }
  100% { opacity: 0; transform: translate3d(28px, 85vh, 0) rotate(190deg) scale(1.05); }
}

/* Luminous Champagne Gold Progress Line */
.loader-progress-wrapper {
  position: absolute;
  left: 50%;
  top: 62.4%;
  transform: translateX(-50%);
  width: clamp(260px, 32vw, 420px);
  height: 7px;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .loader-progress-wrapper {
    top: 64.6%;
    left: 50%;
    transform: translateX(-50%);
    width: 42.5%;
    height: 5px;
  }
}

.loader-progress {
  width: 100%;
  height: 100%;
  background: rgba(30, 12, 16, 0.72);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.65), 0 0 12px rgba(212, 160, 60, 0.3);
  border: 1px solid rgba(229, 191, 119, 0.55);
  backdrop-filter: blur(2px);
}

.loader-progress-bar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #9E6B20 0%, #E0A945 35%, #FFF0C2 80%, #FFFFFF 100%);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(245, 206, 118, 0.95);
  transition: transform 2.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.loader-progress-bar.is-complete {
  box-shadow: 0 0 24px rgba(255, 225, 150, 1), 0 0 40px rgba(245, 206, 118, 0.6);
}

/* Active living light spark traveling on the progress tip */
.loader-shimmer {
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -8px;
  width: 20px;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 235, 175, 0.9) 45%, transparent 85%);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px #FFF0C2);
  animation: sparkGlow 1.2s ease-in-out infinite alternate;
}

@keyframes sparkGlow {
  0%   { transform: scale(0.9); opacity: 0.85; }
  100% { transform: scale(1.25); opacity: 1; }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .site-loader {
    animation: none !important;
    transition: opacity 0.35s ease !important;
  }
  .loader-image {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .loader-aura,
  .loader-sunlight,
  .loader-petals,
  .loader-shimmer {
    display: none !important;
  }
  .loader-progress-bar {
    transition: transform 1.2s ease !important;
  }
}

/* ==========================================================================
   Hero Section — Premium Editorial Redesign
   Left-anchored content · Localised gradient · Hotel photograph dominant
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(580px, 84vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0805;
}

/* ── Full-bleed photograph ── */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  max-width: none;
  /* Very subtle living scale — almost invisible, luxury feel */
  animation: heroImgScale 14s ease-out forwards;
}

@keyframes heroImgScale {
  from { transform: scale(1.025); }
  to   { transform: scale(1.0); }
}

/* ── Localised gradient — dense left (behind text), nearly clear right (hotel visible) ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Left gradient — covers text area */
    linear-gradient(
      105deg,
      rgba(14, 9, 5, 0.62) 0%,
      rgba(14, 9, 5, 0.52) 25%,
      rgba(14, 9, 5, 0.28) 50%,
      rgba(14, 9, 5, 0.06) 72%,
      rgba(14, 9, 5, 0.0) 100%
    ),
    /* Soft bottom vignette for grounding */
    linear-gradient(
      to top,
      rgba(10, 6, 3, 0.30) 0%,
      transparent 30%
    );
  pointer-events: none;
}

/* ── Hero content — container + inner wrapper ── */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-inner {
  max-width: 560px;
  /* Animate in on page load */
  animation: heroContentIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.1em;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.7;
  flex: none;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── H1 ── */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFDF8;
  margin: 0 0 0.6em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

/* ── Supporting copy ── */
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 253, 248, 0.88);
  max-width: 480px;
  margin: 0 0 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

/* ── CTA row ── */
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

/* ── Primary CTA — champagne gold ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  background: linear-gradient(135deg, #C8974A 0%, #A97830 100%);
  color: #1A0B02;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #DCA85A 0%, #BE8E40 100%);
  box-shadow: 0 6px 22px rgba(192, 142, 62, 0.42);
  transform: translateY(-2px);
  color: #150900;
}

.btn-hero-primary svg {
  flex: none;
}

/* ── Secondary CTA — transparent / ivory border ── */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 1.75em;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 253, 248, 0.92);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.7);
  transform: translateY(-2px);
  color: #FFFDF8;
}

/* ── Scroll cue — desktop only, very subtle ── */
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.8rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

.hero-scroll-line {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(229, 191, 119, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(229, 191, 119, 0.75);
}

/* ==========================================================================
   Proximity Landmarks Strip
   ========================================================================== */
.proximity-strip {
  background: var(--ivory-deep);
  border-top: 1px solid rgba(192, 142, 62, 0.18);
  border-bottom: 1px solid rgba(192, 142, 62, 0.18);
  padding: 1.5rem 0 1.2rem;
}

.proximity-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 1.1rem;
}

.proximity-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.proximity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.5rem 2.5rem;
  min-width: 160px;
}

.proximity-item svg {
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.proximity-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--maroon-dark);
  display: block;
  letter-spacing: 0.01em;
}

.proximity-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.proximity-divider {
  width: 1px;
  height: 40px;
  background: rgba(192, 142, 62, 0.3);
  flex: none;
}

.proximity-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin: 0.8rem 0 0;
  letter-spacing: 0.02em;
}


.trust-strip {
  background: var(--maroon-dark);
  color: var(--ivory);
  border-top: 1px solid rgba(192, 142, 62, 0.25);
  border-bottom: 1px solid rgba(192, 142, 62, 0.25);
  padding: 0.9rem 0;
}

.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 253, 248, 0.9);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex: none;
}

/* ==========================================================================
   Elevated Floating Booking Bar
   ========================================================================== */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  margin-bottom: 2rem;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(192, 142, 62, 0.25);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 1.2fr auto;
  gap: 1.2rem;
  align-items: end;
}

.booking-form .field {
  margin: 0;
  position: relative;
}

.booking-form .field label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--maroon-dark);
  margin-bottom: 0.45rem;
}

.booking-form .field label svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.booking-form .field input,
.booking-form .field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(96, 24, 40, 0.18);
  border-radius: var(--radius);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: all var(--duration-fast) var(--ease);
}

.booking-form .field input:focus,
.booking-form .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 142, 62, 0.18);
}

.booking-form .btn {
  white-space: nowrap;
  height: 48px;
  padding: 0 1.6rem;
}

/* ==========================================================================
   Page Headers (Interior Pages)
   ========================================================================== */
.page-header {
  position: relative;
  color: var(--white);
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.page-header-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 8, 14, 0.5) 0%,
    rgba(20, 6, 11, 0.85) 100%
  );
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.25em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.breadcrumb {
  font-size: 0.88rem;
  color: rgba(255, 253, 248, 0.8);
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: var(--gold-light);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ==========================================================================
   Cards & Grid Layouts
   ========================================================================== */
.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive semantic two-column layouts */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.room-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.gallery-grid--room {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

/* Card Media Universal Handler (Fixes Blank Crop Bug) */
.service-card-media,
.room-media,
.exp-block-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory-deep);
}

.service-card-media picture,
.service-card-media img,
.room-media picture,
.room-media img,
.exp-block-media picture,
.exp-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service Card (Homepage Room Teaser & Feature Cards) */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(96, 24, 40, 0.09);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--duration-base) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 142, 62, 0.4);
}

.service-card .service-card-media {
  height: 230px;
  margin: -1.6rem -1.6rem 1.4rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card .service-card-media img {
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4em;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.price-display {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--maroon);
  margin: auto 0 1rem;
  padding-top: 0.6rem;
}

.price-display small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Feature Chips for Rooms & Highlights */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 1.2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--ivory);
  color: var(--maroon-dark);
  border: 1px solid rgba(96, 24, 40, 0.1);
}

.chip svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ==========================================================================
   Full Room Cards (Rooms Hub Page)
   ========================================================================== */
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(96, 24, 40, 0.1);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: all var(--duration-base) var(--ease);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(192, 142, 62, 0.35);
}

.room-card.reverse {
  direction: rtl;
}

.room-card.reverse > * {
  direction: ltr;
}

.room-media {
  position: relative;
  min-height: 340px;
}

.room-media img {
  transition: transform 0.6s var(--ease);
}

.room-card:hover .room-media img {
  transform: scale(1.05);
}

.room-media .price-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(60, 12, 23, 0.94);
  color: var(--gold-light);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(192, 142, 62, 0.3);
}

.room-media .price-tag small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255, 253, 248, 0.8);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.room-body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin: 1.2rem 0 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--ivory);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(96, 24, 40, 0.08);
}

.room-facts span {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.room-facts strong {
  color: var(--maroon-dark);
}

.room-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Amenities
   ========================================================================== */
.amenity {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(96, 24, 40, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease);
}

.amenity:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192, 142, 62, 0.3);
}

.amenity-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--ivory) 100%);
  border: 1.5px solid rgba(192, 142, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
}

.amenity h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25em;
  color: var(--maroon-dark);
}

.amenity p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Journey / Distances List
   ========================================================================== */
.journey-list {
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.journey-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.15);
  gap: 1rem;
}

.journey-item .place {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
}

.journey-item .dist {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 191, 119, 0.3);
}

/* ==========================================================================
   Testimonials (Guest Words)
   ========================================================================== */
.testimonial {
  background: var(--white);
  border: 1px solid rgba(96, 24, 40, 0.09);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(192, 142, 62, 0.35);
}

.testimonial-quote {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--gold-light);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info .who {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--maroon-dark);
}

.author-info .badge-verified {
  font-size: 0.74rem;
  color: var(--forest);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
}

/* ==========================================================================
   Experience Blocks (Destination Guide)
   ========================================================================== */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(96, 24, 40, 0.1);
}

.exp-block.reverse {
  direction: rtl;
}

.exp-block.reverse > * {
  direction: ltr;
}

.exp-block-media {
  height: 380px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(96, 24, 40, 0.12);
}

.exp-block-media img {
  transition: transform 0.6s var(--ease);
}

.exp-block:hover .exp-block-media img {
  transform: scale(1.04);
}

.exp-block:last-child {
  border-bottom: none;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(96, 24, 40, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--maroon-dark);
  position: relative;
  min-height: 48px;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease);
}

.faq-question:hover {
  color: var(--maroon);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform var(--duration-fast) var(--ease);
  font-weight: 300;
}

.faq-item.is-open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 450px;
}

.faq-answer p {
  padding-bottom: 1.4rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}

/* ==========================================================================
   Gallery Grid & Lightbox
   ========================================================================== */
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  justify-content: center;
}

.gallery-filters button {
  background: var(--white);
  border: 1px solid rgba(96, 24, 40, 0.2);
  color: var(--maroon);
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease);
  box-shadow: var(--shadow-sm);
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--ivory-deep);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-grid figure.fig-focus-top img {
  object-position: top center;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figure.hide {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 5, 10, 0.94);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2rem);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: calc(84dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 253, 248, 0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--duration-fast) var(--ease);
  cursor: pointer;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

.lightbox-close {
  top: calc(clamp(1rem, 3vh, 1.5rem) + env(safe-area-inset-top));
  right: calc(clamp(1rem, 3vw, 1.5rem) + env(safe-area-inset-right));
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lightbox-prev { left: calc(clamp(0.5rem, 2vw, 1.5rem) + env(safe-area-inset-left)); }
.lightbox-next { right: calc(clamp(0.5rem, 2vw, 1.5rem) + env(safe-area-inset-right)); }

@media (max-width: 600px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    background: rgba(0, 0, 0, 0.72);
  }
}

/* ==========================================================================
   Map & Forms
   ========================================================================== */
.map-frame {
  border: 1px solid rgba(96, 24, 40, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: clamp(280px, 45vh, 450px);
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(96, 24, 40, 0.18);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192, 142, 62, 0.18);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ==========================================================================
   Call to Action Band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: var(--ivory);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(192, 142, 62, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--ivory);
  margin-bottom: 0.3em;
}

.cta-band p {
  color: rgba(251, 248, 242, 0.85);
  margin: 0;
  font-size: 1.15rem;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 242, 0.78);
  padding: 4.5rem 0 1.8rem;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(251, 248, 242, 0.12);
}

.footer-brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.footer-brand img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(229, 191, 119, 0.45));
  transition: transform var(--duration-fast) var(--ease);
}

.footer-brand:hover img {
  transform: scale(1.08);
}

.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ivory);
}

.site-footer h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.site-footer ul li {
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: rgba(251, 248, 242, 0.65);
}

.footer-bottom a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease);
}

.footer-bottom a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  align-items: center;
}

.social-row a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(251, 248, 242, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--duration-fast) var(--ease);
}

.social-row a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(192, 142, 62, 0.15);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social-row a.social-wa:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.15);
}

.social-row a.social-fb:hover {
  border-color: #1877F2;
  color: #1877F2;
  background: rgba(24, 119, 242, 0.15);
}

.social-row a.social-map:hover {
  border-color: #EA4335;
  color: #EA4335;
  background: rgba(234, 67, 53, 0.15);
}

/* ==========================================================================
   Floating Action Buttons (FAB) & Mobile Bar
   ========================================================================== */
.floating-stack {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
}

.fab:hover {
  transform: translateY(-4px) scale(1.08);
}

/* WhatsApp Animated FAB */
.fab-whatsapp {
  background: #25D366;
  color: #ffffff;
  animation: fabWaPulse 2.4s infinite cubic-bezier(0.45, 0, 0.55, 1), fabWaFloat 3.6s ease-in-out infinite;
}

.fab-whatsapp:hover {
  background: #20BA56;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  animation-play-state: paused;
}

@keyframes fabWaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  60% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
}

@keyframes fabWaFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Call Animated FAB */
.fab-call {
  background: var(--maroon);
  color: var(--ivory);
  animation: fabCallPulse 2.8s infinite cubic-bezier(0.45, 0, 0.55, 1) 0.8s, fabCallRingtone 5s ease-in-out infinite;
}

.fab-call:hover {
  background: var(--maroon-dark);
  box-shadow: 0 12px 28px rgba(96, 24, 40, 0.5);
  animation-play-state: paused;
}

@keyframes fabCallPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 24, 40, 0.7), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  60% {
    box-shadow: 0 0 0 14px rgba(96, 24, 40, 0), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(96, 24, 40, 0), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
}

@keyframes fabCallRingtone {
  0%, 82%, 100% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(-14deg);
  }
  89% {
    transform: rotate(14deg);
  }
  93% {
    transform: rotate(-10deg);
  }
  97% {
    transform: rotate(8deg);
  }
}

/* Back to Top Animated FAB */
.fab-top {
  background: var(--white);
  color: var(--maroon);
  border: 1.5px solid rgba(192, 142, 62, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  cursor: pointer;
}

.fab-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: fabTopFloat 3s ease-in-out infinite;
}

.fab-top.is-visible:hover {
  background: var(--ivory);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(192, 142, 62, 0.35);
  animation-play-state: paused;
}

@keyframes fabTopFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.fab svg {
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease;
}

.fab:hover svg {
  transform: scale(1.1);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700;
  background: rgba(60, 12, 23, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(229, 191, 119, 0.3);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 0.6rem;
}

.mobile-bar a,
.mobile-bar button {
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: 1px solid rgba(229, 191, 119, 0.35);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--duration-fast) var(--ease);
}

.mobile-bar a.mobile-bar-primary {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
}

.mobile-bar svg {
  width: 18px;
  height: 18px;
  flex: none;
}

body.has-mobile-bar {
  padding-bottom: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid--room { grid-template-columns: repeat(3, 1fr); }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form .btn { grid-column: 1 / -1; }
  /* Hero — tablet */
  .hero-inner { max-width: 520px; }
  .hero-overlay {
    background:
      linear-gradient(
        105deg,
        rgba(14, 9, 5, 0.68) 0%,
        rgba(14, 9, 5, 0.55) 30%,
        rgba(14, 9, 5, 0.25) 55%,
        rgba(14, 9, 5, 0.0) 100%
      ),
      linear-gradient(to top, rgba(10, 6, 3, 0.32) 0%, transparent 30%);
  }
}

@media (max-width: 820px) {
  .topbar-right { display: none !important; }
  .topbar .container, .topbar-container { justify-content: center !important; text-align: center !important; }
  .nav-links { display: none !important; }
  .nav-toggle { display: block; }
  .nav-cta { display: flex; align-items: center; gap: 0.5rem; }
  .btn-book-now {
    padding: 0.48rem 0.95rem;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .room-overview-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .room-overview-media {
    order: -1;
  }
  .room-card, .room-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .room-body { padding: clamp(1.25rem, 4vw, 2.25rem); }
  .room-media { min-height: clamp(220px, 50vw, 290px); }
  .field-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .mobile-bar { display: block; }
  body.has-mobile-bar { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .floating-stack .fab-call,
  .floating-stack .fab-whatsapp { display: none; }
  .floating-stack { bottom: calc(68px + env(safe-area-inset-bottom) + 0.75rem); }
  /* Hero — mobile nav width */
  .hero { min-height: clamp(520px, 78vh, 820px); }
  .hero-inner { max-width: 100%; }
  .hero-h1 { font-size: clamp(2rem, 6.5vw, 2.8rem); }
  .hero-desc { font-size: 1rem; max-width: 100%; }
  .hero-scroll-cue { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
  /* Proximity — stack dividers */
  .proximity-divider { width: 40px; height: 1px; }
  .proximity-item { padding: 0.4rem 1.2rem; min-width: 120px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--room { grid-template-columns: repeat(2, 1fr); }
  .topbar-right { display: none !important; }
  .topbar .container, .topbar-container { justify-content: center !important; text-align: center !important; }
  .booking-form { grid-template-columns: 1fr; }
  .trust-strip .container { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
  .exp-block, .exp-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .exp-block-media { height: 260px; }
  .room-actions { flex-direction: column; }
  .room-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .amenity { padding: 1rem; gap: 0.85rem; }
  .amenity-icon { width: 44px; height: 44px; }
  .amenity-icon svg { width: 20px; height: 20px; }
  /* Hero — small mobile */
  .hero { min-height: clamp(480px, 80vh, 700px); }
  .hero-img { object-position: 55% 22%; }
  .hero-h1 { font-size: clamp(1.75rem, 6.5vw, 2.2rem); }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.15em; }
  .hero-desc { font-size: 0.95rem; }
  /* Stronger overlay on mobile for text readability */
  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 6, 3, 0.30) 0%,
        rgba(10, 6, 3, 0.45) 40%,
        rgba(10, 6, 3, 0.60) 70%,
        rgba(10, 6, 3, 0.72) 100%
      ),
      linear-gradient(
        105deg,
        rgba(14, 9, 5, 0.60) 0%,
        rgba(14, 9, 5, 0.35) 50%,
        rgba(14, 9, 5, 0.0) 100%
      );
  }
  /* Proximity — vertical stack */
  .proximity-grid { flex-direction: column; gap: 0.6rem; }
  .proximity-divider { display: none; }
  .proximity-item { padding: 0.25rem 0; min-width: auto; }
}

/* Very Small Mobile Phones (320px - 400px) */
@media (max-width: 400px) {
  .nav { gap: 0.5rem; }
  .brand { gap: 0.5rem; }
  .brand img { width: 38px; height: 38px; }
  .brand-text .name { font-size: 1.15rem; }
  .brand-text .place { font-size: 0.6rem; letter-spacing: 0.12em; }
  .btn-book-now { padding: 0.42rem 0.65rem; font-size: 0.76rem; }
  .mobile-bar { padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom)); }
  .mobile-bar-inner { gap: 0.35rem; }
  .mobile-bar a, .mobile-bar button { min-height: 44px; font-size: 0.76rem; padding: 0.25rem 0.3rem; }
}

@media (max-width: 360px) {
  .gallery-grid--room { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .room-facts { padding: 0.75rem 0.85rem; gap: 0.45rem 0.9rem; font-size: 0.84rem; }
}

/* Landscape Mobile Phones */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: max(320px, 100svh);
    padding: 1.5rem 0;
  }
  .hero-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .hero-h1 {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
  }
  .hero-desc {
    margin-bottom: 1rem;
    font-size: 0.92rem;
  }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mobile-bar {
    padding-top: 0.35rem;
    padding-bottom: calc(0.35rem + env(safe-area-inset-bottom));
  }
  .mobile-bar a,
  .mobile-bar button {
    min-height: 38px;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   Accessibility & Utilities
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--maroon-dark);
  color: var(--white);
  padding: 0.8em 1.4em;
  z-index: 2000;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

body.nav-open-lock {
  overflow: hidden !important;
  touch-action: none;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .loader-petals,
  .loader-sunlight,
  .loader-shimmer {
    display: none !important;
  }
  .loader-media,
  .loader-progress-wrapper,
  .hero-content,
  .hero-inner,
  .hero-actions,
  .hero-scroll-cue {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Professional Contact Page Styles
   ========================================================================== */
.contact-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 62ch;
  color: rgba(255, 253, 248, 0.92);
  margin-top: 0.6rem;
  margin-bottom: 1.8rem;
}

.contact-hero-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 191, 119, 0.4);
  color: var(--gold-light);
}

.contact-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* 4 Quick Contact Action Cards */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3.5rem;
}

.contact-quick-card {
  background: var(--white);
  border: 1px solid rgba(96, 24, 40, 0.12);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  box-shadow: 0 12px 32px rgba(32, 23, 18, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(32, 23, 18, 0.14);
  border-color: var(--gold);
}

.contact-quick-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(192, 142, 62, 0.12);
  color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-quick-card:hover .contact-quick-icon {
  background: var(--gold);
  color: var(--white);
}

.contact-quick-icon.wa-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-quick-card:hover .contact-quick-icon.wa-icon {
  background: #25D366;
  color: #ffffff;
}

.contact-quick-card h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.35rem;
}

.contact-quick-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  word-break: break-word;
}

.contact-quick-action {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.contact-quick-action svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.contact-quick-card:hover .contact-quick-action svg {
  transform: translateX(4px);
}

/* Two-column Main Contact Grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-group {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-detail-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(96, 24, 40, 0.08);
  box-shadow: 0 4px 14px rgba(32, 23, 18, 0.04);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(192, 142, 62, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-body h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--maroon);
  margin-bottom: 0.25rem;
}

.contact-detail-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}

.contact-detail-body a {
  color: var(--maroon);
  font-weight: 700;
  text-decoration: none;
}

.contact-detail-body a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.contact-pilgrim-note {
  background: linear-gradient(135deg, rgba(96, 24, 40, 0.06) 0%, rgba(192, 142, 62, 0.1) 100%);
  border: 1px solid rgba(192, 142, 62, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}

.contact-pilgrim-note h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-pilgrim-note p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Luxury Interactive Form Card */
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(96, 24, 40, 0.12);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 16px 44px rgba(32, 23, 18, 0.1);
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--maroon));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.contact-form-head {
  margin-bottom: 1.8rem;
}

.contact-form-head h3 {
  font-size: 1.6rem;
  color: var(--maroon-dark);
  margin-bottom: 0.4rem;
}

.contact-form-head p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.contact-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form-card .field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--maroon-dark);
  margin-bottom: 0.45rem;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1.5px solid rgba(96, 24, 40, 0.18);
  border-radius: var(--radius);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: all var(--duration-fast) var(--ease);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(192, 142, 62, 0.22);
}

.contact-submit-btn {
  width: 100%;
  padding: 1.05rem 1.6rem;
  border-radius: var(--radius);
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all var(--duration-fast) var(--ease);
  text-decoration: none;
}

.contact-submit-btn:hover {
  background: #20BA56;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.contact-submit-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-privacy-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* How to Reach Cards */
.contact-travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.contact-travel-card {
  background: var(--white);
  border: 1px solid rgba(96, 24, 40, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 24px rgba(32, 23, 18, 0.05);
  transition: transform var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.contact-travel-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.contact-travel-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(192, 142, 62, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.contact-travel-card h3 {
  font-size: 1.25rem;
  color: var(--maroon-dark);
  margin-bottom: 0.5rem;
}

.contact-travel-dist {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.8rem;
}

.contact-travel-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* FAQ Grid on Contact Page */
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.contact-faq-card {
  background: var(--white);
  border: 1px solid rgba(96, 24, 40, 0.1);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 6px 18px rgba(32, 23, 18, 0.04);
}

.contact-faq-card h3 {
  font-size: 1.1rem;
  color: var(--maroon-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.contact-faq-card h3 svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-faq-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* Responsive Overrides for Contact Page */
@media (max-width: 1024px) {
  .contact-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-travel-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-quick-grid {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .contact-input-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ==========================================================================
   Celebrity & Distinguished Guest Showcase (Umesh Yadav)
   ========================================================================== */
.celebrity-section {
  position: relative;
  background: var(--ivory);
  border-top: 1px solid rgba(192, 142, 62, 0.2);
  border-bottom: 1px solid rgba(192, 142, 62, 0.2);
}

.celebrity-guest-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.celebrity-photos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.celebrity-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(32, 23, 18, 0.1);
  border: 1px solid rgba(192, 142, 62, 0.35);
  background: var(--white);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}

.celebrity-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold);
}

.celebrity-photo-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.celebrity-photo-caption {
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%);
  border-top: 1px solid rgba(192, 142, 62, 0.2);
  line-height: 1.4;
}

.celebrity-photo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(60, 12, 23, 0.88);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 191, 119, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.celebrity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}

.celebrity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(192, 142, 62, 0.12);
  color: var(--maroon-dark);
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid rgba(192, 142, 62, 0.28);
}

.celebrity-badge svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

@media (max-width: 920px) {
  .celebrity-guest-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .celebrity-photos-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .celebrity-photo-card img {
    height: 320px;
  }
}

/* ==========================================================================
   Policy & Legal Pages Styling (Privacy Policy, Terms, Cancellation)
   ========================================================================== */
.policy-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  background: var(--ivory);
}

.policy-article {
  max-width: 860px;
  margin: 0 auto;
  background: var(--ivory-light);
  border: 1px solid rgba(192, 142, 62, 0.2);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4.5vw, 3.5rem);
  box-shadow: var(--shadow-sm);
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-subtle);
  color: var(--maroon);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(192, 142, 62, 0.3);
}

.policy-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.policy-sublead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ivory-deep);
}

.policy-block {
  margin-bottom: 2.25rem;
}

.policy-block h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--maroon-dark);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(192, 142, 62, 0.18);
  font-family: var(--font-display);
}

.policy-block h3 {
  font-size: 1.15rem;
  color: var(--maroon);
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.policy-block p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.9rem;
  max-width: 100%;
}

.policy-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1.25rem;
}

.policy-block li {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 0.35rem;
}

.policy-block a {
  color: var(--maroon);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.policy-block a:hover {
  color: var(--gold);
}

.policy-callout {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-top: 1px solid var(--ivory-deep);
  border-right: 1px solid var(--ivory-deep);
  border-bottom: 1px solid var(--ivory-deep);
}

.policy-callout p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.65;
}

.policy-contact-box {
  background: linear-gradient(135deg, rgba(245, 234, 212, 0.45) 0%, rgba(251, 248, 242, 0.9) 100%);
  border: 1px solid rgba(192, 142, 62, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1.25rem;
}

.policy-contact-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--maroon-dark);
}

.policy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.policy-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--gold);
}

@media (max-width: 600px) {
  .policy-article {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
  }
  .policy-block h2 {
    font-size: 1.3rem;
  }
}



