/* ═══════════════════════════════════════════════════════
   HOTEL TAKSH INN — Boutique Luxury Editorial Design
   Design System: Forest green + parchment + rose-gold
═══════════════════════════════════════════════════════ */

:root {
  --forest:    #1C2B1E;
  --forest-lt: #2A3D2C;
  --parchment: #F5F0E8;
  --parch-dk:  #EDE8DE;
  --gold:      #C4A882;
  --gold-dk:   #A68C65;
  --slate:     #4A5568;
  --charcoal:  #2D2D2D;
  --white:     #FAFAF7;
  --muted:     #8A8A7E;

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', system-ui, sans-serif;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY SCALE ────────────────────────────── */
.serif { font-family: var(--ff-serif); }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-editorial {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.display-md {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  max-width: 52ch;
}

/* ── HEADER / NAV ────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s;
}

#site-header.scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.35s;
}
.nav-logo span {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
#site-header.scrolled .nav-logo { color: var(--forest); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
#site-header.scrolled .nav-links a { color: var(--slate); }
#site-header.scrolled .nav-links a:hover { color: var(--forest); }

.btn-book-nav {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-book-nav:hover { background: var(--gold-dk); color: var(--white); }
#site-header.scrolled .btn-book-nav { background: var(--forest); color: var(--white); }
#site-header.scrolled .btn-book-nav:hover { background: var(--forest-lt); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}
#site-header.scrolled .nav-toggle span { background: var(--forest); }

/* mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--forest);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 5rem 2.5rem 3rem;
  transition: right 0.4s var(--ease);
}
.mobile-nav.open { right: 0; }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.mobile-nav-links a {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--parchment);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── HERO SLIDER ─────────────────────────────────── */
#hero {
  height: 100dvh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide {
  height: 100%;
  position: relative;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  will-change: transform;
}
.carousel-item.active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,18,11,0.72) 0%,
    rgba(10,18,11,0.38) 55%,
    rgba(10,18,11,0.15) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 0;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 680px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s 0.3s var(--ease-out), transform 0.75s 0.3s var(--ease-out);
}
.carousel-item.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,232,0.78);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 42ch;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, gap 0.25s;
}
.btn-hero:hover { background: var(--parchment); gap: 1.2rem; }

/* carousel controls */
.hero-arrows {
  position: absolute;
  bottom: 12%;
  right: clamp(1.5rem, 6vw, 6rem);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.hero-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

.hero-indicators {
  position: absolute;
  left: clamp(1.5rem, 6vw, 6rem);
  bottom: 5%;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hero-indicators button {
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.25s;
}
.hero-indicators button.active {
  width: 48px;
  background: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  right: clamp(1.5rem, 6vw, 6rem);
  bottom: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── INTRO EDITORIAL ─────────────────────────────── */
#intro {
  background: var(--white);
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: end;
}

.intro-text-col {
  padding: 0 4rem 0 clamp(1.5rem, 7vw, 7rem);
}

.intro-display {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin-bottom: 3rem;
}

.intro-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.intro-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  max-width: 48ch;
  margin-bottom: 2rem;
}

.intro-detail {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--parch-dk);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
}
.intro-detail i { color: var(--gold); font-size: 0.9rem; }

.intro-img-col {
  position: relative;
}
.intro-img-wrap {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.intro-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-img-badge {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background: var(--forest);
  color: var(--parchment);
  padding: 1.5rem 2rem;
  font-family: var(--ff-serif);
  font-size: 1rem;
  line-height: 1.4;
  max-width: 200px;
}
.intro-img-badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

/* ── HIGHLIGHTS STRIP ────────────────────────────── */
#highlights {
  background: var(--forest);
  padding: 4rem clamp(1.5rem, 6vw, 6rem);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  padding: 2.5rem 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.highlight-item:first-child { border-left: none; }
.highlight-item:hover { background: rgba(255,255,255,0.04); }

.highlight-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.highlight-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.highlight-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}

