/* ==========================================================================
   Manu Family Guest House - Premium Light Luxury Design System
   Redesigned 2026 | Playfair Display + Inter
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --white:      #FFFFFF;
  --gold:       #C8A96A;
  --gold-deep:  #A8894A;
  --gold-light: #E0C485;
  --gold-bg:    rgba(200, 169, 106, 0.08);
  --charcoal:   #1E1E1E;
  --beige:      #F8F6F2;
  --gray-light: #F4F4F4;
  --gray:       #555555;
  --gray-dim:   #888888;
  --line:       rgba(168, 137, 74, 0.22);
  --line-soft:  rgba(168, 137, 74, 0.12);
  --shadow-sm:  0 2px 12px rgba(30,30,30,0.07);
  --shadow-md:  0 8px 32px rgba(30,30,30,0.10);
  --shadow-lg:  0 20px 60px rgba(30,30,30,0.14);
  --radius:     6px;
  --radius-lg:  12px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  /* Sticky bar height var for safe spacing */
  --sticky-h:   60px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  /* NOTE: overflow-x hidden on body only as a last safety net - root causes are fixed individually */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
section { position: relative; padding: 120px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }
@media (max-width: 480px) { section { padding: 64px 0; } }

/* ---------- Typography Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.centered { margin: 0 auto 64px; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(26px, 4vw, 46px); line-height: 1.15; }
.section-head p { color: var(--gray); margin-top: 18px; font-size: clamp(15px, 2vw, 17px); line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); transition: all .3s var(--ease);
  border: 2px solid transparent; position: relative; overflow: hidden;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep); border-color: var(--gold-deep);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,137,74,0.35);
}
.btn-outline {
  background: transparent; color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-ghost { color: var(--gray); border-color: transparent; }
.btn-ghost:hover { color: var(--gold-deep); }
/* Button ripple */
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-anim .65s var(--ease) forwards;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ---------- Skip link & accessibility ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 999;
  background: var(--gold); color: var(--charcoal);
  padding: 12px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; transition: top .25s var(--ease);
  border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 500;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transition: width .1s linear;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 24px 0;
  transition: all .45s var(--ease);
  background: transparent;
}
header.scrolled {
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(30,30,30,0.08);
}
nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--white);
  transition: color .35s var(--ease);
}
.brand-text span {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.65);
  margin-top: 2px; font-family: 'Inter', sans-serif;
  transition: color .35s var(--ease);
}
header.scrolled .brand-text { color: var(--charcoal); }
header.scrolled .brand-text span { color: var(--gray-dim); }

.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  position: relative; padding-bottom: 4px; transition: color .25s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
header.scrolled .nav-links a { color: var(--gray); }
header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active { color: var(--charcoal); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  border: 2px solid var(--gold);
  white-space: nowrap !important;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-deep) !important;
  border-color: var(--gold-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,137,74,0.4);
}
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.burger span { width: 24px; height: 1.5px; background: var(--white); transition: background .3s; display: block; }
header.scrolled .burger span { background: var(--charcoal); }

/* Desktop narrow breakpoint adjustment (1081px to 1240px) */
@media (min-width: 1081px) and (max-width: 1240px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.05em; }
  .nav-cta { padding: 9px 16px !important; font-size: 11px !important; }
}

/* ==========================================================================
   MOBILE NAV DRAWER - Premium Sharp & Opaque Luxury
   ========================================================================== */
/* Nav overlay - stays behind drawer, provides subtle dark backdrop */
#navOverlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#navOverlay.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1080px) {
  header { z-index: 1000; }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(85vw, 380px);
    max-width: 100%;
    background: #FFFFFF !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: -8px 0 60px rgba(0,0,0,0.22);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links.open { transform: translateX(0); }

  /* Drawer header: logo + close button */
  .nav-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 20px 24px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--white);
    flex-shrink: 0;
  }
  .nav-drawer-brand {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-drawer-brand img {
    width: 38px; height: 38px; object-fit: contain;
  }
  .nav-drawer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 700;
    color: var(--charcoal); line-height: 1.2;
  }
  .nav-drawer-brand-text span {
    display: block; font-size: 9px; font-weight: 500;
    letter-spacing: 0.14em; color: var(--gray-dim);
    font-family: 'Inter', sans-serif; margin-top: 2px;
  }
  .nav-close-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--beige);
    border: 1px solid var(--line-soft);
    display: flex !important;
    align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .25s;
  }
  .nav-close-btn:hover {
    background: var(--charcoal); border-color: var(--charcoal);
  }
  .nav-close-btn:hover svg { stroke: var(--white); }
  .nav-close-btn svg {
    width: 18px; height: 18px;
    stroke: var(--charcoal); fill: none; stroke-width: 2;
  }

  /* Nav link items */
  .nav-links > li {
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links > li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    font-size: 15px !important;
    color: var(--charcoal) !important;
    padding: 16px 28px !important;
    display: flex !important;
    align-items: center;
    letter-spacing: 0.08em;
    transition: all .2s;
  }
  .nav-links a:hover {
    background: var(--beige);
    color: var(--gold-deep) !important;
    padding-left: 36px !important;
  }
  .nav-links a.active {
    color: var(--gold-deep) !important;
    background: var(--gold-bg);
    border-left: 3px solid var(--gold);
    padding-left: 25px !important;
  }
  .nav-links a::after { display: none !important; }

  /* Book Now CTA in drawer */
  .nav-cta {
    margin: 0 !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 0 !important;
    padding: 18px 28px !important;
    font-size: 13px !important;
    border: none !important;
    border-top: 2px solid var(--gold-deep) !important;
  }

  /* Drawer contact section */
  .nav-drawer-contact {
    display: block !important;
    padding: 24px 28px;
    background: var(--beige);
    border-top: 1px solid var(--line-soft);
    margin-top: auto;
  }
  .nav-drawer-contact p {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-deep); margin-bottom: 14px;
  }
  .nav-drawer-contact a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 14px !important;
    color: var(--charcoal) !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    background: transparent !important;
    letter-spacing: 0;
  }
  .nav-drawer-contact a:last-child { border-bottom: none !important; }
  .nav-drawer-contact a:hover { color: var(--gold-deep) !important; background: transparent !important; padding-left: 0 !important; }
  .nav-drawer-contact a::after { display: none !important; }
  .nav-drawer-contact svg {
    width: 16px; height: 16px; flex-shrink: 0;
    stroke: var(--gold-deep); fill: none; stroke-width: 1.8;
  }

  .burger { display: flex; }
}

