/* === Modern Neutral Palette === */
:root {
  --bg: #F8F8F7;
  --surface: #FFFFFF;
  --surface-alt: #F1F1EF;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-subtle: #9A9A9A;
  --border: #E5E5E2;
  --primary: #1A1A1A;
  --primary-text: #FFFFFF;
  --accent: #B3282D;
  --accent-soft: #FAEBEB;
  --star: #F59E0B;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --content-max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  body { padding-bottom: 72px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }

/* === Header === */
.header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 44px;
  width: auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.brand-location { font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.15s; }
.header-nav a:hover { color: var(--text); }
.header-cta {
  background: var(--primary);
  color: var(--primary-text);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 768px) {
  .header-nav a:not(.header-cta) { display: none; }
}

/* === Hero === */
.hero { padding: 28px 0 8px; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 540px;
  position: relative;
  background: var(--surface-alt);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photos-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .hero { padding: 12px 0 0; }
  .hero-photo { border-radius: 0; aspect-ratio: 4/3; }
  .hero .container { padding: 0; }
}

/* === Hook band (thin) === */
.hook-band {
  background: linear-gradient(90deg, #F3F3F1 0%, #EDEDEB 50%, #F3F3F1 100%);
  border-top: 1px solid rgba(179, 40, 45, 0.1);
  border-bottom: 1px solid rgba(179, 40, 45, 0.1);
  padding: 20px 0;
  text-align: center;
}
.hook-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  font-variation-settings: 'opsz' 96;
}
@media (max-width: 768px) {
  .hook-band { padding: 16px 0; }
  .hook-title { font-size: 19px; }
}

/* === Title block === */
.title-block { padding: 28px 0 4px; }
.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 14px;
  color: var(--text-muted);
  align-items: center;
}
.property-meta .rating { display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-weight: 600; }
.property-meta .dot { color: var(--text-subtle); }
.property-meta a { text-decoration: underline; }
.badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-neutral { background: var(--surface-alt); color: var(--text); }