/* ── ROOMS EDITORIAL ─────────────────────────────── */
#rooms {
  background: var(--white);
  padding: 7rem 0;
}

.rooms-intro {
  padding: 0 clamp(1.5rem, 7vw, 7rem);
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.room-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-bottom: 2px;
}
.room-item.reverse { direction: rtl; }
.room-item.reverse > * { direction: ltr; }

.room-img {
  overflow: hidden;
  position: relative;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.room-item:hover .room-img img { transform: scale(1.04); }

.room-info {
  background: var(--parchment);
  padding: 4rem clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-number {
  font-family: var(--ff-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--parch-dk);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.04em;
}

.room-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.room-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 44ch;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
  list-style: none;
}
.room-amenities li {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.room-amenities li i { color: var(--gold); font-size: 0.65rem; }

.btn-room {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.25s, gap 0.25s;
  align-self: flex-start;
}
.btn-room:hover { color: var(--gold); gap: 1rem; }

/* ── EXPERIENCE FULL-BLEED ───────────────────────── */
#experience {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.experience-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,18,11,0.82) 0%,
    rgba(10,18,11,0.45) 100%
  );
}

.experience-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 10vw, 10rem);
  max-width: 900px;
}

.experience-display {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.experience-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.78);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.9rem 2rem;
  transition: background 0.25s, border-color 0.25s, color 0.25s, gap 0.25s;
}
.btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  gap: 1.2rem;
}

/* ── FACILITIES ──────────────────────────────────── */
#facilities {
  background: var(--parchment);
  padding: 7rem clamp(1.5rem, 7vw, 7rem);
}

.facilities-header {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.facilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.facility-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.2s;
  padding-right: 2rem;
}
.facility-item:hover { background: rgba(0,0,0,0.02); }

