/* ==========================================================================
   Hotel Veda Inn — Lucknow
   Bespoke single-page site · deep navy / warm gold / cream
   Mobile-first · vanilla CSS · no framework
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0b1533;
  --navy-800: #14213d;
  --navy-700: #1d2c4f;
  --gold: #c1962f;
  --gold-soft: #d4af57;
  --gold-pale: #ecdcae;
  --cream: #f7f3ea;
  --cream-deep: #efe8d8;
  --white: #ffffff;
  --charcoal: #24272e;
  --ink-soft: #4c5261;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;

  /* Soft, navy-tinted, multi-layer shadows — crafted depth, never harsh black */
  --shadow-sm:
    0 0 14px rgba(11, 21, 51, 0.05),
    0 1px 2px rgba(11, 21, 51, 0.05),
    0 4px 10px rgba(11, 21, 51, 0.06),
    0 10px 24px rgba(11, 21, 51, 0.07);
  --shadow-md:
    0 0 24px rgba(11, 21, 51, 0.07),
    0 2px 4px rgba(11, 21, 51, 0.05),
    0 8px 18px rgba(11, 21, 51, 0.09),
    0 20px 44px rgba(11, 21, 51, 0.11);
  --shadow-lg:
    0 0 40px rgba(11, 21, 51, 0.10),
    0 4px 8px rgba(11, 21, 51, 0.06),
    0 14px 32px rgba(11, 21, 51, 0.12),
    0 32px 72px rgba(11, 21, 51, 0.18);
  /* Lighter-touch shadows for elements sitting on navy sections */
  --shadow-navy:
    0 0 26px rgba(3, 6, 18, 0.26),
    0 2px 6px rgba(3, 6, 18, 0.25),
    0 12px 30px rgba(3, 6, 18, 0.3);
  --shadow-navy-lg:
    0 0 48px rgba(3, 6, 18, 0.36),
    0 4px 10px rgba(3, 6, 18, 0.3),
    0 22px 54px rgba(3, 6, 18, 0.42);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --container: 1400px;
  --container-wide: 1560px;

  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

ul[role="list"] { list-style: none; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Visible focus states for keyboard users */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--white); }

/* Honour reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.section { padding-block: clamp(4.5rem, 9vw, 7rem); }

/* Full-bleed: break an element out of its centered container to span
   the entire viewport width, edge to edge. */
.full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ---------- Typography primitives ---------- */
.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* Slow golden shimmer sweeping through the kicker text (graceful fallback:
   solid gold where background-clip:text is unsupported or motion is reduced) */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  @media (prefers-reduced-motion: no-preference) {
    .section-label {
      background: linear-gradient(100deg,
        var(--gold) 0%, var(--gold) 38%,
        #ecd88f 50%,
        var(--gold) 62%, var(--gold) 100%);
      background-size: 220% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: label-shimmer 6s ease-in-out infinite;
    }
  }
}

@keyframes label-shimmer {
  0%, 55%  { background-position: 110% 0; }
  90%, 100% { background-position: -110% 0; }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 1.08;
  color: var(--navy-900);
  letter-spacing: 0.005em;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section-sub {
  max-width: 44rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.section-head { text-align: center; margin-bottom: clamp(2.75rem, 6vw, 4.25rem); }

/* Light variant for sections on navy backgrounds */
.section-head--light .section-title { color: var(--cream); }
.section-head--light .section-sub { color: rgba(247, 243, 234, 0.72); }

/* Gold hairline divider */
.gold-rule {
  width: 72px;
  height: 1px;
  margin-block: 1.35rem;
  background: linear-gradient(90deg, var(--gold), rgba(193, 150, 47, 0.15));
  position: relative;
}
.gold-rule::after {
  content: "";
  position: absolute;
  left: 30px; top: -3px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: diamond-glow 4s ease-in-out infinite;
}

/* Gentle breathing glow on the divider diamond */
@keyframes diamond-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193, 150, 47, 0); }
  50%      { box-shadow: 0 0 10px 2px rgba(193, 150, 47, 0.55); }
}
.gold-rule--center { margin-inline: auto; }
.gold-rule--center::after { left: calc(50% - 3.5px); }

/* Inline SVG icon sizing */
.ico { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 2.1em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background-color 0.3s var(--ease-out),
              color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 0.72em 1.5em; font-size: 0.76rem; }
.btn-lg { padding: 1.1em 2.6em; font-size: 0.9rem; }

.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-900);
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(193, 150, 47, 0.42);
}

/* Light sheen that sweeps across on hover */
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}