/* Elements hidden on desktop, shown inside drawer */
.nav-drawer-header,
.nav-drawer-contact,
.nav-close-btn,
.nav-drawer-brand {
  display: none;
}

/* ---------- Page hero (interior pages) - LUXURY ---------- */
.page-hero {
  padding: 220px 0 110px;
  position: relative; overflow: hidden;
  background: var(--charcoal);
  min-height: 540px;
  display: flex; align-items: flex-end;
}
/* Background image */
.page-hero .ph-media {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero .ph-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.38;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.00); }
}
/* Double overlay: depth + gold vignette */
.page-hero .ph-media::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(170deg,
      rgba(10,8,6,0.90) 0%,
      rgba(20,16,10,0.72) 45%,
      rgba(30,20,8,0.68) 100%);
}
.page-hero .ph-media::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 120% 80% at 60% 100%,
      rgba(168,137,74,0.22) 0%,
      transparent 70%);
}
/* Animated gold accent line at bottom of hero */
.page-hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-deep) 20%,
    var(--gold-light) 50%,
    var(--gold-deep) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: goldShimmer 3.5s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Floating particle dots (decorative) */
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 30%, rgba(200,169,106,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 55%, rgba(200,169,106,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 25%, rgba(200,169,106,0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 70%, rgba(200,169,106,0.20) 0%, transparent 100%);
}
.page-hero .wrap { position: relative; z-index: 4; }
/* Text entrance animation */
.page-hero h1 {
  font-size: clamp(32px, 5.8vw, 66px); max-width: 820px;
  color: var(--white); line-height: 1.08;
  animation: heroTextIn 1.1s var(--ease) both;
  animation-delay: 0.2s;
}
.page-hero .sub {
  color: rgba(255,255,255,0.70); font-size: clamp(15px, 2.5vw, 17.5px); max-width: 580px;
  margin-top: 22px; font-weight: 400; line-height: 1.75;
  animation: heroTextIn 1.1s var(--ease) both;
  animation-delay: 0.4s;
}
.page-hero .eyebrow {
  color: var(--gold-light);
  animation: heroTextIn 1.1s var(--ease) both;
  animation-delay: 0.05s;
}
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero .breadcrumb {
  animation: heroTextIn .9s var(--ease) both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Hero CTA buttons */
.page-hero .hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px;
  animation: heroTextIn 1.1s var(--ease) both;
  animation-delay: 0.55s;
}
@media (max-width: 768px) {
  .page-hero { padding: 160px 0 80px; min-height: 440px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 50px); }
}
@media (max-width: 480px) {
  .page-hero { padding: 140px 0 60px; min-height: 360px; }
  .page-hero .sub { font-size: 15px; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb span[aria-current] { color: var(--gold-light); }

/* ==========================================================================
   HOME HERO - Full-screen image slider
   ========================================================================== */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding-bottom: 90px;
}
/* Slider */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10,8,6,0.72) 0%,
    rgba(10,8,6,0.55) 45%,
    rgba(30,24,12,0.70) 100%
  );
}
/* Slider progress dots */
.hero-dots {
  position: absolute; bottom: 100px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; transition: all .3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold); width: 26px; border-radius: 4px;
}

/* Content */
.hero-content {
  position: relative; z-index: 2; width: 100%;
}
.hero-content .wrap { padding-bottom: 16px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: ""; width: 24px; height: 1px; background: var(--gold-light);
}
.hero h1 {
  font-size: clamp(36px, 6.5vw, 76px);
  color: var(--white); line-height: 1.06;
  max-width: 800px; margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 17px); color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 44px; font-weight: 400;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: rgba(255,255,255,0.45); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,106,0.6));
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--charcoal);
  padding: 0 !important;
}
.trust-strip .wrap {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0; padding: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 140px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500;
  /* FIXED: removed white-space: nowrap which was causing overflow */
  transition: background .3s;
}
.trust-item:hover { background: rgba(200,169,106,0.08); }
.trust-item:last-child { border-right: none; }
.trust-item svg {
  width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0;
  fill: none; stroke-width: 1.4;
}

