*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-dark: #1b3a2a;
  --green-deep: #162e22;
  --orange: #d4753a;
  --orange-hover: #c06830;
  --gold: #c8922a;
  --cream: #faf8f5;
  --gray-light: #e4e7ea;
  --gray-bg: #eaedf0;
  --text-dark: #1a1a1a;
  --text-body: #3a3a3a;
  --text-muted: #6a6a6a;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: var(--green-dark);
  transition: background 0.4s ease, height 0.4s ease;
}
.site-header.scrolled {
  background: rgba(27,58,42,0.96);
  backdrop-filter: blur(8px);
  height: 64px;
}
.header-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.header-logo img {
  height: clamp(34px, 4.5vw, 44px);
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.header-nav a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 0.25rem 0;
  position: relative;
}
.header-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.header-nav a:hover { color: var(--white); }
.header-nav .nav-link:hover::after { width: 100%; }
.header-nav .header-cta {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.75rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s ease;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.header-nav .header-cta:hover { background: var(--orange-hover); }
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.header-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0;
  transition: color 0.25s;
}
.nav-dropdown-trigger:hover { color: var(--white); }
.nav-dropdown-caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.7);
  transition: transform 0.25s;
}
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px); left: 0;
  background: var(--green-dark);
  border-radius: 6px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--green-dark);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-inner { padding: 5rem 2rem 2rem; }
.mobile-menu-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.mobile-menu-label {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem; margin-top: 1.5rem;
}
.mobile-menu-section:first-child .mobile-menu-label { margin-top: 0; }
.mobile-menu-link {
  display: block;
  padding: 0.65rem 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-link:last-child { border-bottom: none; }
.mobile-menu-cta {
  display: block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600; font-size: 1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px;
}

/* ===== STANDARD HERO (accommodation pages) ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 6vw, 7rem);
  padding-top: 100px;
  background: var(--white);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-image {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  min-height: clamp(320px, 50vh, 560px);
  border-radius: 8px; overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-breadcrumb {
  font-family: var(--sans);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05; color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.hero-price {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--orange); font-weight: 500; margin-bottom: 1rem;
}
.hero-specs {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 0.9vw, 0.92rem);
  font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-body);
  margin-bottom: 1.25rem;
}
.hero-specs span { display: flex; align-items: center; gap: 0.4rem; }
.hero-specs .spec-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); display: none;
}
.hero-specs span + span .spec-dot { display: inline-block; }
.hero-desc {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-body); line-height: 1.7;
  max-width: 580px; margin-bottom: 1.75rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  font-family: var(--sans); font-size: 0.92rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 4px; text-decoration: none;
  cursor: pointer; transition: background 0.25s ease;
  min-height: 44px; display: inline-flex; align-items: center;
}
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 0.92rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 2rem;
  background: transparent; color: var(--green-dark);
  border: 1.5px solid rgba(27,58,42,0.4);
  border-radius: 4px; text-decoration: none;
  cursor: pointer; transition: border-color 0.25s, background 0.25s;
  min-height: 44px;
}
.btn-outline:hover { border-color: var(--green-dark); background: rgba(27,58,42,0.06); }
.hero-stars {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  text-align: center;
  background: rgba(27,58,42,0.85); backdrop-filter: blur(8px);
  padding: 1rem 1.25rem; border-radius: 8px;
}
.hero-stars .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; display: block; margin-bottom: 0.25rem; }
.hero-stars .star-label {
  font-family: var(--sans); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--white);
}
.photo-gallery-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 2.4 / 1;
  gap: 6px; border-radius: 12px; overflow: hidden;
}
.pg-main { grid-row: 1 / 3; grid-column: 1 / 2; overflow: hidden; }
.pg-sm { overflow: hidden; }
.pg-main img, .pg-sm img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.pg-main:hover img, .pg-sm:hover img { transform: scale(1.03); }
.view-all-btn {
  position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 2;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  padding: 0.6rem 1.5rem;
  background: rgba(255,255,255,0.92); color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.15); border-radius: 6px;
  cursor: pointer; transition: background 0.2s; backdrop-filter: blur(4px);
}
.view-all-btn:hover { background: #fff; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
}
.lightbox-overlay.active { display: flex; align-items: center; justify-content: center; }
.lightbox-close {
  position: fixed; top: 1.25rem; right: 1.5rem; z-index: 1001;
  width: 44px; height: 44px; background: rgba(255,255,255,0.12);
  border: none; border-radius: 50%; color: white;
  font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-counter {
  position: fixed; top: 1.5rem; left: 1.5rem; z-index: 1001;
  font-family: var(--sans); font-size: 0.95rem; color: rgba(255,255,255,0.6);
}
.lightbox-stage {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem clamp(3.5rem, 8vw, 6rem);
}
.lightbox-stage img {
  display: none; max-width: 100%; max-height: 100%;
  width: auto; height: auto; object-fit: contain; border-radius: 6px;
}
.lightbox-stage img.active { display: block; }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 1001;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: none; border-radius: 50%; color: white;
  font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

/* ===== VANISH / AT A GLANCE ===== */
.vanish {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--white);
}
.vanish-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: clamp(3rem, 5vw, 5rem);
  max-width: 1280px; margin: 0 auto; align-items: start;
}
.vanish-eyebrow {
  font-family: var(--sans); font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.vanish h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1; color: var(--text-dark); margin-bottom: 1.5rem;
}
.vanish h2 em { font-style: italic; color: var(--green-dark); }
.vanish-body {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-body); line-height: 1.75; margin-bottom: 1.75rem;
}
.vanish-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--orange); text-decoration: none;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 0.3rem; transition: gap 0.35s ease;
}
.vanish-cta:hover { gap: 1rem; }
.vanish-cta svg { width: 22px; height: 22px; stroke: var(--orange); transition: transform 0.35s; }
.vanish-cta:hover svg { transform: translateX(4px); }
.at-a-glance {
  background: var(--gray-bg); border-radius: 12px;
  padding: 2rem 2rem 2.25rem;
}
.at-a-glance-title {
  font-family: var(--sans); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid #d0d3d6;
}
.glance-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.65rem 0; border-bottom: 1px solid #d0d3d6;
}
.glance-row:last-child { border-bottom: none; }
.glance-label {
  font-family: var(--sans); font-size: 1rem;
  font-weight: 400; color: var(--text-body);
}
.glance-value {
  font-family: var(--sans); font-size: 1rem;
  font-weight: 500; color: var(--text-dark); text-align: right;
}
.glance-value.highlight { color: var(--orange); font-weight: 600; }

