/* ── Index-page styles ── */

main { margin-top: 16px; }

.cta { gap: 10px; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.grid > .card { height: 100%; display: flex; flex-direction: column; }
.grid > .card .gallery { flex: 1; }
.grid > .card .tiny { margin-top: auto; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  padding: 16px;
}

.gallery-spacer { display: none; }

.tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-alt);
  border: 1px solid var(--border);
  cursor: zoom-in;
  min-height: 170px;
  margin: 0;
  transition: transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.22s ease;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 22, 18, 0.14);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.40s ease;
}

.tile:hover img { transform: scale(1.04); }

.label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11.5px;
  font-weight: 500;
  font-family: var(--body-font);
  color: rgba(255, 248, 232, 0.94);
  background: rgba(10, 8, 4, 0.52);
  border: 1px solid rgba(255, 248, 232, 0.14);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

.span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }

@media (max-width: 950px) {
  .grid { grid-template-columns: 1fr; }
  .gallery {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 12px 12px 12px 14px;
    scroll-padding-left: 14px;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .tile {
    flex: 0 0 78vw;
    max-width: 320px;
    min-height: 200px;
    scroll-snap-align: start;
    grid-column: unset !important;
  }
  .span-8, .span-6, .span-4 { grid-column: unset; }
  .map-embed iframe { height: 220px; }
}

/* Info */
.info h2, .reviews h2 { letter-spacing: -0.01em; }

/* Section dividers in sidebar */
.info > h2 ~ h2 {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14px;
}

.ul-icons.bullets { padding-left: 0; }

.bullets li { margin: 10px 0; line-height: 1.5; }

.tiny {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 14px;
  border-top: 1px solid var(--border);
  background: var(--accent-pale);
  color: var(--muted);
  font-size: 12px;
}

/* Buttons (index extras) */
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: rgba(255, 248, 232, 0.96);
}

.btn.primary:hover {
  background: #a0712e;
  border-color: #a0712e;
}

/* Map */
.map-embed {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-alt);
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
  display: block;
}

html[data-theme="dark"] .map-embed iframe { filter: invert(0.92) hue-rotate(180deg) saturate(0.5); }


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 3, 0.80);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.lightbox.open { display: flex; }

.lb-inner {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.12);
  background: rgba(16, 13, 8, 0.75);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  position: relative;
}

.lb-img {
  width: 100%;
  height: 72vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.40);
  display: block;
}

.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 248, 232, 0.10);
  color: rgba(255, 248, 232, 0.72);
  font-size: 13px;
  font-family: var(--body-font);
}

.iconbtn {
  border: 1px solid rgba(255, 248, 232, 0.16);
  background: rgba(255, 248, 232, 0.08);
  color: rgba(255, 248, 232, 0.88);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 500;
  font-family: var(--body-font);
  font-size: 13px;
  transition: background 0.15s;
}

.iconbtn:hover { background: rgba(255, 248, 232, 0.14); }

.lb-actions { display: flex; gap: 8px; align-items: center; }

/* Reviews */
.reviews {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.awardCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  margin: 10px 0 16px;
  border: 1px solid rgba(181, 129, 58, 0.22);
  border-radius: 14px;
  background: var(--accent-pale);
}

html[data-theme="dark"] .awardCard {
  border-color: rgba(201, 149, 63, 0.18);
  background: var(--accent-pale);
}

.awardLeft { display: flex; gap: 12px; align-items: flex-start; }
.awardIcon { width: 28px; height: 28px; flex: 0 0 28px; opacity: 0.70; }

.awardTitle {
  font-weight: 600;
  font-size: 13.5px;
  margin: 0 0 3px;
  font-family: var(--body-font);
}

.awardText { margin: 0; font-size: 13px; color: var(--muted); }
.awardSource { font-size: 12px; color: var(--muted); white-space: nowrap; }

.ratingRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 6px 0 14px;
  color: var(--text-secondary);
  font-size: 13.5px;
}

.reviewsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}


.reviewCard {
  border: 1px solid var(--border);
  background: var(--card-alt);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color var(--transition);
}

.reviewCard:hover { border-color: var(--border-strong); }

.reviewHead {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 8px;
}

.reviewName {
  font-weight: 600;
  font-size: 14px;
  font-family: var(--body-font);
  color: var(--text);
}

