@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --forest:  #2a3d2a;
  --gold:    #b89a5a;
  --gold-lt: #d4b87a;
  --cream:   #f5f0e8;
  --warm:    #ede6d8;
  --white:   #faf8f4;
  --text:    #2c2a26;
  --muted:   #7a7060;
  --border:  rgba(184,154,90,0.22);
}
* { box-sizing: border-box; }

/* PAGE TITLE */
.page-title {
  position: relative;
  background-size: cover; background-position: center;
  padding: 130px 0 90px; text-align: center;
}
.page-title::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,20,.72) 0%, rgba(20,30,20,.45) 100%);
}
.page-title .title-outer { position: relative; z-index: 1; }
.page-title .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px; font-weight: 300;
  color: #fff; letter-spacing: 6px;
  margin-bottom: 14px; line-height: 1.1;
}
.page-breadcrumb {
  list-style: none; padding: 0; margin: 0;
  display: flex; justify-content: center; gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-lt);
}
.page-breadcrumb li + li::before { content: '/'; margin-right: 8px; opacity: .5; }
.page-breadcrumb a { color: var(--gold-lt); text-decoration: none; }

/* STICKY ROOMS NAV */
.rooms-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 999;
}
.rooms-nav ul {
  display: flex; list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none;
  justify-content: center;
}
.rooms-nav ul::-webkit-scrollbar { display: none; }
.rooms-nav ul li a {
  display: block; padding: 18px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.rooms-nav ul li a:hover,
.rooms-nav ul li a.active {
  color: var(--forest); border-bottom-color: var(--gold);
}

/* ROOM SECTION */
.room-section { padding: 90px 0 70px; background: var(--white); }
.room-section:nth-child(even) { background: var(--cream); }

/* TALL IMAGE */
.room-img-wrap { height: 100%; overflow: hidden; }
.room-img-tall {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; display: block;
}
.room-img-placeholder {
  width: 100%; height: 100%; min-height: 520px;
  background: linear-gradient(145deg, #c5d5bc 0%, #8fa882 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; letter-spacing: 2px;
  color: var(--forest); opacity: .6;
}

/* CONTENT */
.room-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.room-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: var(--forest); line-height: 1.1;
  margin-bottom: 8px; letter-spacing: 1px;
}
.room-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic;
  color: var(--muted); margin-bottom: 24px;
}
.room-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 26px; padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.room-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 500;
  color: var(--forest); line-height: 1;
}
.room-price-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
}
.room-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px; line-height: 1.95;
  color: var(--muted); margin-bottom: 28px;
}
.room-features {
  list-style: none; padding: 0; margin: 0 0 34px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.room-features li {
  font-family: 'Jost', sans-serif;
  font-size: 13px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.room-features li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}

/* BUTTONS ROW */
.room-btns {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.btn-book {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 36px;
  background: var(--forest); color: #fff;
  border: 1.5px solid var(--forest);
  text-decoration: none; display: inline-block;
  transition: all .3s; cursor: pointer;
}
.btn-book:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.btn-wa {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 36px;
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--gold);
  text-decoration: none; display: inline-block;
  transition: all .3s;
}
.btn-wa:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ── INCLUSION / EXCLUSION HEADING TRIGGER ── */
.incl-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--forest);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.incl-trigger::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.incl-trigger:hover { color: var(--gold); }
.incl-trigger:hover::after { transform: scaleX(1); }
.incl-trigger svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8; flex-shrink: 0;
  transition: transform .3s;
}
.incl-trigger:hover svg { transform: rotate(15deg); }

/* ── INCLUSION / EXCLUSION POPUP MODAL ── */
.incl-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(10,16,10,0.72);
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.incl-modal-overlay.open { display: flex; }

.incl-modal {
  background: var(--white);
  max-width: 860px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
}
.incl-modal::-webkit-scrollbar { width: 5px; }
.incl-modal::-webkit-scrollbar-thumb { background: var(--gold); }

/* Left - image */
.incl-modal-img {
  position: relative; overflow: hidden;
  min-height: 420px;
}
.incl-modal-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.incl-modal-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42,61,42,0.65) 100%);
}
.incl-modal-img-label {
  position: absolute; bottom: 22px; left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: #fff; letter-spacing: 1px;
}