.btn-gold:hover::before { left: 130%; }

.btn-gold:hover {
  color: var(--navy-900);
  box-shadow: 0 14px 34px rgba(193, 150, 47, 0.6);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--cream);
  box-shadow: 0 4px 10px rgba(11, 21, 51, 0.18), 0 12px 26px rgba(11, 21, 51, 0.22);
}
.btn-navy:hover {
  background: var(--navy-700);
  color: var(--gold-pale);
  box-shadow: 0 6px 14px rgba(11, 21, 51, 0.22), 0 18px 38px rgba(11, 21, 51, 0.3);
}

.btn-outline-light {
  border-color: rgba(247, 243, 234, 0.65);
  color: var(--cream);
  background: rgba(11, 21, 51, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  background: rgba(193, 150, 47, 0.12);
  color: var(--gold-pale);
}

.btn-outline-navy {
  border-color: rgba(11, 21, 51, 0.35);
  color: var(--navy-900);
}
.btn-outline-navy:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; position: relative; z-index: 110; }
.brand-logo { height: 44px; width: auto; }

/* Two stacked logos — CSS decides which is visible */
.brand-logo--dark { display: none; }
.site-header.is-solid .brand-logo--light { display: none; }
.site-header.is-solid .brand-logo--dark { display: block; }

/* While the mobile drawer is open, always show the light logo (navy backdrop) */
.site-header.menu-open .brand-logo--dark { display: none !important; }
.site-header.menu-open .brand-logo--light { display: block !important; }

/* Solid state once scrolled past the hero */
.site-header.is-solid {
  background: rgba(247, 243, 234, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(193, 150, 47, 0.25), var(--shadow-sm);
}

/* --- Nav (desktop) --- */
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  list-style: none;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding-block: 0.4em;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

/* Gold underline slide-in */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { color: var(--gold-pale); }

.site-header.is-solid .nav-link { color: var(--navy-900); }
.site-header.is-solid .nav-link:hover { color: var(--gold); }

.nav-cta-item { margin-left: 0.5rem; }

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  position: relative;
  z-index: 110;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, background-color 0.3s;
}

.site-header.is-solid .nav-toggle-bar { background: var(--navy-900); }

/* Toggle → X */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: var(--cream); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: -1; }

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slow cinematic Ken-Burns drift on the footage */
@media (prefers-reduced-motion: no-preference) {
  .hero-video {
    animation: kenburns 32s ease-in-out infinite alternate;
    will-change: transform;
  }
}

@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.1) translateX(-1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 35%, transparent 42%, rgba(11, 21, 51, 0.26) 100%),
    linear-gradient(100deg, rgba(11, 21, 51, 0.58) 0%, rgba(11, 21, 51, 0.14) 50%, rgba(11, 21, 51, 0.24) 100%),
    linear-gradient(180deg, rgba(11, 21, 51, 0.32) 0%, transparent 40%, rgba(11, 21, 51, 0.60) 100%);
}

.hero-content {
  padding-top: var(--header-h);
  padding-bottom: 4rem;
  max-width: 1020px;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.9rem, 8.2vw, 6rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(6, 11, 28, 0.55);
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}

.hero-sub {
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(247, 243, 234, 0.88);
  margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(247, 243, 234, 0.75);
  animation: cue-float 3.6s ease-in-out infinite;
}

/* Gentle vertical bob */
@keyframes cue-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

.scroll-cue-text {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: rgba(247, 243, 234, 0.45);
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: cue-drop 2.2s var(--ease-out) infinite;
}

@keyframes cue-drop {
  0%   { top: -50%; }
  70%  { top: 110%; }
  100% { top: 110%; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

/* Photo collage: main landscape + overlapping portrait inset + year badge */
.about-media {
  position: relative;
  padding-bottom: clamp(3rem, 8vw, 4.5rem);
  padding-right: clamp(2rem, 6vw, 3.5rem);
}

.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.about-photo--main img { aspect-ratio: 4 / 3; }

.about-photo--inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(150px, 38%, 260px);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

.about-photo--inset img { aspect-ratio: 3 / 4; }

.about-badge {
  position: absolute;
  left: clamp(-0.5rem, -1vw, -1rem);
  bottom: clamp(4.5rem, 12vw, 7rem);
  background: var(--navy-900);
  color: var(--cream);
  border: 1px solid rgba(193, 150, 47, 0.55);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
}

.about-badge-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: rgba(247, 243, 234, 0.8);
}

.about-text p + p { margin-top: 1rem; }
.about-text > p:not(.section-label) { color: var(--ink-soft); }

/* Feature chips */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1.1em;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid rgba(193, 150, 47, 0.35);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.feature-chip .ico { color: var(--gold); }

/* ==========================================================================
   STATS BAND — full-width navy/gold strip
   ========================================================================== */
.stats-band {
  position: relative;
  z-index: 1; /* let its shadow fall over neighbouring cream sections */
  background:
    radial-gradient(ellipse at 50% -40%, rgba(193, 150, 47, 0.22), transparent 60%),
    linear-gradient(100deg, var(--navy-900), var(--navy-800));
  border-block: 1px solid rgba(193, 150, 47, 0.45);
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
  box-shadow:
    0 -14px 34px -18px rgba(11, 21, 51, 0.35),
    0 18px 44px -18px rgba(11, 21, 51, 0.45);
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  text-align: center;
}

.stat-cell { position: relative; }

/* Gold hairline separators between cells on desktop */
@media (min-width: 900px) {
  .stats-band-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-cell + .stat-cell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(193, 150, 47, 0.5), transparent);
  }
}