/* ==========================================================================
   WELCOME / ABOUT PREVIEW
   ========================================================================== */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* FIXED: ensure it doesn't overflow on small screens */
  min-width: 0;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-visual:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 28px; right: -16px; z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
  text-align: center;
  /* FIXED: constrain so it never leaves the viewport */
  max-width: calc(100% - 24px);
}
.about-badge .n {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--charcoal); display: block; line-height: 1;
}
.about-badge .n span { color: var(--gold); }
.about-badge .l {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray-dim); margin-top: 4px;
  display: block;
}
.about-copy { min-width: 0; }
.about-copy p { color: var(--gray); margin-bottom: 20px; font-size: 16.5px; line-height: 1.8; }
.about-copy p:first-of-type { color: var(--charcoal); font-size: clamp(16px, 2.2vw, 18.5px); font-weight: 400; line-height: 1.7; }
.about-copy h2 { font-size: clamp(24px, 3.8vw, 42px); margin-bottom: 24px; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section { background: var(--beige); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 36px; border: 1px solid var(--line-soft);
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
  min-width: 0;
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.why-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--gold-bg); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; }
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p { color: var(--gray); font-size: 14.5px; line-height: 1.75; }

/* ==========================================================================
   ROOMS PREVIEW
   ========================================================================== */
.rooms-section { background: var(--white); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.room-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  min-width: 0;
}
.room-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.room-visual {
  /* FIXED: use aspect-ratio instead of fixed height for responsiveness */
  aspect-ratio: 3/2;
  position: relative; overflow: hidden;
  background: var(--gray-light);
}
.room-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.room-card:hover .room-visual img { transform: scale(1.07); }
.room-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.65) 0%, transparent 55%);
}
.room-visual .tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--gold); color: var(--charcoal);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 3px;
}
.room-visual .price-badge {
  position: absolute; bottom: 20px; right: 20px; z-index: 2;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius); padding: 10px 16px;
  text-align: right;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.room-visual .price-badge .amt {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--charcoal); display: block; line-height: 1;
}
.room-visual .price-badge .per {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-dim); display: block;
  margin-top: 2px;
}
.room-body { padding: 28px 28px 30px; }
.room-body h3 { font-size: 22px; margin-bottom: 8px; }
.room-body > p { color: var(--gray); font-size: 14.5px; margin-bottom: 18px; line-height: 1.7; }
.room-feats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
}
.room-feats li {
  font-size: 12.5px; color: var(--gray); display: flex;
  align-items: center; gap: 6px; background: var(--beige);
  padding: 5px 12px; border-radius: 20px; font-weight: 500;
}
.room-feats li::before {
  content: ""; width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}
.room-foot {
  display: flex; gap: 12px; justify-content: space-between;
  align-items: center; border-top: 1px solid var(--line-soft);
  padding-top: 20px; flex-wrap: wrap;
}
.room-occ { font-size: 12.5px; color: var(--gray-dim); font-weight: 500; }
.room-foot-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.room-foot-btns a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 9px 18px; border-radius: var(--radius);
  transition: all .3s;
}
.room-foot-btns .btn-book {
  background: var(--gold); color: var(--charcoal);
  border: 1.5px solid var(--gold);
}
.room-foot-btns .btn-book:hover {
  background: var(--gold-deep); border-color: var(--gold-deep);
}
.room-foot-btns .btn-details {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--line);
}
.room-foot-btns .btn-details:hover {
  border-color: var(--charcoal);
}

/* ---------- Room detail (rooms page) ---------- */
.room-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--line-soft);
}
.room-detail:last-child { border-bottom: none; }
.room-detail:nth-child(even) .rd-copy { order: -1; }
.rd-slider {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.rds-track { display: flex; height: 100%; transition: transform .5s var(--ease); }
.rds-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.rds-slide img { width: 100%; height: 100%; object-fit: cover; }
.rds-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.rds-arrow:hover { background: var(--gold); }
.rds-arrow svg { width: 18px; height: 18px; stroke: var(--charcoal); fill: none; stroke-width: 1.8; }
.rds-arrow:hover svg { stroke: var(--charcoal); }
.rds-prev { left: 14px; }
.rds-next { right: 14px; }
.rds-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 8px; }
.rds-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; padding: 0; transition: all .25s; cursor: pointer; }
.rds-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.rds-counter {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,0.9); color: var(--charcoal);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 20px;
}
.rd-copy { min-width: 0; }
.rd-copy h2 { font-size: clamp(22px, 3.5vw, 36px); margin-bottom: 16px; }
.rd-tag {
  display: inline-flex; background: var(--gold); color: var(--charcoal);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 3px;
  margin-bottom: 16px;
}
.rd-copy .desc { color: var(--gray); font-size: 15.5px; line-height: 1.8; margin-bottom: 24px; }
.room-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 28px;
}
.spec-cell { background: var(--beige); padding: 16px 18px; }
.spec-cell .sk {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-dim);
  margin-bottom: 5px;
}
.spec-cell .sv { font-size: 14px; color: var(--charcoal); font-weight: 500; }
.rd-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.rd-feats li {
  font-size: 13px; color: var(--charcoal); display: flex;
  align-items: center; gap: 7px; padding: 7px 14px;
  background: var(--gold-bg); border-radius: 4px; font-weight: 500;
}
.rd-feats li svg {
  width: 14px; height: 14px; stroke: var(--gold-deep); fill: none; stroke-width: 2; flex-shrink: 0;
}
.rd-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); margin-top: 20px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--line-soft); font-size: 14px;
}
table.compare thead th {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--beige);
  border-bottom: 2px solid var(--line);
}
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:hover { background: var(--beige); }
table.compare td.price {
  color: var(--charcoal); font-family: 'Playfair Display', serif; font-weight: 700;
}
table.compare .check { color: #2a9d8f; font-size: 16px; }
table.compare .dash { color: var(--gray-dim); }

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities-section { background: var(--beige); }
.amen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.amen-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: all .4s var(--ease); border: 1px solid transparent;
  box-shadow: var(--shadow-sm); min-width: 0;
}
.amen-item:hover {
  transform: translateY(-6px); border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.amen-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-bg); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.amen-icon svg { width: 26px; height: 26px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; }