.reviewMeta {
  color: var(--muted);
  font-size: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.reviewText {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.58;
}

.reviewsNote {
  margin: 10px 0 10px 4px;
  font-size: 12px;
  color: var(--muted);
}

.reviewsActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

/* Icon lists (index-specific) */
.ul-location li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 22s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z" stroke="%23b5813a" stroke-width="1.8"/><circle cx="12" cy="11" r="2.5" stroke="%23b5813a" stroke-width="1.8"/></svg>');
}

html[data-theme="dark"] .ul-location li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 22s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z" stroke="%23c9953f" stroke-width="1.8"/><circle cx="12" cy="11" r="2.5" stroke="%23c9953f" stroke-width="1.8"/></svg>');
}

.ul-check li::before { background-image: none; }

.ul-check li:nth-child(1)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="4" stroke="%23b5813a" stroke-width="1.8"/><path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.9 4.9l2.1 2.1M17 17l2.1 2.1M19.1 4.9L17 7M7 17l-2.1 2.1" stroke="%23b5813a" stroke-width="1.8" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(2)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M6 2v7M8 2v7M10 2v7M6 9h4M8 9v13" stroke="%23b5813a" stroke-width="1.6" stroke-linecap="round"/><path d="M15 2v20" stroke="%23b5813a" stroke-width="1.6" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(3)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><rect x="2" y="2" width="20" height="9" rx="1.5" stroke="%23b5813a" stroke-width="1.8"/><rect x="4" y="4" width="6" height="5" rx="1" stroke="%23b5813a" stroke-width="1.8"/><rect x="14" y="4" width="6" height="5" rx="1" stroke="%23b5813a" stroke-width="1.8"/><rect x="2" y="11" width="20" height="5" rx="1" stroke="%23b5813a" stroke-width="1.8"/><rect x="1" y="16" width="22" height="2" rx="1" stroke="%23b5813a" stroke-width="1.8"/><path d="M5 18v3M19 18v3" stroke="%23b5813a" stroke-width="1.8" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(4)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 2v20M3.3 7l17.4 10M20.7 7L3.3 17M10 7h4M10 17h4" stroke="%23b5813a" stroke-width="1.8" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(5)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M2 8c5-4 15-4 20 0M5 12c4-3 10-3 14 0M8.5 16c2-1.5 5-1.5 7 0" stroke="%23b5813a" stroke-width="1.8" stroke-linecap="round"/><circle cx="12" cy="19" r="1.5" fill="%23b5813a"/></svg>');
}

html[data-theme="dark"] .ul-check li:nth-child(1)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="4" stroke="%23c9953f" stroke-width="1.8"/><path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.9 4.9l2.1 2.1M17 17l2.1 2.1M19.1 4.9L17 7M7 17l-2.1 2.1" stroke="%23c9953f" stroke-width="1.8" stroke-linecap="round"/></svg>'); }
html[data-theme="dark"] .ul-check li:nth-child(2)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M6 2v7M8 2v7M10 2v7M6 9h4M8 9v13" stroke="%23c9953f" stroke-width="1.6" stroke-linecap="round"/><path d="M15 2v20" stroke="%23c9953f" stroke-width="1.6" stroke-linecap="round"/></svg>'); }
html[data-theme="dark"] .ul-check li:nth-child(3)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><rect x="2" y="2" width="20" height="9" rx="1.5" stroke="%23c9953f" stroke-width="1.8"/><rect x="4" y="4" width="6" height="5" rx="1" stroke="%23c9953f" stroke-width="1.8"/><rect x="14" y="4" width="6" height="5" rx="1" stroke="%23c9953f" stroke-width="1.8"/><rect x="2" y="11" width="20" height="5" rx="1" stroke="%23c9953f" stroke-width="1.8"/><rect x="1" y="16" width="22" height="2" rx="1" stroke="%23c9953f" stroke-width="1.8"/><path d="M5 18v3M19 18v3" stroke="%23c9953f" stroke-width="1.8" stroke-linecap="round"/></svg>'); }
html[data-theme="dark"] .ul-check li:nth-child(4)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 2v20M3.3 7l17.4 10M20.7 7L3.3 17M10 7h4M10 17h4" stroke="%23c9953f" stroke-width="1.8" stroke-linecap="round"/></svg>'); }
html[data-theme="dark"] .ul-check li:nth-child(5)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M2 8c5-4 15-4 20 0M5 12c4-3 10-3 14 0M8.5 16c2-1.5 5-1.5 7 0" stroke="%23c9953f" stroke-width="1.8" stroke-linecap="round"/><circle cx="12" cy="19" r="1.5" fill="%23c9953f"/></svg>'); }