.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--gold-soft);
}

.stat-cap {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.78);
}

/* ==========================================================================
   ROOMS
   ========================================================================== */
.rooms {
  background:
    linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 30%);
}

.room-grid {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  perspective: 1400px; /* enables the subtle card tilt below */
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(193, 150, 47, 0);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

/* Lift with a whisper of tilt and a gold outline glow */
.room-card:hover {
  transform: translateY(-8px) rotateX(1.1deg);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(193, 150, 47, 0.75);
}

.room-card--featured { box-shadow: var(--shadow-sm), 0 0 0 1px rgba(193, 150, 47, 0.5); }

.room-media {
  position: relative;
  overflow: hidden;
}

.room-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

/* Prominent price badge overlaid on the photo */
.room-price-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  background: rgba(11, 21, 51, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(193, 150, 47, 0.6);
  border-radius: var(--radius-sm);
  padding: 0.5em 0.9em;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}

.room-price-badge s {
  font-size: 0.72em;
  font-weight: 400;
  color: rgba(247, 243, 234, 0.6);
}

.room-price-badge small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.75);
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.room-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.6rem 1.75rem;
}

.room-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.room-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy-900);
}

.room-guests {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.room-guests .ico { color: var(--gold); }

.room-blurb {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.room-amenities li {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
  background: var(--cream);
  border: 1px solid rgba(11, 21, 51, 0.1);
  padding: 0.35em 0.85em;
  border-radius: 999px;
}

.room-foot {
  margin-top: auto; /* pins footer to card bottom so prices align across cards */
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(193, 150, 47, 0.25);
}

.room-price { display: flex; align-items: baseline; gap: 0.5em; flex-wrap: wrap; }

.price-old {
  font-size: 0.9rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

.price-now {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-per {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   BANQUET & EVENTS  (navy section)
   ========================================================================== */
.banquet {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(193, 150, 47, 0.12), transparent 50%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--cream);
}

/* Ambient gold glow slowly drifting through navy sections */
.glow-drift::before,
.banquet::before,
.testimonials::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 780px;
  max-height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 150, 47, 0.09), transparent 62%);
  pointer-events: none;
  animation: glow-drift 22s ease-in-out infinite alternate;
}

.testimonials::before { animation-delay: -11s; animation-duration: 26s; }

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60%, 35%) scale(1.25); }
}

/* Full-bleed panorama of the hall — spans the whole viewport */
.banquet-pano {
  overflow: hidden;
  box-shadow: var(--shadow-navy-lg);
  border-block: 1px solid rgba(193, 150, 47, 0.45);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.banquet-pano img {
  width: 100%;
  height: clamp(240px, 34vw, 540px);
  object-fit: cover;
}

.banquet-grid {
  display: grid;
  gap: 1.5rem;
}

.banquet-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-navy);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.banquet-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy-lg);
}

.banquet-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.banquet-photo:hover img { transform: scale(1.05); }

.banquet-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(11, 21, 51, 0.85));
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-pale);
}

/* Enquiry panel */
.banquet-panel {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: 0;
  background: rgba(247, 243, 234, 0.04);
  border: 1px solid rgba(193, 150, 47, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-navy-lg);
}

.banquet-panel-text { padding: clamp(1.8rem, 4vw, 3.2rem); }

.banquet-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.3rem;
}

.banquet-panel-title em { font-style: italic; color: var(--gold-soft); font-weight: 500; }

.banquet-points { margin-bottom: 1.9rem; }

.banquet-points li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.98rem;
}

.banquet-points li strong { color: var(--cream); font-weight: 500; }