/* ===== WHAT'S INCLUDED ===== */
.whats-included {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--gray-bg);
}
.whats-included-inner { max-width: 1280px; margin: 0 auto; }
.whats-included h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1; color: var(--text-dark);
  text-align: center; margin-bottom: 3rem;
}
.amenity-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-bottom: 2.5rem;
}
.amenity-category.full-width { grid-column: 1 / -1; }
.amenity-category.full-width ul {
  display: grid; grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: 1fr 1fr; column-gap: 2rem;
}
.amenity-category h3 {
  font-family: var(--sans); font-size: 0.88rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--green-dark);
}
.amenity-category ul { list-style: none; }
.amenity-category li {
  font-size: 1rem; color: var(--text-body);
  padding: 0.5rem 0; padding-left: 1.25rem;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.amenity-category li:last-child { border-bottom: none; }
.amenity-category li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 600; font-size: 0.9rem;
}
.resort-access {
  background: var(--green-dark); border-radius: 10px; padding: 1.5rem 2rem;
}
.resort-access-label {
  font-family: var(--sans); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.resort-access-list {
  font-family: var(--sans); font-size: 0.95rem;
  color: rgba(255,255,255,0.8); line-height: 1.8;
}

/* ===== BOOKING ===== */
.booking {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--white); text-align: center;
}
.booking-inner { max-width: 800px; margin: 0 auto; }
.booking h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.booking-sub {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-muted); margin-bottom: 2.5rem;
}
.booking-cta { margin-bottom: 2rem; text-align: center; }
.booking-cta-note {
  font-family: var(--sans); font-size: 0.82rem;
  color: var(--text-muted); letter-spacing: 0.05em; margin-top: 0.75rem;
}
.btn-booking-large {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.2rem 3.25rem;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 36px; text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(212,117,58,0.3);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  min-height: 52px;
}
.btn-booking-large:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,117,58,0.4);
}
.booking-info-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
  margin-top: 2rem;
}
.booking-info-item {
  padding: 1.25rem 0.5rem; text-align: center;
  border-right: 1px solid #eee;
}
.booking-info-item:last-child { border-right: none; }
.booking-info-label {
  font-family: var(--sans); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.3rem;
}
.booking-info-value {
  font-family: var(--sans); font-size: 1rem;
  font-weight: 600; color: var(--text-dark);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--gray-bg);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 7rem);
}
.reviews-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.reviews h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.reviews-aggregate {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-muted); margin-bottom: 3rem;
}
.reviews-aggregate .agg-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 16px; padding: 2rem 1.75rem; text-align: left;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars span { color: var(--gold); font-size: 1.3rem; }
.review-text {
  font-size: 1rem; color: var(--text-body);
  line-height: 1.75; margin-bottom: 1.25rem;
}
.review-author {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.95rem; color: var(--green-dark);
}
.reviews .btn-primary {
  padding: 1rem 2.5rem; font-size: 1rem; border-radius: 30px;
}