.amen-item span { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.amen-item small { font-size: 12.5px; color: var(--gray); line-height: 1.5; }

/* Amenity detail cards (amenities page) */
.amen-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 60px;
}
.amen-detail {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; display: flex; gap: 22px; align-items: flex-start;
  border: 1px solid var(--line-soft);
  transition: all .35s var(--ease);
  min-width: 0;
}
.amen-detail:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.amen-detail .ad-icon {
  width: 50px; height: 50px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
}
.amen-detail .ad-icon svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; }
.amen-detail h4 { font-size: 17px; margin-bottom: 8px; }
.amen-detail p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 12px;
}
.g-item {
  position: relative; overflow: hidden; cursor: pointer;
  display: block; border-radius: var(--radius);
  background: var(--gray-light);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.g-item:hover img { transform: scale(1.08); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.g-item:hover::after { opacity: 1; }
.g-item span {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  opacity: 0; transform: translateY(6px); transition: all .35s;
}
.g-item:hover span { opacity: 1; transform: translateY(0); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

/* Gallery filters */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.gf-btn {
  border: 1.5px solid var(--line); background: none; color: var(--gray);
  padding: 10px 22px; border-radius: 30px;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all .25s; cursor: pointer;
}
.gf-btn:hover { border-color: var(--gold-deep); color: var(--charcoal); }
.gf-btn.active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10, 8, 6, 0.95);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox .lb-frame {
  position: relative; max-width: 90vw; max-height: 84vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.lightbox .lb-cap {
  position: absolute; bottom: -44px; left: 0; right: 0;
  text-align: center; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light);
  font-weight: 500;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; cursor: pointer;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold); border-color: var(--gold); color: var(--charcoal);
}
.lb-close { top: -60px; right: 0; }
.lb-prev { left: -70px; top: 50%; transform: translateY(-50%); }
.lb-next { right: -70px; top: 50%; transform: translateY(-50%); }
.lb-prev svg, .lb-next svg, .lb-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.lb-counter {
  position: absolute; top: -50px; left: 0;
  font-size: 13px; color: rgba(255,255,255,0.5);
  font-weight: 500; letter-spacing: 0.05em;
}
.lb-counter strong { color: var(--gold); }

/* ==========================================================================
   TESTIMONIALS - Premium Boutique Hotel Editorial Design
   ========================================================================== */
.testimonials-section {
  background: var(--beige);
  padding: 80px 0;
}

.test-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0;
}

.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 16px;
  border-radius: 2px;
}

.section-sub {
  font-size: clamp(14px, 2vw, 16.5px);
  color: var(--gray-dim);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-carousel {
  position: relative;
  margin-top: 40px;
}

.testimonials-track-wrap {
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  /* Dynamic JS override minWidth (default: 33.333% desktop, 100% mobile) */
  min-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.testimonial-inner {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--line-soft);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  min-width: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-inner .quote {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 0.6;
  color: var(--gold-light);
  position: absolute;
  top: 28px;
  right: 28px;
  opacity: 0.4;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
}

.testimonial-inner blockquote {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-grow: 1;
}

.t-divider {
  width: 36px;
  height: 1.5px;
  background: var(--gold-light);
  margin: 0 0 18px 0;
  opacity: 0.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-deep);
  border: 1px solid rgba(200, 169, 106, 0.3);
}

.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 12.5px;
  color: var(--gray-dim);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.test-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.test-arrow-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: scale(1.06);
}

.test-arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.test-counter {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  min-width: 50px;
  text-align: center;
}

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

.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
}

.testimonials-dots button.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* Mobile specific styling for 1 card per view */
@media (max-width: 640px) {
  .testimonials-section {
    padding: 56px 0;
  }
  .testimonial-card {
    min-width: 100% !important;
    padding: 0 6px;
  }
  .testimonial-inner {
    padding: 28px 22px;
  }
  .testimonial-inner .quote {
    font-size: 48px;
    top: 20px;
    right: 20px;
  }
  .testimonial-inner blockquote {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .testimonials-controls {
    margin-top: 28px;
  }
}

/* ==========================================================================
   ATTRACTIONS
   ========================================================================== */
.attractions-section { background: var(--white); }
.attr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.attr-card {
  background: var(--beige); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--line-soft);
  transition: all .4s var(--ease); min-width: 0;
}
.attr-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.attr-card .ac-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.attr-icon {
  width: 44px; height: 44px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
}
.attr-icon svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; }
.attr-card h3 { font-size: 18px; margin-bottom: 4px; }
.attr-card .ac-dist {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep);
}
.attr-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }
.attr-meta { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.attr-meta .am {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-dim); font-weight: 500;
}
.attr-meta .am svg { width: 13px; height: 13px; stroke: var(--gold-deep); fill: none; stroke-width: 1.8; }

/* Attraction list (homepage preview) */
.attr-list { border-top: 1px solid var(--line-soft); }
.attr-row {
  display: grid; grid-template-columns: 1fr auto 1.5fr;
  gap: 30px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line-soft);
}
.attr-row h3 { font-size: 18px; min-width: 0; }
.attr-dist {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-deep);
  border-left: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft);
  padding: 0 24px; text-align: center; white-space: nowrap;
}
.attr-row p { color: var(--gray); font-size: 14.5px; line-height: 1.7; min-width: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--white); }
.faq-list { }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  color: var(--charcoal); padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif; font-size: clamp(15px, 2vw, 17px);
  gap: 24px; cursor: pointer; transition: color .25s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-item.open .faq-q { color: var(--gold-deep); }