.banquet-points li::before {
  content: "\2726"; /* four-pointed star */
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--gold);
  font-size: 0.85em;
}

.banquet-panel-photo { min-height: clamp(300px, 42vw, 520px); }

.banquet-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   DINING
   ========================================================================== */
.dining { background: var(--cream); }

.dining-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.dining-text > p { color: var(--ink-soft); }

.dining-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.dining-hours .ico { color: var(--gold); }

/* Menu panel: dotted leaders inside a raised white card */
.menu-list {
  margin-top: 1.9rem;
  background: var(--white);
  border: 1px solid rgba(193, 150, 47, 0.32);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.6rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s var(--ease-out);
}

.menu-list:hover { box-shadow: var(--shadow-lg); }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.8em;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(193, 150, 47, 0.22);
}

.menu-item:last-child { border-bottom: 0; }

.menu-dish {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy-900);
}

.menu-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(11, 21, 51, 0.3);
  transform: translateY(-0.35em);
  min-width: 1.5rem;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Food photo grid */
.dining-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.6rem; /* room for the staggered second column */
}

.dining-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dining-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.dining-photo:hover img { transform: scale(1.05); }

/* Stagger the second column downward for an editorial feel */
.dining-photo:nth-child(even) { transform: translateY(1.6rem); }

/* ==========================================================================
   PHOTO BAND — full-width parallax interlude
   ========================================================================== */
.photo-band {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(6, 11, 28, 0.72), rgba(6, 11, 28, 0.6) 50%, rgba(6, 11, 28, 0.78)),
    url("../img/exterior-night-1.jpg");
  background-size: cover;
  background-position: center 30%;
  color: var(--cream);
  text-align: center;
  padding-block: clamp(6rem, 14vw, 10.5rem);
  border-block: 1px solid rgba(193, 150, 47, 0.4);
}

/* True parallax only where fixed backgrounds behave (desktop pointers) */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .photo-band { background-attachment: fixed; }
}

.photo-band-kicker { color: var(--gold-soft); }

.photo-band-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.06;
  text-shadow: 0 4px 30px rgba(6, 11, 28, 0.6);
}

.photo-band-title em { font-style: italic; font-weight: 500; color: var(--gold-soft); }

.photo-band-sub {
  max-width: 38rem;
  margin: 0 auto 2.2rem;
  color: rgba(247, 243, 234, 0.85);
  font-size: 1.05rem;
}

/* ==========================================================================
   GALLERY  (full-bleed CSS-columns masonry)
   ========================================================================== */
.gallery { background: var(--cream-deep); }

.gallery-masonry {
  columns: 2;
  column-gap: 0.75rem;
  padding-inline: clamp(0.75rem, 1.5vw, 1.5rem);
}

.gallery-item {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

/* Faint gradient scrim, always present at the base for depth */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 21, 51, 0.55));
  opacity: 0.55;
  transition: opacity 0.4s var(--ease-out);
}

/* Caption slides up over the scrim on hover / focus */
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 0.8rem 1rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-pale);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: none; }

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

/* ==========================================================================
   TESTIMONIALS  (navy section)
   ========================================================================== */
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 110%, rgba(193, 150, 47, 0.12), transparent 55%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--cream);
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial {
  background: rgba(247, 243, 234, 0.05);
  border: 1px solid rgba(193, 150, 47, 0.3);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-navy);
  transition: border-color 0.35s var(--ease-out), background-color 0.35s var(--ease-out),
              transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.testimonial:hover {
  border-color: rgba(193, 150, 47, 0.65);
  background: rgba(247, 243, 234, 0.08);
  transform: translateY(-5px);
  box-shadow: var(--shadow-navy-lg);
}

.testimonial-stars {
  color: var(--gold-soft);
  letter-spacing: 0.25em;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(247, 243, 234, 0.92);
  flex: 1;
}

.testimonial-meta {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(193, 150, 47, 0.25);
}

.testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
}

.testimonial-role {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.6);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-list { font-style: normal; }

.contact-item {
  display: flex;
  gap: 1.1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(193, 150, 47, 0.22);
}

.contact-item:first-child { padding-top: 0; }

.contact-ico {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(193, 150, 47, 0.4);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item p { color: var(--ink-soft); }
.contact-item a { color: var(--navy-800); font-weight: 400; }
.contact-item a:hover { color: var(--gold); }

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(193, 150, 47, 0.3);
  min-height: 320px;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.contact-map:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 243, 234, 0.75);
  padding-top: clamp(3.5rem, 7vw, 5rem);
  border-top: 2px solid rgba(193, 150, 47, 0.4);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img { height: 46px; width: auto; }

