:root {
  --ivory: #F5EFE1;
  --sand: #E8DCC0;
  --gold: #C6A15B;
  --gold-dim: #A5844A;
  --teal: #163832;
  --teal-light: #22524A;
  --maroon: #7C2D2D;
  --charcoal: #2A2420;
  --line: rgba(42, 36, 32, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dim);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ---------- ARCH MOTIF ---------- */
.arch-shape {
  clip-path: path('M0,220 L0,60 C0,26 40,0 90,0 C140,0 180,26 180,60 L180,220 Z');
}

.arch-row {
  display: flex;
  width: 100%;
  line-height: 0;
}

.arch-row svg {
  width: 100%;
  display: block;
}

/* ---------- UTILITY BAR ---------- */
.utility-bar {
  background: var(--teal);
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 32px;
  padding-bottom: 12px;
}

.utility-bar .left,
.utility-bar .right {
  display: flex;
  gap: 26px;
}

.utility-bar a:hover {
  color: var(--gold);
}

/* ---------- HEADER ---------- */
header.main {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(22, 56, 50, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

header.main.solid {
  background: var(--teal);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 32px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  transition: padding 0.3s ease;
}

header.main.solid .nav-inner {
  padding: 10px 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

header.main.solid .logo-img {
  height: 42px;
}

nav.links {
  display: flex;
  gap: 34px;
  align-items: center;
}

nav.links a {
  color: var(--ivory);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

nav.links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn.filled {
  background: var(--gold);
  color: var(--charcoal);
}

.btn.filled:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--teal);
  overflow: hidden;
  margin-top: -100px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.9;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198, 161, 91, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(22, 56, 50, 0.55) 0%, rgba(22, 56, 50, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  padding: 0 24px;
  max-width: 760px;
}

.hero-content .eyebrow {
  color: var(--gold);
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 18px 0 22px;
  font-style: italic;
  font-weight: 500;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--sand);
  max-width: 520px;
  margin: 0 auto 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0.75;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: var(--gold);
  margin: 10px auto 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ---------- STATS STRIP ---------- */
.stats {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats .stat {
  padding: 28px 16px;
  border-left: 1px solid var(--line);
}

.stats .stat:first-child {
  border-left: none;
}

.stats .stat b {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  color: var(--maroon);
  display: block;
}

.stats .stat span {
  font-size: 0.82rem;
  color: var(--charcoal);
  opacity: 0.75;
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-top: 14px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto;
}

/* ---------- WELCOME ---------- */
.welcome {
  background: var(--ivory);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-light) 60%, var(--gold-dim) 130%);
  /* clip-path: path('M0,340 L0,90 C0,40 60,0 135,0 C210,0 270,40 270,90 L270,340 Z'); */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 26px;
  overflow: hidden;
  border-radius: 20px;
}

.welcome-visual span {
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.8;
}

.welcome-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  /* object-fit:cover; */
}

.welcome-text .eyebrow {
  margin-bottom: 14px;
  display: block;
}

.welcome-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.welcome-text p {
  color: #4a423b;
  margin-bottom: 18px;
  max-width: 480px;
}

.welcome-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.welcome-feats div {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.welcome-feats h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.welcome-feats p {
  font-size: 0.85rem;
  margin: 0;
  color: #6a615a;
}

/* ---------- ROOMS ---------- */
.rooms {
  background: var(--teal);
  color: var(--ivory);
}

.rooms .section-head .eyebrow {
  color: var(--gold);
}

.rooms .section-head p {
  color: var(--sand);
  margin-top: 14px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.room-card {
  background: var(--ivory);
  color: var(--charcoal);
  position: relative;
  transition: transform 0.35s ease;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-visual {
  position: relative;
  aspect-ratio: 3/3.6;
  /* clip-path: path('M0,230 L0,64 C0,28 42,0 94,0 C146,0 188,28 188,64 L188,230 Z'); */
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 225, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.room-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.room-body {
  padding: 22px 22px 26px;
}

.room-body .eyebrow {
  color: var(--maroon);
}

.room-body h3 {
  font-size: 1.4rem;
  margin: 8px 0 10px;
}

.room-body p {
  font-size: 0.85rem;
  color: #5b524a;
  margin-bottom: 14px;
}

.room-body .price {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 14px;
  display: block;
}

.room-body .btn {
  border-color: var(--maroon);
  color: var(--maroon);
  width: 100%;
  text-align: center;
}

.room-body .btn:hover {
  background: var(--maroon);
  color: var(--ivory);
}

/* ---------- EXPERIENCES ---------- */
.experiences {
  background: var(--ivory);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exp-card {
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.exp-card:hover {
  box-shadow: 0 16px 40px rgba(42, 36, 32, 0.08);
  transform: translateY(-4px);
}

.exp-icon {
  width: 44px;
  height: 60px;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.exp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 0.88rem;
  color: #5b524a;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--charcoal);
  color: var(--ivory);
}

.gallery .section-head .eyebrow {
  color: var(--gold);
}

.gallery .section-head p {
  color: var(--sand);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}

.gal-item {
  background: linear-gradient(135deg, var(--teal-light), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(245, 239, 225, 0.6);
  text-align: center;
  padding: 10px;
}

.gal-item:nth-child(1) {
  grid-row: span 2;
  grid-column: span 2;
  background: linear-gradient(135deg, var(--gold-dim), var(--teal));
}

.gal-item:nth-child(4) {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--maroon), var(--charcoal));
}

.gal-item:nth-child(6) {
  grid-column: span 2;
}

/* ---------- TESTIMONIALS ---------- */
.voices {
  background: var(--sand);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice-card {
  background: var(--ivory);
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
}

.voice-card p.quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.08rem;
  margin-bottom: 18px;
  color: var(--charcoal);
}

.voice-card .who {
  font-size: 0.8rem;
  color: var(--maroon);
  letter-spacing: 0.03em;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--maroon);
  color: var(--ivory);
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--sand);
  margin-bottom: 30px;
}

.cta-band .btn {
  border-color: var(--ivory);
}

.cta-band .btn.filled {
  background: var(--gold);
  border-color: var(--gold);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 70px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(245, 239, 225, 0.12);
}

.foot-grid h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.foot-grid p,
.foot-grid a {
  font-size: 0.88rem;
  color: var(--sand);
  opacity: 0.85;
  display: block;
  margin-bottom: 10px;
}

.foot-grid a:hover {
  color: var(--gold);
  opacity: 1;
}

.foot-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 14px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.78rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- ENQUIRY MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 20, 17, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--ivory);
  max-width: 480px;
  width: 100%;
  padding: 44px 38px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--charcoal);
  background: none;
  border: none;
  line-height: 1;
}

.modal h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.modal .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.modal-grid .full {
  grid-column: 1/-1;
}

.modal label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6a615a;
  display: block;
  margin-bottom: 6px;
}

.modal input,
.modal textarea,
.modal select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.modal input:focus,
.modal textarea:focus,
.modal select:focus {
  border-color: var(--gold);
}

.modal .btn.filled {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--ivory);
}

