:root {
  --bg: #faf8f5;
  --card: #ffffff;
  --tint: #f6f3ee;
  --ink: #1c1c1e;
  --ink-soft: #6b6b70;
  --line: #ece7e0;
  --accent: #a8823f;
  --accent-2: #c9a15c;
  --accent-ink: #6e5527;
  --accent-bg: #f6ecd9;
  --shadow: 0 20px 45px rgba(28, 28, 30, 0.08);
  --shadow-sm: 0 8px 20px rgba(28, 28, 30, 0.06);
  --shadow-lg: 0 30px 70px rgba(28, 28, 30, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 88px 0; }
section.tinted { background: var(--tint); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-ink);
  margin: 0 0 12px;
}

h2.section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

p.section-sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 40px;
  font-size: 16.5px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

@media (max-width: 859px) {
  .hero { min-height: calc(100svh - 84px); }
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 24s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.55) 78%, rgba(0,0,0,0.82) 100%);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  max-width: 440px;
  margin: 0 auto 24px;
  padding: 28px 26px 26px;
  border-radius: var(--radius-lg);
  background: rgba(20, 20, 22, 0.42);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: var(--shadow-lg);
}

.hero-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.hero-loc .icon { color: var(--accent-2); flex-shrink: 0; }

.hero h1 {
  font-size: clamp(26px, 5.4vw, 32px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-meta {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 14.5px;
}
.hero-rating .icon { color: var(--accent-2); }
.hero-rating span { font-weight: 500; color: rgba(255,255,255,0.7); font-size: 13px; }

.hero-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
}

.hero-price {
  font-size: 15px;
  font-weight: 700;
}
.hero-price .from { font-weight: 500; color: rgba(255,255,255,0.7); font-size: 13px; margin-right: 3px; }
.hero-price .per { font-weight: 500; color: rgba(255,255,255,0.7); font-size: 13px; }

.hero-value {
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
  margin: 0 0 22px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), opacity 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px rgba(168, 130, 63, 0.38);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(168, 130, 63, 0.48); transform: translateY(-1px); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { background: #f4f1ec; }

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); }

.btn-wide { width: 100%; }