.faq-q .plus {
  color: var(--gold-deep); font-size: 22px; font-weight: 300;
  transition: transform .35s var(--ease); flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { color: var(--gray); padding-bottom: 26px; max-width: 700px; font-size: 15.5px; line-height: 1.8; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
}
.contact-card {
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 24px 22px; margin-bottom: 16px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all .3s; background: var(--beige);
  min-width: 0;
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-card .cc-icon {
  width: 44px; height: 44px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--gold-bg); display: flex; align-items: center; justify-content: center;
}
.contact-card .cc-icon svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; }
.contact-card h4 { font-size: 15px; margin-bottom: 6px; }
.contact-card p, .contact-card a {
  color: var(--gray); font-size: 14px; display: block; line-height: 1.6;
  /* FIXED: allow long email to wrap */
  word-break: break-all; overflow-wrap: break-word;
}
.contact-card a:hover { color: var(--gold-deep); }
.contact-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}

/* Form */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
  display: block; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-dim); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--beige); border: 1.5px solid var(--line-soft);
  color: var(--charcoal); padding: 14px 18px;
  font-family: 'Inter', sans-serif; font-size: 14.5px;
  border-radius: var(--radius); transition: all .25s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-dim); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold); background: var(--white); outline: none;
  box-shadow: 0 0 0 3px rgba(200,169,106,0.12);
}
.form-field select { appearance: none; cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { color: var(--gray-dim); font-size: 12.5px; margin-top: 6px; line-height: 1.6; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-soft);
  margin-top: 60px;
  /* FIXED: ensure map container never overflows */
  width: 100%; max-width: 100%;
}
.map-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--beige);
  border-bottom: 1px solid var(--line-soft);
}
.map-header h4 {
  font-size: 14px; font-weight: 600; color: var(--charcoal);
}
.map-open-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-deep);
  transition: color .2s;
}
.map-open-link:hover { color: var(--charcoal); }
.map-open-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.map-embed {
  /* FIXED: width: 100% not 100vw */
  width: 100%; height: 420px; border: 0; display: block;
}

/* Info grid */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 40px;
}
.info-panel { padding: 44px 42px; background: var(--white); }
.info-panel + .info-panel { border-left: 1px solid var(--line-soft); background: var(--beige); }
.info-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line-soft); gap: 12px; flex-wrap: wrap; }
.info-row:last-child { border-bottom: none; }
.info-row .k { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-dim); flex-shrink: 0; }
.info-row .v { font-family: 'Playfair Display', serif; color: var(--charcoal); font-size: 15px; font-weight: 600; }
.addr-block p { color: var(--gray); line-height: 1.9; font-size: 15px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--charcoal);
  text-align: center; padding: 130px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,169,106,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .eyebrow { justify-content: center; color: var(--gold-light); }
.final-cta .eyebrow::before { background: var(--gold-light); }
.final-cta h2 { font-size: clamp(28px, 5vw, 54px); color: var(--white); max-width: 720px; margin: 0 auto 20px; }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 48px; font-size: clamp(15px, 2vw, 17px); line-height: 1.75; }
.final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand { min-width: 0; }
.foot-brand .brand { margin-bottom: 20px; }
.foot-brand .brand-text { color: var(--white); }
.foot-brand .brand-text span { color: rgba(255,255,255,0.45); }
.foot-brand > p {
  color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8;
  max-width: 280px;
  /* FIXED: allow text to wrap properly */
  word-wrap: break-word;
}
.foot-brand .foot-contact { margin-top: 22px; }
.foot-brand .foot-contact a {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color .25s;
  /* FIXED: allow long email to wrap */
  word-break: break-all; overflow-wrap: break-word;
}
.foot-brand .foot-contact a:hover { color: var(--gold-light); }
.foot-brand .foot-contact svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }

.foot-col { min-width: 0; }
.foot-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 22px; font-family: 'Inter', sans-serif;
}
.foot-col a {
  color: rgba(255,255,255,0.55); font-size: 14px;
  display: block; margin-bottom: 11px; transition: color .25s;
  line-height: 1.4;
}
.foot-col a:hover { color: var(--gold-light); }
.foot-col .foot-cta {
  display: inline-flex; margin-top: 18px;
  background: var(--gold); color: var(--charcoal);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 12px 22px; border-radius: var(--radius);
  transition: all .3s;
}
.foot-col .foot-cta:hover { background: var(--gold-light); color: var(--charcoal); }

.foot-bottom {
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
  row-gap: 8px;
}
.foot-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-legal a { color: rgba(255,255,255,0.45); transition: color .2s; }
.foot-legal a:hover { color: var(--gold-light); }
.foot-dev { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 400; }
.foot-dev a { color: var(--gold-light); font-weight: 600; text-decoration: none; transition: color .25s; }
.foot-dev a:hover { color: var(--white); text-decoration: underline; }

/* ==========================================================================
   FLOATING BUTTONS - Premium Stack System
   ========================================================================== */

/*
  Layout on DESKTOP (right: 28px):
  ↑  Back-to-top  (bottom: 210px)
  ●  WhatsApp     (bottom: 142px)
  ●  Call         (bottom: 76px)
                              <- 28px gap from edge
*/
.floating {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column-reverse; /* WhatsApp on top visually = first in DOM */
  gap: 14px;
  /* Prevent this container from causing overflow */
  pointer-events: none;
}
.floating > * { pointer-events: auto; }