.modal .btn.filled:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.modal-note {
  font-size: 0.76rem;
  color: #7a716a;
  margin-top: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .utility-bar {
    display: none;
  }

  .nav-inner {
    padding: 16px 24px;
  }

  nav.links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--teal);
    padding: 8px 24px 20px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
    border-top: 1px solid rgba(245, 239, 225, 0.14);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }

  nav.links.open {
    display: flex;
  }

  nav.links a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(245, 239, 225, 0.12);
    font-size: 0.92rem;
  }

  nav.links a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.7rem;
    cursor: pointer;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .exp-grid {
    grid-template-columns: 1fr;
  }

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

  .voice-grid {
    grid-template-columns: 1fr;
  }

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

  .stats .stat:nth-child(3) {
    border-left: none;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 70px 0;
  }
}

@media (max-width: 700px) {
  .welcome-feats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .room-grid {
    grid-template-columns: 1fr;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 14px 18px;
    gap: 10px;
  }

  .logo {
    font-size: 1.15rem;
    gap: 7px;
  }

  .logo .mark {
    width: 24px;
    height: 24px;
  }

  .nav-inner>.btn.filled {
    font-size: 0.68rem;
    padding: 9px 13px;
    letter-spacing: 0.03em;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }

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

  .stats .stat {
    padding: 22px 10px;
  }

  .stats .stat b {
    font-size: 1.5rem;
  }

  .modal {
    padding: 32px 22px;
  }

  .modal h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 400px) {
  .nav-inner {
    gap: 8px;
  }

  .logo {
    font-size: 0.98rem;
    letter-spacing: 0.02em;
  }

  .logo .mark {
    display: none;
  }

  .nav-inner>.btn.filled {
    padding: 8px 10px;
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- ROOM DETAIL PAGE ---------- */
.rd-hero {
  margin-top: -100px;
  padding-top: 180px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(22, 56, 50, 0.9) 0%, var(--teal) 100%);
  color: var(--ivory);
  text-align: center;
}

.rd-hero .eyebrow {
  color: var(--gold);
}

.rd-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 14px 0 10px;
  font-style: italic;
}

.rd-hero .rd-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--sand);
}

.breadcrumb {
  font-size: 0.78rem;
  color: var(--sand);
  opacity: 0.75;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold);
}

.rd-gallery {
  padding: 60px 0 0;
  background: var(--ivory);
}

.rd-shot {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 225, 0.7);
  font-size: 0.78rem;
  text-align: center;
  padding: 14px;
}

.rd-body {
  padding: 70px 0 90px;
  background: var(--ivory);
}

.rd-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.rd-main h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.rd-main p {
  color: #4a423b;
  margin-bottom: 20px;
  max-width: 600px;
}

.rd-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0 44px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rd-facts div b {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--maroon);
}

.rd-facts div span {
  font-size: 0.8rem;
  color: #6a615a;
}

.rd-amenities h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.amenity-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.rd-sidebar {
  background: var(--teal);
  color: var(--ivory);
  padding: 36px 30px;
  position: sticky;
  top: 120px;
}