/* Right - content */
.incl-modal-body {
  padding: 40px 36px 36px;
  display: flex; flex-direction: column;
}
.incl-modal-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.incl-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300;
  color: var(--forest); letter-spacing: 1px;
  margin-bottom: 6px; line-height: 1.15;
}
.incl-modal-sub {
  font-family: 'Jost', sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.incl-modal-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.incl-modal-list li {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px; line-height: 1.6;
  color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.incl-modal-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0; margin-top: 7px;
}

/* Close X */
.incl-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  font-size: 26px; color: var(--muted);
  cursor: pointer; line-height: 1;
  font-family: sans-serif;
  transition: color .2s;
  z-index: 10;
}
.incl-modal-close:hover { color: var(--forest); }

/* ── GALLERY STRIP ── */
.room-gallery-strip {
  margin-top: 50px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.room-gallery-strip h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-grid .g-item {
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, #bfcfb8 0%, #8fa882 100%);
  cursor: pointer; position: relative;
}
.gallery-grid .g-item::after {
  content: '⤢';
  position: absolute; inset: 0;
  background: rgba(42,61,42,0);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff;
  opacity: 0; transition: all .3s;
}
.gallery-grid .g-item:hover::after {
  background: rgba(42,61,42,0.45);
  opacity: 1;
}
.gallery-grid .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
  pointer-events: none;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.g-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--forest); opacity: .5;
}

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.gd-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(8,12,8,0.96);
  align-items: center; justify-content: center;
  flex-direction: column;
}
.gd-lightbox.open { display: flex; }
.gd-lb-stage {
  position: relative;
  width: 100%; max-width: 1100px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 72px;
}
.gd-lb-img {
  max-width: 100%; max-height: 76vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transition: opacity .22s ease;
  display: block;
}
.gd-lb-img.fade { opacity: 0; }
.gd-lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(184,154,90,0.12);
  border: 1px solid rgba(184,154,90,0.38);
  color: var(--gold-lt);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, border-color .25s;
  user-select: none; backdrop-filter: blur(6px);
}
.gd-lb-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.gd-lb-prev { left: 10px; }
.gd-lb-next { right: 10px; }
.gd-lb-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 34px; cursor: pointer; line-height: 1;
  transition: color .2s; z-index: 10;
  background: none; border: none; padding: 4px 8px;
  font-family: sans-serif;
}
.gd-lb-close:hover { color: var(--gold-lt); }
.gd-lb-counter {
  margin-top: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.gd-lb-thumbs {
  display: flex; gap: 8px;
  margin-top: 14px; padding: 4px 16px 8px;
  max-width: 1100px; width: 100%;
  overflow-x: auto; scrollbar-width: none;
  justify-content: center;
}
.gd-lb-thumbs::-webkit-scrollbar { display: none; }
.gd-lb-thumb {
  width: 64px; height: 46px; flex-shrink: 0;
  object-fit: cover; cursor: pointer;
  border-radius: 2px;
  border: 2px solid transparent;
  opacity: 0.45; transition: opacity .22s, border-color .22s;
}
.gd-lb-thumb.active,
.gd-lb-thumb:hover { opacity: 1; border-color: var(--gold); }

/* DIVIDER */
.room-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-img { opacity: 0; transform: translateX(-20px); transition: opacity .85s ease .12s, transform .85s ease .12s; }
.reveal-img.visible { opacity: 1; transform: none; }
.flip .reveal-img { transform: translateX(20px); }

/* INSTAGRAM */
.instragram-area { padding: 0; }
.instragram-wrapper { overflow: hidden; position: relative; }
.instragram-thumb img { width: 100%; display: block; transition: transform .5s; }
.instragram-wrapper:hover .instragram-thumb img { transform: scale(1.07); }
.instragram-button {
  position: absolute; inset: 0;
  background: rgba(26,46,26,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.instragram-wrapper:hover .instragram-button { opacity: 1; }
.instragram-button a { font-size: 28px; color: #fff; }

/* RESPONSIVE */
@media(max-width:991px) {
  .room-title { font-size: 38px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .room-img-tall, .room-img-placeholder { min-height: 380px; }
  .gd-lb-stage { padding: 0 56px; }
  .incl-modal { grid-template-columns: 1fr; }
  .incl-modal-img { min-height: 220px; }
}
@media(max-width:767px) {
  .page-title .title { font-size: 40px; }
  .rooms-nav ul { justify-content: flex-start; }
  .room-features { grid-template-columns: 1fr; }
  .room-title { font-size: 32px; }
  .room-price-num { font-size: 32px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .room-img-tall, .room-img-placeholder { min-height: 260px; }
  .gd-lb-stage { padding: 0 46px; }
  .gd-lb-btn { width: 40px; height: 40px; font-size: 17px; }
  .incl-modal-body { padding: 28px 22px 26px; }
  .incl-trigger { font-size: 17px; }
}