/* === Quick facts === */
.quick-facts {
  display: flex;
  gap: 28px;
  padding: 22px 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.quick-fact { display: flex; align-items: center; gap: 10px; }
.quick-fact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-fact .number { font-size: 24px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.quick-fact .label { color: var(--text-muted); font-size: 14px; }
@media (max-width: 768px) {
  .quick-facts { gap: 18px; padding: 18px 0; }
  .quick-fact .number { font-size: 20px; }
  .quick-fact .label { font-size: 13px; }
  .quick-fact-icon { width: 20px; height: 20px; }
}

/* === Main content grid === */
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  padding: 8px 0 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* === Sticky booking sidebar === */
.booking-sidebar { position: sticky; top: 88px; }
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.booking-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.booking-price .from { color: var(--text-muted); font-size: 14px; }
.booking-price .amount { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.booking-price .per { color: var(--text-muted); font-size: 15px; }
.booking-subline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.booking-widget-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  color: var(--text-subtle);
  font-size: 12px;
  background: var(--surface-alt);
  margin-bottom: 14px;
  line-height: 1.5;
}
.booking-widget-placeholder strong { color: var(--text-muted); display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; }
.booking-cta {
  width: 100%;
  background: var(--primary);
  color: var(--primary-text);
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.booking-cta:hover { opacity: 0.88; }
.booking-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.booking-trust div { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.booking-trust svg { color: var(--accent); }

@media (max-width: 1024px) {
  .booking-sidebar { position: static; }
}

/* === Sections === */
.section { padding: 36px 0; border-top: 1px solid var(--border); }
.section:first-child { border-top: none; padding-top: 28px; }
.section-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.015em; }
.section-subtitle { font-size: 14px; color: var(--text-muted); margin-top: -16px; margin-bottom: 24px; }

/* === Highlights row === */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.highlight-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-text { flex: 1; min-width: 0; }
.highlight-title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.highlight-desc { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
@media (max-width: 480px) {
  .highlights { grid-template-columns: 1fr; }
}

/* === Description === */
.description { font-size: 16px; line-height: 1.7; color: var(--text); max-width: 720px; }
.description p { margin-bottom: 14px; }
.description ul { padding-left: 20px; margin-bottom: 14px; }
.description li { margin-bottom: 6px; }
.read-more {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-size: inherit;
  padding: 0;
  color: var(--text);
  margin-top: 4px;
}

/* === Bedrooms === */
.bedrooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bedroom { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.bedroom-img { aspect-ratio: 1/1; background: var(--surface-alt); overflow: hidden; }
.bedroom-img img { width: 100%; height: 100%; object-fit: cover; }
.bedroom-info { padding: 12px 14px 14px; }
.bedroom-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.bedroom-bed { font-size: 13px; color: var(--text-muted); }
@media (max-width: 1024px) {
  .bedrooms { grid-template-columns: repeat(2, 1fr); }
}

/* === Amenities === */
.amenities-group { margin-bottom: 20px; }
.amenities-group:last-child { margin-bottom: 0; }
.amenities-group-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.amenity { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.amenity-icon { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; }
@media (max-width: 768px) {
  .amenities-list { grid-template-columns: 1fr; }
}
.see-all-btn {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--text);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
}
.see-all-btn:hover { background: var(--surface-alt); }

/* === Map === */
.map-wrapper { margin-bottom: 12px; }
.map-container {
  aspect-ratio: 16/8;
  background: var(--surface-alt);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-privacy-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  margin-top: -90px;
  margin-left: -90px;
  border: 2px solid var(--accent);
  background: rgba(179, 40, 45, 0.10);
  border-radius: 50%;
  pointer-events: none;
}
.map-privacy-note {
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 24px;
}
.location-narrative { margin-bottom: 20px; font-size: 15px; color: var(--text); line-height: 1.65; max-width: 720px; }
.nearby-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.nearby-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
}
.nearby-item .distance { color: var(--text-muted); font-weight: 600; font-size: 13px; }
@media (max-width: 768px) {
  .nearby-list { grid-template-columns: 1fr; }
}

/* === Reviews === */
.reviews-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.reviews-header .big-rating {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reviews-header .count { color: var(--text-muted); font-size: 16px; }

.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 36px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.rating-row { display: flex; align-items: center; gap: 14px; }
.rating-row .label { flex: 1; font-size: 14px; color: var(--text); }
.rating-row .bar {
  flex: 1.2;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.rating-row .bar-fill { height: 100%; background: var(--text); border-radius: 2px; }
.rating-row .value { font-weight: 600; font-size: 14px; min-width: 30px; text-align: right; letter-spacing: -0.01em; }
@media (max-width: 768px) {
  .rating-breakdown { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.review-stars { color: var(--star); margin-bottom: 10px; font-size: 13px; letter-spacing: 1px; }
.review-text { font-size: 14px; line-height: 1.65; margin-bottom: 14px; color: var(--text); }
.review-author { font-weight: 600; font-size: 13px; }
.review-date { color: var(--text-muted); font-size: 13px; }
.review-byline { display: flex; gap: 6px; align-items: center; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.see-all-reviews { margin-top: 20px; }

/* === Hosts === */
.hosts-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.hosts-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.hosts-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.hosts-meta { display: flex; gap: 18px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.hosts-meta div { display: flex; align-items: center; gap: 4px; }
.hosts-bio { font-size: 14px; line-height: 1.6; color: var(--text); }
.hosts-contact { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.hosts-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hosts-card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .hosts-photo { margin: 0 auto; }
  .hosts-meta { justify-content: center; }
  .hosts-contact { justify-content: center; }
}

/* === Things to know === */
.things-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.things-group h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.things-list { list-style: none; padding: 0; }
.things-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.5; }
.things-list li:last-child { border-bottom: none; }
.things-list .row-flex { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.things-list .label { color: var(--text-muted); }
.things-list .value { font-weight: 600; }
.policy-text { font-size: 13px; color: var(--text); line-height: 1.6; }
.policy-text p { margin-bottom: 8px; }
.policy-text p:last-child { margin-bottom: 0; }
@media (max-width: 1024px) {
  .things-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* === FAQ === */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
  max-width: 640px;
}
.faq-item.open .faq-answer { display: block; }

/* === Footer === */
.footer {
  background: var(--surface-alt);
  padding: 56px 0 32px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand img { height: 48px; margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 360px; line-height: 1.6; }
.footer-title { font-weight: 700; font-size: 13px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.social-row a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { text-decoration: underline; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}

/* === Mobile sticky CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mobile-cta-price { font-size: 13px; color: var(--text-muted); line-height: 1.2; }
.mobile-cta-price .amount { font-size: 18px; font-weight: 700; color: var(--text); display: block; }
.mobile-cta-btn {
  background: var(--primary);
  color: var(--primary-text);
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .mobile-cta { display: flex; }
}

/* === Icons === */
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 24px; height: 24px; }
.icon-star { fill: var(--star); stroke: none; width: 16px; height: 16px; }
.icon-star-sm { fill: var(--star); stroke: none; width: 13px; height: 13px; }

/* === Hero mosaic (Airbnb-style) === */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 2/1;
  max-height: 560px;
  position: relative;
  background: var(--bg);
}
.mosaic-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 0;
}
.hero-mosaic .tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-alt);
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.hero-mosaic .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.3s ease; }
.hero-mosaic .tile:hover img { transform: scale(1.04); filter: brightness(0.94); }
@media (max-width: 768px) {
  .hero-mosaic { grid-template-columns: 1fr; aspect-ratio: 4/3; border-radius: 0; max-height: none; }
  .mosaic-side { display: none; }
}

/* === Visual polish === */
.highlight, .bedroom, .review, .nearby-item { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.highlight:hover, .review:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bedroom:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bedroom-img img { transition: transform 0.5s ease; }
.bedroom:hover .bedroom-img img { transform: scale(1.05); }
.nearby-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.header-cta, .booking-cta, .mobile-cta-btn { background: var(--accent); transition: background 0.15s ease, opacity 0.15s ease; }
.header-cta:hover, .booking-cta:hover, .mobile-cta-btn:hover { background: #8F1F23; opacity: 1; }
.section-title::after { content: ""; display: block; width: 34px; height: 3px; border-radius: 2px; background: var(--accent); margin-top: 8px; }
.hook-moon { width: 22px; height: 22px; color: var(--accent); margin: 0 auto 6px; display: block; }
.desc-more[hidden] { display: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* === Modals === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.55);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.modal-title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.modal-close { background: none; border: none; cursor: pointer; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 20px; line-height: 1; }
.modal-close:hover { background: var(--surface-alt); }
.modal-body { padding: 20px 24px 28px; overflow-y: auto; }
.modal-body .amenities-group-title { margin-top: 18px; }
.modal-body .amenities-group-title:first-child { margin-top: 0; }
.modal-body .amenities-list { margin-bottom: 8px; }
.modal-review { padding: 16px 0; border-bottom: 1px solid var(--border); }
.modal-review:last-of-type { border-bottom: none; }
.modal-reviews-note { margin-top: 16px; font-size: 13px; color: var(--text-muted); }
.modal-reviews-note a { text-decoration: underline; }
@media (max-width: 768px) {
  .modal-overlay { padding: 0; }
  .modal { max-height: 100dvh; height: 100%; border-radius: 0; }
}

/* === Lightbox gallery === */
.lightbox {
  position: fixed; inset: 0;
  background: #141414;
  z-index: 300;
  display: none;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; color: #fff; flex-shrink: 0; }
.lightbox-head .lb-title { font-weight: 600; font-size: 15px; }
.lb-close { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-grid {
  overflow-y: auto;
  padding: 4px 20px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.lightbox-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; cursor: pointer; transition: opacity 0.15s; }
.lightbox-grid img:hover { opacity: 0.85; }
@media (max-width: 768px) { .lightbox-grid { grid-template-columns: repeat(2, 1fr); padding: 4px 12px 40px; } }

.lightbox-viewer {
  position: fixed; inset: 0;
  background: #000;
  z-index: 310;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-viewer.open { display: flex; }
.lightbox-viewer img { max-width: 94vw; max-height: 84vh; object-fit: contain; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  font-size: 22px; display: flex; align-items: center; justify-content: center;
}
.lb-nav:hover { background: rgba(255,255,255,0.28); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-viewer-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; }
.lb-viewer-close:hover { background: rgba(255,255,255,0.28); }
.lb-count { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #bbb; font-size: 13px; letter-spacing: 0.04em; }
@media (max-width: 768px) { .lb-nav { width: 40px; height: 40px; } }

/* === Round 2 polish === */
/* Crisp header with signature red-to-charcoal top strip + larger logo */
.header {
  background: rgba(255, 255, 255, 0.94);
  border-top: 3px solid var(--accent);
  border-image: linear-gradient(90deg, var(--accent) 0%, #7A1B1F 50%, #1A1A1A 100%) 1;
  border-left: 0; border-right: 0; border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.brand-logo { height: 60px; }
.brand-name { font-size: 17px; }
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(179, 40, 45, 0.18);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.header-badge .icon-star { width: 13px; height: 13px; }
@media (max-width: 900px) { .header-badge { display: none; } }

/* Book Now button — logo red, white text */
.header-cta, .mobile-cta-btn { background: var(--accent); color: #FFFFFF; }
.header-cta:hover, .mobile-cta-btn:hover { background: #8F1F23; }

/* Hook band — hero photo behind a warm wash */
.hook-band {
  position: relative;
  background: url('https://www.lunasmountainlodge.com/wp-content/uploads/2024/11/d4fdfac1996acefabb58e1030768c6f1a5ca4b3a-scaled.jpg') center 42% / cover no-repeat;
  border-top: none;
  border-bottom: none;
  padding: 38px 0;
}
.hook-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17, 17, 17, 0.85) 0%, rgba(46, 20, 21, 0.68) 55%, rgba(17, 17, 17, 0.82) 100%);
  border-bottom: 3px solid var(--accent);
}
.hook-band .hook-moon, .hook-band .hook-title { position: relative; z-index: 1; }
.hook-title { color: #F7F7F5; }
.hook-moon { color: var(--star); }
@media (max-width: 768px) { .hook-band { padding: 26px 0; } }

/* Hosts photo — larger portrait, badges image under the bio */
.hosts-photo {
  width: 220px;
  height: auto;
  max-height: 340px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  align-self: start;
}
.hosts-badges { max-width: 300px; height: auto; margin-top: 16px; }
@media (max-width: 768px) {
  .hosts-photo { width: 190px; height: auto; max-height: 300px; margin: 0 auto; }
  .hosts-badges { margin: 16px auto 0; }
}

/* Book Now — beat .header-nav a specificity so the text stays white */
.header-nav a.header-cta { color: #FFFFFF; }
.header-nav a.header-cta:hover { color: #FFFFFF; }

/* OwnerRez widget — let its script set the height; small floor to avoid layout jank */
.ownerrez-widget { width: 100%; min-height: 380px; }
.ownerrez-widget iframe { width: 100% !important; }

/* Sidebar: sticky with a smart pin point (set by site.js).
   Fits on screen -> sticks 88px from the top like a normal sidebar.
   Taller than the screen -> sticks so its BOTTOM stays visible instead.
   Never an inner scrollbar; the card is always its natural height. */
.booking-sidebar {
  position: sticky;
  top: var(--sidebar-top, 88px);
  max-height: none;
  overflow: visible;
}