/* Dark mode (index) */
html[data-theme="dark"] .pill { color: rgba(255, 248, 232, 0.82); }
html[data-theme="dark"] .tile { background: var(--card-alt); border-color: var(--border); }
html[data-theme="dark"] .label { background: rgba(0, 0, 0, 0.48); border-color: rgba(255, 248, 232, 0.12); color: rgba(255, 248, 232, 0.90); }
html[data-theme="dark"] .tiny { background: var(--accent-pale); border-top-color: var(--border); color: var(--muted); }
html[data-theme="dark"] .reviewCard { background: var(--card-alt); border-color: var(--border); }
html[data-theme="dark"] .reviewName { color: rgba(255, 248, 232, 0.92); }
html[data-theme="dark"] .reviewMeta { color: var(--muted); }
html[data-theme="dark"] .reviewText { color: var(--muted); }
html[data-theme="dark"] .ratingRow { color: rgba(255, 248, 232, 0.72); }
html[data-theme="dark"] .bullets { color: rgba(255, 248, 232, 0.72); }

/* ── Availability Calendar ── */

.cal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 18px 0 22px;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.cal-nav-btn:hover:not(:disabled) {
  background: var(--card-alt);
  border-color: var(--accent);
  transform: scale(1.05);
}

.cal-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.cal-month-label {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 18px;
  min-width: 200px;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.01em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 16px;
}

.cal-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 2px 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--body-font);
}

.cal-day {
  min-height: 66px;
  padding: 6px 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  position: relative;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  user-select: none;
}

.cal-day.avail { cursor: pointer; }

.cal-day.avail:hover {
  background: var(--accent-light);
  border-color: rgba(181, 129, 58, 0.30);
}

html[data-theme="dark"] .cal-day.avail:hover {
  background: var(--accent-light);
  border-color: rgba(201, 149, 63, 0.28);
}

.cal-day.other-mo { opacity: 0.22; pointer-events: none; }
.cal-day.past { opacity: 0.36; pointer-events: none; }

.cal-day.booked {
  background: rgba(26, 22, 18, 0.06);
  cursor: not-allowed;
}

html[data-theme="dark"] .cal-day.booked { background: rgba(255, 248, 232, 0.05); }

/* Booked: subtle diagonal stripe overlay */
.cal-day.booked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(26, 22, 18, 0.04) 0px,
    rgba(26, 22, 18, 0.04) 1px,
    transparent 1px,
    transparent 6px
  );
  pointer-events: none;
}

html[data-theme="dark"] .cal-day.booked::after {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 248, 232, 0.04) 0px,
    rgba(255, 248, 232, 0.04) 1px,
    transparent 1px,
    transparent 6px
  );
}

/* Loading state */
.cal-loading .cal-grid { pointer-events: none; }
.cal-loading .cal-day:not(.other-mo):not(.past) { background: rgba(26, 22, 18, 0.04); cursor: default; }
.cal-loading .day-price { display: none; }
html[data-theme="dark"] .cal-loading .cal-day:not(.other-mo):not(.past) { background: rgba(255, 248, 232, 0.04); }

.cal-day.sel {
  background: var(--accent-light) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(181, 129, 58, 0.28);
}

html[data-theme="dark"] .cal-day.sel {
  background: var(--accent-light) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(201, 149, 63, 0.28);
}

.cal-day.in-range {
  background: var(--accent-pale) !important;
  border-color: rgba(181, 129, 58, 0.18) !important;
  border-radius: 0;
}

html[data-theme="dark"] .cal-day.in-range {
  background: var(--accent-pale) !important;
  border-color: rgba(201, 149, 63, 0.14) !important;
}

.day-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
  font-family: var(--body-font);
}

.cal-day.is-today .day-num {
  background: var(--accent);
  color: rgba(255, 248, 232, 0.97);
  border-radius: 50%;
}

.day-price {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.3;
  font-family: var(--body-font);
}

/* Summary */
.cal-summary {
  display: none;
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(181, 129, 58, 0.20);
  border-radius: 14px;
  background: var(--accent-pale);
  font-size: 14px;
}

html[data-theme="dark"] .cal-summary {
  border-color: rgba(201, 149, 63, 0.16);
  background: var(--accent-pale);
}