.facility-num {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.facility-text {}
.facility-name {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.facility-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── GALLERY ─────────────────────────────────────── */
#gallery {
  background: var(--charcoal);
  padding: 7rem 0 0;
}

.gallery-header {
  padding: 0 clamp(1.5rem, 7vw, 7rem);
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.gallery-cell {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.88);
}
.gallery-cell:hover img { transform: scale(1.05); filter: brightness(1); }

.gallery-cell:nth-child(1) { grid-row: 1 / 3; min-height: 480px; }
.gallery-cell:nth-child(2) { min-height: 236px; }
.gallery-cell:nth-child(3) { min-height: 236px; }
.gallery-cell:nth-child(4) { min-height: 236px; }
.gallery-cell:nth-child(5) { min-height: 236px; }

.gallery-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(28,43,30,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s;
}
.gallery-cell-overlay i {
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-cell:hover .gallery-cell-overlay { background: rgba(28,43,30,0.3); }
.gallery-cell:hover .gallery-cell-overlay i { opacity: 1; }

/* lightbox modal */
.gallery-modal .modal-content {
  background: #000;
  border: none;
}
.gallery-modal .modal-body {
  padding: 0;
  position: relative;
}
.gallery-modal-img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.gallery-modal-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  pointer-events: none;
}
.gallery-modal-btn {
  pointer-events: all;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-modal-btn:hover { background: var(--gold); color: var(--forest); }

/* ── DESTINATION / LOCATION ──────────────────────── */
#location {
  background: var(--white);
  padding: 7rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.location-info {
  padding: 5rem clamp(2rem, 6vw, 5rem);
  background: var(--forest);
  color: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-display {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 2.5rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.location-detail:last-of-type { border-bottom: none; }
.location-detail i { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.location-detail-text {}
.location-detail-label {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.location-detail-val {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  line-height: 1.6;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 0.9rem 1.8rem;
  border: none;
  cursor: pointer;
  margin-top: 2.5rem;
  transition: background 0.25s, gap 0.25s;
  align-self: flex-start;
}
.btn-directions:hover { background: var(--parchment); gap: 1.2rem; }

.location-map {
  position: relative;
  min-height: 420px;
}
.location-map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  filter: grayscale(30%);
}

/* ── NEARBY ──────────────────────────────────────── */
#nearby {
  background: var(--parch-dk);
  padding: 6rem clamp(1.5rem, 7vw, 7rem);
}

.nearby-header { margin-bottom: 3.5rem; }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nearby-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  transition: background 0.25s;
}
.nearby-item:hover { background: var(--forest); }
.nearby-item:hover .nearby-name,
.nearby-item:hover .nearby-desc { color: var(--parchment); }
.nearby-item:hover .nearby-icon { color: var(--gold); }

.nearby-icon {
  font-size: 1.2rem;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: color 0.25s;
}
.nearby-name {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
  transition: color 0.25s;
}
.nearby-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.25s;
}

/* ── BOOKING CTA ─────────────────────────────────── */
#booking {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.booking-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.booking-overlay {
  position: absolute; inset: 0;
  background: rgba(10,18,11,0.72);
}

.booking-content {
  position: relative;
  z-index: 2;
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
}

.booking-display {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.booking-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.btn-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 1.1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, gap 0.25s;
}
.btn-book-cta:hover { background: var(--white); gap: 1.3rem; }

/* ── FOOTER ──────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  padding: 5rem clamp(1.5rem, 7vw, 7rem) 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand {}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.55);
  font-size: 0.85rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,168,130,0.08);
}

.footer-col-title {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--parchment); }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact-item p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.65;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
}

/* ── BACK TO TOP ─────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--forest);
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-tap-highlight-color: transparent;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#backToTop:hover { background: var(--gold); color: var(--forest); }

/* ── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1199px) {
  .intro-img-badge { left: -1rem; }
  .gallery-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .gallery-cell:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
  .gallery-cell:nth-child(2) { grid-column: 2/3; grid-row: 1/2; }
  .gallery-cell:nth-child(3) { grid-column: 2/3; grid-row: 2/3; }
  .gallery-cell:nth-child(4) { grid-column: 1/2; grid-row: 3/4; min-height: 200px; }
  .gallery-cell:nth-child(5) { grid-column: 2/3; grid-row: 3/4; min-height: 200px; }
}

@media (max-width: 991px) {
  .nav-links, .btn-book-nav { display: none !important; }
  .nav-toggle { display: flex; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-text-col { padding: 0 2rem 3rem; max-width: 600px; }
  .intro-img-badge { left: 1rem; }
  .intro-img-wrap { height: 420px; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item:nth-child(1) { border-left: none; }
  .highlight-item:nth-child(3) { border-left: none; }

  .room-item { grid-template-columns: 1fr; min-height: auto; }
  .room-item.reverse { direction: ltr; }
  .room-img { min-height: 320px; }
  .room-info { padding: 3rem 2rem; }
  .room-number { font-size: 3.5rem; }

  .experience-bg { background-attachment: scroll; }
  .booking-bg    { background-attachment: scroll; }

  .facilities-header { grid-template-columns: 1fr; }
  .facilities-list   { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 360px; }
  .location-map iframe { min-height: 360px; }

  .nearby-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  #site-header { padding: 1.1rem 1.25rem; }
  #site-header.scrolled { padding: 0.9rem 1.25rem; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .highlight-item:first-child { border-top: none; }

  .rooms-intro { flex-direction: column; align-items: flex-start; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-cell:nth-child(1) { grid-column: 1/3; grid-row: auto; min-height: 260px; }
  .gallery-cell:nth-child(n) { min-height: 180px; }

  .nearby-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
  .hero-heading { font-size: 2.4rem; }
  .hero-arrows  { display: none; }
  .display-editorial { font-size: 3rem; }
  .intro-display { font-size: 2.6rem; }
  .experience-display { font-size: 2.8rem; }
  .booking-display { font-size: 2.8rem; }
  .location-display { font-size: 2.4rem; }
  .room-img { min-height: 260px; }
  #backToTop { bottom: 1rem; right: 1rem; }
}