.rd-sidebar h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.rd-sidebar .rd-price {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 22px;
  display: block;
}

.rd-sidebar .btn.filled {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.rd-sidebar p.note {
  font-size: 0.8rem;
  color: var(--sand);
  opacity: 0.8;
  margin-top: 14px;
}

.rd-sidebar ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  font-size: 0.85rem;
}

.rd-sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 239, 225, 0.15);
  display: flex;
  justify-content: space-between;
}

.rd-other {
  background: var(--sand);
  padding: 80px 0;
}

.rd-other .section-head {
  margin-bottom: 40px;
}

.rd-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.rd-other-card {
  background: var(--ivory);
}

.rd-other-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 225, 0.7);
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
}

.rd-other-card .room-body {
  padding: 20px;
}

.rd-other-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.rd-other-card .btn {
  border-color: var(--maroon);
  color: var(--maroon);
  display: block;
  text-align: center;
}

.rd-other-card .btn:hover {
  background: var(--maroon);
  color: var(--ivory);
}

@media (max-width: 900px) {
  .rd-layout {
    grid-template-columns: 1fr;
  }

  .rd-sidebar {
    position: static;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .rd-facts {
    grid-template-columns: 1fr 1fr;
  }

  .rd-other-grid {
    grid-template-columns: 1fr;
  }

  .rd-hero {
    padding-top: 150px;
    padding-bottom: 44px;
  }

  .rd-body {
    padding: 50px 0 60px;
  }
}

@media (max-width: 560px) {
  .rd-facts {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .rd-gallery-grid {
    grid-auto-rows: 120px;
  }

  .rd-sidebar {
    padding: 28px 22px;
  }
}

/* ---------- LIGHTBOX ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 60px 24px;
}

.lightbox-overlay.open {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-stage {
  width: min(900px, 88vw);
  height: min(560px, 62vh);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 225, 0.65);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.lightbox-caption {
  color: var(--ivory);
  text-align: center;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.05rem;
}

.lightbox-count {
  color: var(--gold);
  text-align: center;
  font-size: 0.75rem;
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  color: var(--ivory);
  font-size: 1.9rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(245, 239, 225, 0.35);
  color: var(--ivory);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 10px 16px;
  z-index: 2001;
  transition: background 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(245, 239, 225, 0.12);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

@media (max-width:640px) {
  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox-stage {
    height: 50vh;
  }
}

/* ---------- EXPANDED ROOM GALLERY GRID ---------- */
.rd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  grid-auto-flow: dense;
  gap: 10px;
  height: auto;
}

.rd-gallery-grid .main-shot {
  grid-column: span 2;
  grid-row: span 2;
}

.rd-shot {
  cursor: zoom-in;
  transition: opacity 0.25s ease;
}

.rd-shot:hover {
  opacity: 0.85;
}

@media (max-width:900px) {
  .rd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }

  .rd-gallery-grid .main-shot {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }
}

/* ---------- DEDICATED GALLERY PAGE ---------- */
.gp-hero {
  margin-top: -100px;
  padding: 190px 0 70px;
  background: linear-gradient(180deg, rgba(22, 56, 50, 0.92) 0%, var(--teal) 100%);
  color: var(--ivory);
  text-align: center;
}

.gp-hero .eyebrow {
  color: var(--gold);
}

.gp-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 14px 0 8px;
  font-style: italic;
}

.gp-hero p {
  color: var(--sand);
  max-width: 520px;
  margin: 0 auto;
}

.gp-filters {
  background: var(--ivory);
  padding: 28px 0;
  position: sticky;
  top: 100px;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.gp-filters .wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.gp-filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gp-filter-btn:hover {
  border-color: var(--gold);
  color: var(--maroon);
}

.gp-filter-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--ivory);
}

.gp-body {
  background: var(--ivory);
  padding: 56px 0 100px;
}

.collage-grid {
  column-count: 4;
  column-gap: 14px;
}

.collage-item {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collage-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(42, 36, 32, 0.18);
}

.collage-item .tag {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 14px 16px;
  font-size: 0.78rem;
  color: var(--ivory);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

.collage-item .cat-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 9px;
}

.collage-item.hidden-item {
  display: none;
}

/* varied photo heights for a natural collage rhythm */
.c-h1 {
  height: 220px;
}

.c-h2 {
  height: 300px;
}

.c-h3 {
  height: 380px;
}

.c-h4 {
  height: 260px;
}

.c-h5 {
  height: 340px;
}

@media (max-width: 900px) {
  .collage-grid {
    column-count: 2;
  }

  .gp-filters {
    position: static;
  }

  .gp-hero {
    padding: 150px 0 50px;
  }
}

@media (max-width: 560px) {
  .collage-grid {
    column-count: 1;
  }

  .gp-filters .wrap {
    gap: 8px;
  }

  .gp-filter-btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .c-h1,
  .c-h2,
  .c-h3,
  .c-h4,
  .c-h5 {
    height: 230px;
  }
}