.btn-icon {
  width: 52px;
  height: 52px;
  padding: 0;
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-icon:hover { background: #f4f1ec; }

/* ---------- Gallery ---------- */
.gallery-section { padding-bottom: 56px; }

.wrap-head { margin-bottom: 28px; }
.wrap-head .section-title { margin-bottom: 0; }

.gallery-carousel { position: relative; }

.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-track .slide {
  flex: 0 0 86%;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-track .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-track .slide:hover img { transform: scale(1.04); }

.gallery-counter {
  position: absolute;
  top: 14px;
  right: 34px;
  background: rgba(20,20,22,0.55);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-arrow.prev { left: 32px; }
.gallery-arrow.next { right: 32px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.gallery-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  transition: all 0.25s var(--ease);
}
.gallery-dots .dot.active { width: 20px; background: var(--accent); }

@media (min-width: 720px) {
  .gallery-track .slide { flex-basis: 56%; aspect-ratio: 3/2; }
}

@media (min-width: 1024px) {
  .gallery-track { padding: 0 calc((100vw - 1120px) / 2 + 20px); }
  .gallery-track .slide { flex-basis: 44%; }
  .gallery-arrow { display: flex; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12,12,13,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 14px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Video walkthrough ---------- */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.video-card:hover img { transform: scale(1.03); }

.video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.12) 55%, rgba(0,0,0,0.4) 100%);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: rgba(255,255,255,0.26); }

.video-play-inner {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(168, 130, 63, 0.4);
  padding-left: 3px;
}

.video-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(20,20,22,0.55);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(12,12,13,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.video-modal.open { display: flex; }

.video-modal-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 380px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.video-modal-play {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding-left: 2px;
}

.video-modal-card .title { font-weight: 700; font-size: 17px; margin: 0 0 6px; }
.video-modal-card .sub { color: var(--ink-soft); font-size: 14px; margin: 0; line-height: 1.5; }

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

@media (min-width: 900px) {
  .amenity-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

.amenity-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.amenity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.amenity-icon .icon { width: 24px; height: 24px; color: var(--accent-ink); }

.amenity-title { font-weight: 700; font-size: 15.5px; margin-bottom: 4px; }
.amenity-sub { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Highlights ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .highlight-grid { grid-template-columns: repeat(4, 1fr); }
}

.highlight-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.highlight-emoji { font-size: 30px; margin-bottom: 12px; }
.highlight-title { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.highlight-sub { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 780px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon { width: 26px; height: 26px; color: var(--accent-bg); margin-bottom: 10px; }

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars .icon { width: 14px; height: 14px; color: var(--accent); }

.review-text {
  font-size: 15px;
  color: #3a3a3c;
  margin: 0 0 22px;
  line-height: 1.55;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 14px; }
.review-role { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Location ---------- */
.location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 860px) {
  .location-layout { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
}

.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

@media (min-width: 860px) {
  .map-embed { align-self: start; }
}

.poi-list { display: flex; flex-direction: column; gap: 10px; }

.poi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.poi-item .icon { width: 20px; height: 20px; color: var(--accent-ink); flex-shrink: 0; }
.poi-item .name { font-weight: 700; font-size: 14.5px; flex: 1; }
.poi-item .time { font-weight: 600; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Engagement intelligence ---------- */
.engage-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .engage-layout { grid-template-columns: 1fr 0.85fr; }
}

.notify-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 22px;
  max-width: 380px;
}

.notify-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.notify-head .bell {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.notify-body .prop { font-weight: 600; font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }

.notify-steps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }

.notify-steps .step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #3a3a3c;
}

.notify-steps .step .check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notify-footer {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-ink);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ---------- Final booking section ---------- */
.book-section {
  background: linear-gradient(160deg, #1c1c1e 0%, #232326 55%, #2a241a 100%);
  color: #fff;
}

.book-section .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .book-section .wrap { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

.eyebrow-light { color: var(--accent-2); }

.book-title {
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.book-sub {
  color: rgba(255,255,255,0.7);
  font-size: 16.5px;
  margin: 0 0 28px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.slot {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s var(--ease);
}
.slot:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.slot-label { font-size: 12.5px; color: rgba(255,255,255,0.65); font-weight: 600; }
.slot-time { font-size: 15.5px; font-weight: 700; }

.slot-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(168, 130, 63, 0.32);
}
.slot-primary .slot-label { color: rgba(255,255,255,0.85); }
.slot-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(168, 130, 63, 0.42); }

.slot-other { justify-content: center; align-items: center; }
.slot-other .slot-time { font-size: 14.5px; color: rgba(255,255,255,0.8); text-align: center; }

.book-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.book-divider::before, .book-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.14);
}

.book-section .btn-glass { color: #fff; }

/* ---------- Agent card (in booking section) ---------- */
.agent-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

.agent-identity { display: flex; align-items: center; gap: 16px; }

.agent-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.agent-name { font-weight: 700; font-size: 17px; }
.agent-company { color: rgba(255,255,255,0.55); font-size: 13.5px; }

.agent-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.agent-meta .row { display: flex; gap: 8px; align-items: center; }
.agent-meta .icon { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; }

.qr-block {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}

.qr-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  flex-shrink: 0;
}

.qr-caption { font-size: 12.5px; color: rgba(255,255,255,0.6); max-width: 160px; }

/* ---------- Footer ---------- */
footer {
  padding: 40px 0 60px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
  background: #1c1c1e;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}
.sticky-cta .btn-primary { flex: 1; padding: 14px 16px; }

@media (min-width: 860px) {
  .sticky-cta { display: none; }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

body { padding-bottom: 78px; }
@media (min-width: 860px) { body { padding-bottom: 0; } }

@media (min-width: 640px) {
  .hero-card { margin: 0 0 40px 40px; }
}
