/* ============================================================
   Blue Heaven Dalhousie — Design System
   Palette grounded in the Dhauladhar range: midnight sky,
   mountain slate, deodar green, aged brass, unbleached snow.
   ============================================================ */

:root {
  --ink:      #0F1E2E;
  --slate:    #274A5C;
  --slate-2:  #3E6478;
  --cream:    #F7F3EC;
  --mist:     #E8E3D8;
  --paper:    #FFFDF8;
  --gold:     #C89B54;
  --gold-dk:  #A57F3E;
  --pine:     #4A5D3F;
  --line:     #D9D3C6;
  --ink-70:   rgba(15, 30, 46, 0.72);
  --ink-50:   rgba(15, 30, 46, 0.50);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap:  1240px;
  --wrap-narrow: 960px;
  --shadow-soft: 0 8px 30px rgba(15, 30, 46, 0.08);
  --shadow-lift: 0 20px 60px rgba(15, 30, 46, 0.15);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Utility ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 24px;
}
.lead {
  font-size: 1.125rem;
  color: var(--ink-70);
  max-width: 62ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 243, 236, 0.4);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  color: var(--paper);
}

/* ============================================================
   HEADER  /  NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(15, 30, 46, 0.06);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  transition: color .35s var(--ease);
}
.site-header.scrolled .brand,
.site-header.solid .brand { color: var(--ink); }
.brand img {
  height: 46px;
  width: auto;
  transition: filter .35s var(--ease);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: .75;
  font-weight: 400;
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.site-header.scrolled .nav-menu a,
.site-header.solid .nav-menu a { color: var(--ink); }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { right: 0; }
.nav-menu a.active { color: var(--gold); }
.site-header.scrolled .nav-menu a.active,
.site-header.solid .nav-menu a.active { color: var(--gold-dk); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  transition: all .3s var(--ease);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--cream) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.site-header.scrolled .menu-toggle,
.site-header.solid .menu-toggle { color: var(--ink); }
.menu-toggle span {
  display: block;
  position: relative;
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after  { top:  8px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO — full-width fade slider (homepage)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  background-size: cover;
  background-position: center;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* .hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,30,46,.55) 0%, rgba(15,30,46,.30) 40%, rgba(15,30,46,.75) 100%);
} */
.hero-slide.active {
  opacity: 1;
  animation: slowZoom 9s var(--ease) forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s var(--ease) .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 15ch;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s var(--ease) .5s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 48ch;
  color: rgba(247, 243, 236, 0.9);
  margin: 0 0 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s var(--ease) .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s var(--ease) .9s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.slider-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cream);
}
.slider-arrows { display: flex; gap: 8px; }
.slider-arrow {
  width: 46px; height: 46px;
  border: 1px solid rgba(247, 243, 236, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all .3s var(--ease);
}
.slider-arrow:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.slider-counter {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .12em;
}
.slider-counter .current { color: var(--gold); font-size: 1.25rem; }
.slider-counter .divider { margin: 0 8px; opacity: .5; }

/* The altitude signature — bottom-left of hero */
.altitude-bar {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 5;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-bottom: 20px;
  position: absolute;
}
.altitude-bar::after {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  width: 1px; height: 30px;
  background: var(--gold);
}

/* ============================================================
   SUB-HEADER for inner pages
   ============================================================ */
.subheader {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  overflow: hidden;
}
.subheader::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,46,.55) 0%, rgba(15,30,46,.30) 40%, rgba(15,30,46,.80) 100%);
}
.subheader-inner {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.subheader h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--cream);
  font-weight: 400;
  margin: 0;
  max-width: 18ch;
}
.crumbs {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.75);
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--gold); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark .lead { color: rgba(247, 243, 236, 0.75); }

/* Intro — two-column asymmetric */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.intro-grid .side {
  position: sticky;
  top: 120px;
}
.intro-grid .side h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 0;
}
.intro-grid .body p {
  font-size: 1.06rem;
  color: var(--ink-70);
  line-height: 1.8;
  margin-bottom: 1.4em;
}
.intro-grid .body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--gold-dk);
  font-weight: 400;
}