.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 24px; height: 24px; }
.fab-wa { background: #25D366; }
.fab-wa svg { fill: var(--white); stroke: none; }
.fab-call { background: var(--gold); }
.fab-call svg { stroke: var(--charcoal); fill: none; stroke-width: 1.8; }

/* Mobile sticky booking bar */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(30,30,30,0.12);
  padding: 10px 16px;
  /* FIXED: safe-area for iPhone notch */
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  /* FIXED: width 100% not 100vw */
  width: 100%;
}
.sticky-book a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 12px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  min-width: 0;
}
.sticky-book .sb-wa { background: #25D366; color: var(--white); }
.sticky-book .sb-call { background: var(--charcoal); color: var(--white); }
.sticky-book svg { width: 17px; height: 17px; fill: var(--white); flex-shrink: 0; }
.sticky-book .sb-call svg { fill: none; stroke: var(--white); stroke-width: 1.8; }

/*
  Back-to-top - positioned above floating FABs
  Desktop: 28(bottom) + 56(wa) + 14(gap) + 56(call) + 14(gap) + 12(clearance) = 180px + 8px extra = 188px
*/
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 188px;
  z-index: 201; /* above .floating */
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--line);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(30,30,30,0.14);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: all .4s var(--ease); cursor: pointer;
  backdrop-filter: blur(6px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover {
  background: var(--gold); border-color: var(--gold); color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(168,137,74,0.4);
}
.back-to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ==========================================================================
   REVEAL ANIMATIONS - LUXURY
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

/* Stagger children - more refined */
.stagger > *:nth-child(1)  { transition-delay: 0.04s; }
.stagger > *:nth-child(2)  { transition-delay: 0.10s; }
.stagger > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger > *:nth-child(4)  { transition-delay: 0.22s; }
.stagger > *:nth-child(5)  { transition-delay: 0.28s; }
.stagger > *:nth-child(6)  { transition-delay: 0.34s; }
.stagger > *:nth-child(7)  { transition-delay: 0.40s; }
.stagger > *:nth-child(8)  { transition-delay: 0.46s; }
.stagger > *:nth-child(9)  { transition-delay: 0.52s; }
.stagger > *:nth-child(10) { transition-delay: 0.58s; }
.stagger > *:nth-child(11) { transition-delay: 0.64s; }
.stagger > *:nth-child(12) { transition-delay: 0.70s; }

/* ==========================================================================
   SECTION DIVIDERS
   ========================================================================== */
.divider-gold {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; padding: 70px 0;
}
.divider-gold .dl, .divider-gold .dr {
  flex: 1; max-width: 200px; height: 1px;
}
.divider-gold .dl { background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-gold .dr { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-gold .dm {
  width: 10px; height: 10px; border: 1.5px solid var(--gold); border-radius: 50%;
  transform: rotate(45deg);
}

.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* ==========================================================================
   MINI CTA STRIP
   ========================================================================== */
.mini-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--gold-bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px 48px; margin-top: 70px;
}
.mini-cta h3 { font-size: 22px; margin-bottom: 8px; }
.mini-cta p { color: var(--gray); font-size: 15px; }
.mini-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-full { background: var(--white); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.phil-card {
  background: var(--beige); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--line-soft);
  transition: all .4s var(--ease); min-width: 0;
}
.phil-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.phil-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.phil-icon svg { width: 24px; height: 24px; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; }
.phil-card h3 { font-size: 20px; margin-bottom: 12px; }
.phil-card p { color: var(--gray); font-size: 14.5px; line-height: 1.75; }

.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 1.5px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 50px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -40px; top: 5px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--gold);
}
.tl-item h4 { font-size: 18px; color: var(--charcoal); margin-bottom: 8px; }
.tl-item p { color: var(--gray); font-size: 15px; max-width: 560px; line-height: 1.75; }

/* Prose */
.prose { max-width: 760px; }
.prose p { color: var(--gray); font-size: 16.5px; margin-bottom: 22px; line-height: 1.85; }
.prose p:first-of-type { color: var(--charcoal); font-size: clamp(17px, 2.5vw, 19px); font-weight: 400; line-height: 1.7; }

/* ==========================================================================
   SKELETON / IMAGE LOADING
   ========================================================================== */