/* ===== ON PROPERTY ===== */
.on-property { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.on-property-img { overflow: hidden; }
.on-property-img img { width: 100%; height: 100%; object-fit: cover; }
.on-property-content {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.on-property-eyebrow {
  font-family: var(--sans); font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.on-property-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.12; color: var(--text-dark); margin-bottom: 1.25rem;
}
.on-property-content h2 em { font-style: italic; color: var(--green-dark); }
.on-property-body {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-body); line-height: 1.7; margin-bottom: 2rem;
}
.property-amenity-list { list-style: none; }
.property-amenity-list li {
  font-size: 1rem; color: var(--text-body);
  padding: 0.85rem 0; padding-left: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  position: relative; line-height: 1.5;
}
.property-amenity-list li:first-child { border-top: 1px solid #e0e0e0; }
.property-amenity-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
}

/* ===== MOMENTS GALLERY ===== */
.moments {
  padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--white);
}
.moments-inner { max-width: 1280px; margin: 0 auto; }
.moments-eyebrow {
  font-family: var(--sans); font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.moments h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.15; color: var(--text-dark); margin-bottom: 2rem;
}
.moments h2 em { font-style: italic; color: var(--green-dark); }
.moments-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto; gap: 0.5rem;
}
.moments-grid .mi { overflow: hidden; border-radius: 4px; }
.moments-grid .mi img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.moments-grid .mi:hover img { transform: scale(1.04); }
.mi-1 { grid-column: 1/2; }
.mi-2 { grid-column: 2/3; }
.mi-3 { grid-column: 3/4; }
.mi-4 { grid-column: 4/5; }
.mi-1 img, .mi-2 img, .mi-3 img, .mi-4 img { aspect-ratio: 4/5; }
.mi-5 { grid-column: 1/3; }
.mi-6 { grid-column: 3/4; }
.mi-7 { grid-column: 4/5; }
.mi-5 img { aspect-ratio: 2.2/1; }
.mi-6 img, .mi-7 img { aspect-ratio: 4/5; }
.moments-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  float: right; margin-top: 1.5rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--orange); text-decoration: none;
  padding-bottom: 0.4rem; border-bottom: 1.5px solid var(--orange);
  transition: gap 0.35s ease;
}
.moments-link:hover { gap: 1rem; }
.moments-link svg { width: 24px; height: 24px; stroke: var(--orange); transition: transform 0.35s; }
.moments-link:hover svg { transform: translateX(4px); }