/* Feature cards — services & standards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.feature:hover { background: var(--cream); }
.feature-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  margin-bottom: 22px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.95rem;
  color: var(--ink-70);
  line-height: 1.6;
  margin: 0;
}

/* Image + text split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }
.split-media::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 40%; height: 40%;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 60px 0 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1;
  color: var(--gold-dk);
  font-weight: 400;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
}

/* Rooms grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.room-card {
  background: var(--paper);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.room-media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.room-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.room-card:hover .room-media img { transform: scale(1.06); }
.room-price {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--paper);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.room-price strong { color: var(--gold-dk); font-weight: 500; }
.room-body { padding: 32px; }
.room-body h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.room-meta {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--ink-70);
}
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.room-meta svg { width: 18px; height: 18px; color: var(--gold-dk); }

/* Sightseeing cards */
.sight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}
.sight-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.sight-media {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.sight-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.sight-card:hover .sight-media img { transform: scale(1.05); }
.sight-body h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.sight-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-dk);
  font-weight: 400;
}
.sight-body p {
  color: var(--ink-70);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* Gallery masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--mist);
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,30,46,.5) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 46, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  animation: lightboxIn .3s var(--ease);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  width: 44px; height: 44px;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 243, 236, .3);
  border-radius: 50%;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  color: var(--cream);
  border: 1px solid rgba(247, 243, 236, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease);
}
.lightbox-nav:hover { background: rgba(247, 243, 236, .1); }
.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 8px; }
.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}
.contact-block:last-child { border-bottom: 0; }
.contact-block-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-block p, .contact-block a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
.contact-block a:hover { color: var(--gold-dk); }

/* Form */
.contact-form { background: var(--cream); padding: 48px; }
.contact-form h3 { font-size: 1.75rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* Map */
.map-wrap {
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    linear-gradient(rgba(15, 30, 46, 0.82), rgba(15, 30, 46, 0.82)),
    url('wp-content/uploads/2021/08/DSC_9575-1024x684.jpg') center/cover;
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 22ch;
  margin: 0 auto 20px;
}
.cta-band p {
  color: rgba(247, 243, 236, 0.8);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247, 243, 236, 0.7);
  padding: 80px 0 0;
}
.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  margin-bottom: 20px;
}
.foot-brand img { height: 42px; }
.foot-brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { margin-bottom: 12px; }
.foot-links a { font-size: 0.95rem; transition: color .25s var(--ease); }
.foot-links a:hover { color: var(--gold); }
.foot-contact p { font-size: 0.95rem; margin-bottom: 10px; line-height: 1.6; }
.foot-contact a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS  (call + whatsapp) — every page
   ============================================================ */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(15,30,46,.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulseRing 2.4s var(--ease) infinite;
  z-index: -1;
}
.floating-btn.call {
  background: var(--slate);
}
.floating-btn.call::before { background: var(--slate); }
.floating-btn.whatsapp {
  background: #25D366;
}
.floating-btn.whatsapp::before { background: #25D366; }
.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 40px rgba(15,30,46,.32);
}
.floating-btn svg { width: 24px; height: 24px; }

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-btn::before { animation: none; }
  .hero-slide.active { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid .side { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .sight-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .section { padding: 70px 0; }
  .nav-inner { padding: 0 20px; gap: 12px; }
  .brand img { height: 40px; }
  .brand-text { font-size: 1.15rem; }
  .brand-text small { display: none; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 100%; max-width: 340px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -10px 0 30px rgba(15,30,46,.1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { color: var(--ink); font-size: 1rem; }
  .site-header.solid .nav-menu a,
  .site-header.scrolled .nav-menu a { color: var(--ink); }
  .nav-cta {
    position: fixed;
    right: 90px; top: 22px;
    padding: 8px 16px;
    font-size: 0.7rem !important;
  }
  .site-header.scrolled .nav-cta { top: 14px; }
  .menu-toggle { display: flex; }

  .hero { min-height: 560px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .slider-nav { bottom: 24px; right: 20px; gap: 12px; }
  .slider-arrow { width: 40px; height: 40px; }
  .altitude-bar { display: none; }

  .subheader { min-height: 340px; padding-bottom: 50px; }
  .subheader h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .feature-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { justify-content: center; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 70px 0; }
  .floating-actions { right: 16px; bottom: 16px; }
  .floating-btn { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/3; }
  .intro-grid .body p:first-of-type::first-letter { font-size: 3.2em; }
}