.skel { position: relative; background: var(--gray-light); overflow: hidden; }
.skel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(200,169,106,0.12) 50%, transparent 70%);
  background-size: 200% 100%; animation: shimmer 1.6s linear infinite;
}
.skel img { opacity: 0; transition: opacity .5s var(--ease); }
.skel img.loaded { opacity: 1; }
.skel.done::before { display: none; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ==========================================================================
   STATS / COUNTERS
   ========================================================================== */
.stats-strip { background: var(--beige); padding: 70px 0 !important; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--line-soft); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 52px); font-weight: 700; color: var(--charcoal); line-height: 1; }
.stat-num .suffix { font-size: 30px; color: var(--gold-deep); }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-dim); margin-top: 8px; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
  .about-badge { right: 10px; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .attr-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line-soft); padding-bottom: 30px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ---- 980px (Mobile Nav breakpoint) ---- */
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100%;
    /* FIXED: constrained width, never exceeds viewport */
    width: min(85vw, 340px);
    background: var(--white);
    box-shadow: -8px 0 60px rgba(30,30,30,0.18);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: 400;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links.open { transform: translateX(0); }

  .burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  /* On tablet/mobile, badge stays inside the visual */
  .about-badge { right: 16px; bottom: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .room-detail { grid-template-columns: 1fr; gap: 40px; }
  .room-detail:nth-child(even) .rd-copy { order: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-panel { padding: 32px 28px; }
  .info-panel + .info-panel { border-left: none; border-top: 1px solid var(--line-soft); }
  .attr-row { grid-template-columns: 1fr; text-align: left; gap: 8px; }
  .attr-dist { border: none; padding: 0; text-align: left; }
  /* FIXED: footer 2 columns on tablet */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .room-specs { grid-template-columns: repeat(2, 1fr); }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  .hero { padding-bottom: 70px; }
  .hero h1 { font-size: clamp(32px, 9vw, 52px); }
  .hero-btns .btn:last-child { display: none; }
  .trust-strip .wrap { flex-direction: column; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    min-width: 0;
    width: 100%;
  }
  .trust-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .rooms-grid { max-width: 100%; }
  .attr-grid { grid-template-columns: 1fr; }
  /* FIXED: on mobile, testimonials show 1 card - handled via JS + min-width:100% */
  .testimonial-card { min-width: 100%; }
  .gallery-grid { grid-auto-rows: 180px; }
  .final-cta { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  /* FIXED: footer 1 column on mobile */
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Show sticky bar */
  .sticky-book { display: flex; }
  /* FIXED: Floating buttons on mobile - sit above sticky bar + safe area */
  .floating {
    right: 16px;
    bottom: calc(var(--sticky-h) + 16px + env(safe-area-inset-bottom));
  }
  /* Hero dots spacing */
  .hero-dots { bottom: 76px; }
  /* FIXED: Back-to-top on mobile - above floating stack */
  .back-to-top {
    right: 16px;
    /* sticky(60) + fab-call(56) + gap(14) + fab-wa(56) + gap(14) + clearance(12) = ~212px above bottom */
    bottom: calc(var(--sticky-h) + 16px + 56px + 14px + 56px + 14px + env(safe-area-inset-bottom));
  }
  /* Add bottom padding to body so sticky bar doesn't cover last content */
  body { padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom)); }
  /* Map height reduction */
  .map-embed { height: 300px; }
  /* Contact section improvements */
  .contact-btns { flex-direction: column; }
  .contact-btns .btn { justify-content: center; width: 100%; }
  /* Section head margin reduction */
  .section-head { margin-bottom: 48px; }
  .section-head.centered { margin-bottom: 48px; }
}

/* ---- 600px ---- */
@media (max-width: 600px) {
  .lightbox { padding: 16px 8px; }
  .lightbox img { max-width: 98vw; max-height: 70vh; }
  .lb-close { top: -48px; right: 0; }
  .lb-counter { top: -44px; left: 0; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  section { padding: 56px 0; }
  .hero h1 { font-size: clamp(28px, 10vw, 44px); }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .amen-item { padding: 24px 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .section-head h2 { font-size: clamp(22px, 7vw, 30px); }
  .final-cta h2 { font-size: clamp(24px, 8vw, 34px); }
  .mini-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .testimonials-nav { gap: 8px; }
  .rd-btns { flex-direction: column; }
  .rd-btns .btn { justify-content: center; width: 100%; }
  /* Room detail on very small screens */
  .room-detail { padding: 48px 0; }
  /* Contact section small screen */
  .contact-card { padding: 18px 16px; gap: 14px; }
  .contact-card .cc-icon { width: 38px; height: 38px; }
  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: clamp(32px, 10vw, 48px); }
  /* Info panel */
  .info-panel { padding: 24px 20px; }
  /* FAQ */
  .faq-q { font-size: 15px; padding: 20px 0; gap: 16px; }
  /* Footer bottom */
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .map-embed { height: 250px; }
}

/* ---- 360px (small Android) ---- */
@media (max-width: 360px) {
  .wrap { padding: 0 14px; }
  .hero h1 { font-size: 28px; }
  .btn { padding: 14px 24px; font-size: 12px; }
  .room-body { padding: 20px 20px 22px; }
  .room-body h3 { font-size: 18px; }
  .room-foot-btns a { padding: 8px 14px; }
  .why-card { padding: 32px 24px; }
  .testimonial-inner { padding: 28px 22px; }
  .testimonial-inner .quote { font-size: 48px; right: 18px; }
  .section-head h2 { font-size: 22px; }
}

/* ---- 320px (very small) ---- */
@media (max-width: 320px) {
  .wrap { padding: 0 12px; }
  .brand-text { font-size: 13px; }
  .brand img { width: 38px; height: 38px; }
  .amen-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line-soft); padding-bottom: 24px; }
  .stat-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   SUPPLEMENTARY STYLES
   ========================================================================== */

/* Burger animation */
.burger span { transition: transform .35s var(--ease), opacity .25s; display: block; }

/* Ensure gallery links have no underline */
.g-item { text-decoration: none; }

/* FAQ item in contact page full width */
.contact-section .faq-list .faq-a p { max-width: 100%; }

/* Mini-CTA in sections with background */
section[style*="background"] .mini-cta { margin-top: 0; }

/* Hero slide fallback for 1 slide */
.hero-slide:only-child { opacity: 1 !important; }

/* Sticky bar SVG fix */
.sticky-book .sb-wa svg { fill: var(--white); }
.sticky-book .sb-call svg { fill: none; stroke: var(--white); stroke-width: 1.8; }

/* ==========================================================================
   LUXURY ANIMATION EFFECTS - GLOBAL
   ========================================================================== */

/* Gold shimmer on hover for section eyebrows */
.eyebrow { position: relative; }