.cal-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--muted);
}

.cal-sum-row.total {
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 10px;
}

/* Enquire button */
.btn-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent);
  color: rgba(255, 248, 232, 0.97);
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--body-font);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(181, 129, 58, 0.28);
}

.btn-enquire:hover:not(:disabled) {
  background: #a0712e;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(181, 129, 58, 0.36);
  color: rgba(255, 248, 232, 0.97);
}

.btn-enquire:disabled {
  background: rgba(26, 22, 18, 0.16);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: var(--muted);
}

html[data-theme="dark"] .btn-enquire:disabled {
  background: rgba(255, 248, 232, 0.12);
  color: var(--muted);
}

html[data-theme="dark"] .btn-enquire {
  background: var(--accent);
  color: rgba(255, 248, 232, 0.97);
  box-shadow: 0 2px 12px rgba(201, 149, 63, 0.24);
}

html[data-theme="dark"] .btn-enquire:hover:not(:disabled) {
  background: #b8842c;
  box-shadow: 0 6px 24px rgba(201, 149, 63, 0.32);
}

/* Enquiry modal */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 3, 0.60);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9998;
}

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

.enquiry-box {
  max-width: min(490px, 94vw);
  width: 100%;
  border-radius: var(--radius);
  background: var(--card);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.enquiry-box h3 {
  margin: 0 0 4px;
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.enquiry-box .eq-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}

.enquiry-box label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 5px;
  font-family: var(--body-font);
}

.enquiry-box input,
.enquiry-box textarea,
.enquiry-box select {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.enquiry-box input:focus,
.enquiry-box textarea:focus,
.enquiry-box select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181, 129, 58, 0.12);
}

.enquiry-box textarea { resize: vertical; min-height: 80px; }

.enquiry-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.enquiry-close:hover { background: var(--accent-pale); color: var(--text); }

/* Responsive (index-specific) */
@media (max-width: 900px) {
  .topbar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .topbar > .cta:first-child { gap: 6px; }
  .cta { width: auto; justify-content: flex-start; }
  .addr { max-width: 100%; }
  /* Shrink buttons a touch at mid sizes */
  .topbar .btn { padding: 8px 12px; font-size: 12.5px; }
  .topbar .btn-enquire { padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 640px) {
  .cal-day { min-height: 52px; padding: 4px; }
  .day-price { font-size: 10px; }
  .day-num { font-size: 11px; }
  .enquiry-box { padding: 24px 18px; }
  .reviewsGrid { grid-template-columns: 1fr; }
  .reviewsActions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footerbar { margin-left: 0; }
}

/* ── Sticky mobile book bar ── */

.sticky-book-bar {
  display: none;
}

@media (max-width: 950px) {
  .sticky-book-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(26, 22, 18, 0.10);
    gap: 8px;
    align-items: center;
  }

  .sticky-book-bar .sbb-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--body-font);
    text-decoration: none;
    border: 1px solid var(--border-strong);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.01em;
  }

  .sticky-book-bar .sbb-btn:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
  }

  .sticky-book-bar .sbb-btn.sbb-enquire {
    background: var(--accent);
    border-color: var(--accent);
    color: rgba(255, 248, 232, 0.97);
    flex: 1.3;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(181, 129, 58, 0.28);
  }

  .sticky-book-bar .sbb-btn.sbb-enquire:hover {
    background: #a0712e;
    border-color: #a0712e;
    box-shadow: 0 4px 18px rgba(181, 129, 58, 0.36);
  }

  /* Give body padding so content isn't hidden behind the bar */
  body { padding-bottom: 72px; }

  #cta-airbnb-top,
  #cta-booking-top,
  #cta-enquire-top,
  #cta-map-top { display: none; }

  .topbar { display: none; }

  .reviewsActions { display: none; }
}

html[data-theme="dark"] .sticky-book-bar {
  background: var(--card);
  border-top-color: var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .sticky-book-bar .sbb-btn {
  background: rgba(255, 248, 232, 0.05);
  border-color: rgba(255, 248, 232, 0.13);
  color: rgba(255, 248, 232, 0.90);
}

html[data-theme="dark"] .sticky-book-bar .sbb-btn.sbb-enquire {
  background: var(--accent);
  border-color: var(--accent);
  color: rgba(255, 248, 232, 0.97);
}