/* ===== SURROUNDINGS ===== */
.surroundings { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.surroundings-content {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.surroundings-eyebrow {
  font-family: var(--sans); font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.surroundings-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.12; color: var(--text-dark); margin-bottom: 1.25rem;
}
.surroundings-content h2 em { font-style: italic; color: var(--green-dark); }
.surroundings-body {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--text-body); line-height: 1.75; margin-bottom: 2rem;
}
.surroundings-table { width: 100%; border-collapse: collapse; }
.surroundings-table tr { border-bottom: 1px solid #c0c0c0; }
.surroundings-table tr:first-child { border-top: 1px solid #c0c0c0; }
.surroundings-table td {
  padding: 0.8rem 0; font-size: 1rem; color: var(--text-body);
}
.surroundings-table td:last-child {
  text-align: right; color: var(--text-muted); white-space: nowrap;
}
.surroundings-img { overflow: hidden; }
.surroundings-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SIMILAR ACCOMMODATIONS ===== */
.similar {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--gray-bg);
}
.similar-inner { max-width: 1280px; margin: 0 auto; }
.similar h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-dark); margin-bottom: 2.5rem;
}
.similar h2 em { font-style: italic; color: var(--green-dark); }
.similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.similar-card {
  display: block; background: var(--white);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.3s ease; color: inherit; text-decoration: none;
}
.similar-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.similar-card-img { aspect-ratio: 4/3; overflow: hidden; }
.similar-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.similar-card:hover .similar-card-img img { transform: scale(1.03); }
.similar-card-body { padding: 1.25rem 1.5rem 1.75rem; }
.similar-badge {
  display: inline-block;
  font-family: var(--sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--orange); color: var(--white);
  border-radius: 3px; margin-bottom: 0.5rem;
}
.similar-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  color: var(--text-dark); margin-bottom: 0.65rem;
}
.similar-features { list-style: none; margin-bottom: 1.25rem; }
.similar-features li {
  font-size: 0.95rem; color: var(--text-body);
  line-height: 1.6; padding-left: 1.2rem; position: relative;
}
.similar-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 600; font-size: 0.85rem;
}
.similar-card-link {
  display: inline-block;
  font-family: var(--sans); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 0.2rem; transition: color 0.25s;
}
.similar-card-link:hover { color: var(--orange-hover); }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  text-align: center;
  background: url('../images/blue-ridge-fall-vista.webp') center/cover no-repeat;
}
.final-cta::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,30,20,0.62); pointer-events: none;
}
.final-cta-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
}
.final-cta-eyebrow {
  font-family: var(--sans); font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 700; letter-spacing: 0.12em;
  color: var(--orange); margin-bottom: 0.75rem;
}
.final-cta h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05; color: var(--white); margin-bottom: 1.25rem;
}
.final-cta h2 em { font-style: italic; color: var(--orange); font-weight: 400; }
.final-cta-sub {
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2.5rem;
}
.btn-cta-large {
  display: inline-block;
  font-family: var(--sans); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.1rem 3rem;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 32px; text-decoration: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s; min-height: 44px;
}
.btn-cta-large:hover { background: var(--orange-hover); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vanish-inner { grid-template-columns: 1fr; }
  .at-a-glance { max-width: 480px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-info-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav .nav-link { display: none; }
  .header-nav .nav-dropdown { display: none; }
  .header-hamburger { display: flex; }
  .hero { padding: 6rem 1.5rem 2.5rem; grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { min-height: 300px; }
  .hero-stars { display: none; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .pg-main { grid-row: 1/3; grid-column: 1/2; }
  .pg-sm:nth-child(4), .pg-sm:nth-child(5) { display: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .on-property { grid-template-columns: 1fr; }
  .on-property-img { max-height: 400px; }
  .moments-grid { grid-template-columns: 1fr 1fr; }
  .mi-1 { grid-column: 1/2; } .mi-2 { grid-column: 2/3; }
  .mi-3 { grid-column: 1/2; } .mi-4 { grid-column: 2/3; }
  .mi-5 { grid-column: 1/3; }
  .mi-6 { grid-column: 1/2; } .mi-7 { grid-column: 2/3; }
  .mi-1 img, .mi-2 img, .mi-3 img, .mi-4 img, .mi-6 img, .mi-7 img { aspect-ratio: 4/3; }
  .moments-link { float: none; display: inline-flex; }
  .surroundings { grid-template-columns: 1fr; }
  .surroundings-img { max-height: 350px; order: -1; }
  .similar-grid { grid-template-columns: 1fr; max-width: 480px; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-nav.prev { left: 0.5rem; }
  .lightbox-nav.next { right: 0.5rem; }
  .lightbox-stage { padding: 4rem 3.5rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; justify-content: center; }
  .booking-info-bar { grid-template-columns: repeat(2, 1fr); }
}