/* Smooth hover lift for all interactive cards */
.why-card, .room-card, .amen-item, .attr-card, .phil-card, .testimonial-inner, .amen-detail {
  will-change: transform;
}

/* Gold accent underline animation for headings in sections */
.section-head h2 { position: relative; display: inline-block; }

/* Floating FAB pulse on WhatsApp */
.fab-wa {
  animation: waPulse 3.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0.4); }
  60%       { box-shadow: 0 8px 28px rgba(37,211,102,0.3), 0 0 0 12px rgba(37,211,102,0); }
}
.fab-wa:hover { animation: none; }

/* Trust strip icon pulse */
.trust-item:hover svg {
  animation: iconBounce .5s var(--ease);
}
@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* Gold shimmer on primary buttons */
.btn-primary {
  background-image: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position .6s ease, transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.btn-primary:hover {
  background-position: 0% 0;
}

/* Section highlight line on h2 */
.about-copy h2::after,
.section-head h2::after,
.rd-copy h2::after {
  content: "";
  display: block;
  width: 48px; height: 2px;
  background: var(--gold);
  margin-top: 14px;
  transition: width .5s var(--ease);
}
.about-copy:hover h2::after,
.section-head h2::after {
  width: 80px;
}
.section-head.centered h2::after {
  margin: 14px auto 0;
}

/* Gallery item hover glow */
.g-item:hover {
  box-shadow: 0 0 0 2px var(--gold), 0 12px 40px rgba(168,137,74,0.22);
  z-index: 1;
}

/* Room card shimmer border on hover */
.room-card:hover {
  box-shadow: 0 20px 60px rgba(30,30,30,0.14), 0 0 0 1.5px var(--gold);
}

/* Why card gold top bar animation */
.why-card::before { transition: transform .5s cubic-bezier(.16,1,.3,1); }

/* FAQ open animation enhancement */
.faq-item.open .faq-q {
  padding-bottom: 14px;
}

/* Smooth scroll offset for anchors */
:target { scroll-margin-top: 100px; }

/* Map iframe entrance */
.map-wrap {
  transition: box-shadow .4s var(--ease);
}
.map-wrap:hover {
  box-shadow: 0 20px 60px rgba(168,137,74,0.16), 0 0 0 1px var(--line);
}

/* Stats number shimmer */
.stat-num {
  background: linear-gradient(90deg, var(--charcoal) 0%, var(--gold-deep) 50%, var(--charcoal) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: statShimmer 4s ease-in-out infinite;
}
@keyframes statShimmer {
  0%, 100% { background-position: 0% 0; }
  50%       { background-position: 100% 0; }
}

/* Testimonial card hover lift */
.testimonial-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transition: all .4s var(--ease);
}

/* Footer Dev Credit */
.foot-dev {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  text-align: center;
  margin-top: 6px;
  width: 100%;
  letter-spacing: 0.04em;
}
.foot-dev a {
  color: rgba(200,169,106,0.6);
  transition: color .25s;
  text-decoration: none;
}
.foot-dev a:hover { color: var(--gold-light); }

/* ==========================================================================
   CONTACT SECTION - Home page 3-col grid
   ========================================================================== */
.contact-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .contact-3col { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .contact-3col { grid-template-columns: 1fr; max-width: 100%; }
}

/* ==========================================================================
   GALLERY PAGE - Inline style override fix
   ========================================================================== */
/* The homepage gallery preview uses an inline style that forces 4 columns.
   We override it at smaller viewports. */
@media (max-width: 980px) {
  .gallery-section .gallery-grid[style] {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 200px !important;
  }
}
@media (max-width: 600px) {
  .gallery-section .gallery-grid[style] {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 140px !important;
  }
}
@media (max-width: 480px) {
  .gallery-section .gallery-grid[style] {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 200px !important;
  }
  .gallery-section .g-item.wide,
  .gallery-section .g-item.tall {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ==========================================================================
   YOUR OMKARESHWAR JOURNEY SECTION
   ========================================================================== */
.journey-section {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,169,106,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.journey-section .eyebrow { color: var(--gold-light); }
.journey-section .eyebrow::before { background: var(--gold-light); }
.journey-section .section-head h2 { color: var(--white); }
.journey-section .section-head p { color: rgba(255,255,255,0.7); }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.journey-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,106,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all .4s var(--ease);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.journey-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.journey-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.journey-step-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-bg);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.journey-card h3 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}
.journey-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .journey-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EXPERIENCE MORE THAN JUST A STAY (SERVICE GRID)
   ========================================================================== */
.experiences-section {
  background: var(--beige);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.exp-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.exp-card:hover::before { transform: scaleX(1); }

.exp-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.exp-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
}
.exp-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold-deep);
  fill: none;
  stroke-width: 1.6;
}
.exp-title-block h3 {
  font-size: 19px;
  line-height: 1.25;
}
.exp-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
  display: block;
}
.exp-body p {
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.exp-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.exp-btn {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
}
.exp-btn:hover {
  color: var(--gold-deep);
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { padding: 30px 22px; }
}

/* ==========================================================================
   BEYOND ROOM BANNER (ROOMS PAGE)
   ========================================================================== */
.beyond-room-section {
  background: var(--gold-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-top: 60px;
  text-align: center;
}
.beyond-room-section h3 {
  font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 14px;
}
.beyond-room-section p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

/* ==========================================================================
   AMENITIES CATEGORIES
   ========================================================================== */
.amenities-cat-header {
  margin: 40px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.amenities-cat-header h3 {
  font-size: 24px;
  color: var(--charcoal);
}
.amenities-cat-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}