.footer-tagline {
  margin-top: 1.1rem;
  max-width: 26rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(193, 150, 47, 0.4);
  color: var(--gold-pale);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 1.1rem;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a,
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(247, 243, 234, 0.75);
  transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
}

.footer-links a:hover { color: var(--gold-pale); padding-left: 0.35em; }
.footer-contact a:hover { color: var(--gold-pale); }

.footer-contact p { margin-bottom: 0.9rem; font-size: 0.95rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  font-size: 0.85rem;
  color: rgba(247, 243, 234, 0.55);
}

.footer-made span { color: var(--gold); }

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fab {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(11, 21, 51, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.fab .ico { width: 26px; height: 26px; }

.fab:hover { transform: translateY(-3px) scale(1.05); }

.fab-whatsapp { background: #25d366; color: var(--white); }
.fab-whatsapp:hover { color: var(--white); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45); }

.fab-call { background: var(--navy-800); color: var(--gold-pale); border: 1px solid rgba(193, 150, 47, 0.5); }
.fab-call:hover { color: var(--gold-pale); }

/* Call button only needs prominence on smaller screens; keep both visible ≤ desktop */
@media (min-width: 1024px) {
  .fab-call { display: none; }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 28, 0.94);
  padding: 3.5rem 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox-figure {
  max-width: min(1100px, 92vw);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: rgba(247, 243, 234, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  color: rgba(247, 243, 234, 0.85);
  font-size: 2.2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(193, 150, 47, 0.25);
  color: var(--gold-pale);
}

.lightbox-close { top: 1rem; right: 1rem; }

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-prev { left: 0.6rem; }
.lightbox-next { right: 0.6rem; }

/* ==========================================================================
   SCROLL REVEAL
   Hidden state applies ONLY when JS is running (html.js), so content is
   always visible if scripts fail or are disabled.
   ========================================================================== */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

html.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE — tablet and up
   ========================================================================== */
@media (min-width: 640px) {
  .gallery-masonry { columns: 3; }
  .banquet-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 1fr; }
  .room-grid { grid-template-columns: repeat(3, 1fr); }
  .dining-grid { grid-template-columns: 1.1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .banquet-panel { grid-template-columns: 1fr 1.2fr; } /* image side dominates */
  .banquet-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

@media (min-width: 1100px) {
  .gallery-masonry { columns: 4; }
}

@media (min-width: 1600px) {
  .gallery-masonry { columns: 5; }
}

/* ==========================================================================
   RESPONSIVE — mobile nav (≤ 899px)
   ========================================================================== */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }

  /* Full-screen navy drawer */
  .main-nav {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(193, 150, 47, 0.14), transparent 55%),
      var(--navy-900);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
  }

  .nav-link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--cream);
  }

  /* Keep drawer links cream even when header is solid */
  .site-header.is-solid .nav-link { color: var(--cream); }
  .site-header.is-solid .nav-link:hover { color: var(--gold-pale); }

  .nav-cta-item { margin: 0.8rem 0 0; }

  /* Slight stagger on drawer items */
  .main-nav .nav-list li {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  }

  .main-nav.is-open .nav-list li { opacity: 1; transform: none; }
  .main-nav.is-open .nav-list li:nth-child(1) { transition-delay: 0.05s; }
  .main-nav.is-open .nav-list li:nth-child(2) { transition-delay: 0.1s; }
  .main-nav.is-open .nav-list li:nth-child(3) { transition-delay: 0.15s; }
  .main-nav.is-open .nav-list li:nth-child(4) { transition-delay: 0.2s; }
  .main-nav.is-open .nav-list li:nth-child(5) { transition-delay: 0.25s; }
  .main-nav.is-open .nav-list li:nth-child(6) { transition-delay: 0.3s; }
  .main-nav.is-open .nav-list li:nth-child(7) { transition-delay: 0.35s; }
  .main-nav.is-open .nav-list li:nth-child(8) { transition-delay: 0.4s; }
}

/* Small phones */
@media (max-width: 420px) {
  .brand-logo { height: 38px; }
  .hero-ctas .btn { width: 100%; }
  .room-foot { flex-direction: column; align-items: flex-start; }
  .room-foot .btn { width: 100%; }
  .dining-photo:nth-child(even) { transform: translateY(1rem); }
  .fab { width: 52px; height: 52px; }
}

/* Prevent body scroll while drawer or lightbox is open (class set by JS) */
body.no-scroll { overflow: hidden; }
