:root {
  --bg: #0e0e0f;
  --surface: #17181a;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #c9a227; /* gold; overridable per client via brandColor later */
}
* { box-sizing: border-box; }
body.site {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}
.section { padding: 3rem 1.25rem; max-width: 920px; margin: 0 auto; }
.section[hidden] { display: none; }
.section__title { font-size: 1.5rem; letter-spacing: .02em; margin-bottom: 1.25rem; }

/* Hero */
.hero {
  min-height: 70vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; position: relative;
}
.hero__overlay {
  width: 100%; padding: 2rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,0));
}
.hero__title { font-size: 2.5rem; margin: 0; }
.hero__tagline { color: var(--muted); margin: .25rem 0 1rem; }

/* Buttons */
.btn--book {
  display: inline-block; background: var(--accent); color: #111;
  font-weight: 700; padding: .75rem 1.5rem; border-radius: 999px;
  text-decoration: none;
}

/* Services */
.services { list-style: none; padding: 0; margin: 0; }
.service {
  display: flex; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1px solid #26272b;
}
.service__price { color: var(--accent); font-weight: 600; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.gallery__img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* Reviews */
.reviews { display: grid; gap: 1rem; }
.review { background: var(--surface); padding: 1.25rem; border-radius: 12px; margin: 0; }
.review__stars { color: var(--accent); }
.review__author { color: var(--muted); margin-top: .5rem; }

/* Hours / location */
.hours { list-style: none; padding: 0; }
.hours__row { display: flex; justify-content: space-between; padding: .35rem 0; }
.map, .map-link { width: 100%; border: 0; margin-top: 1rem; }
.map { height: 280px; border-radius: 12px; }
.address { color: var(--muted); font-style: normal; margin-top: .75rem; }

/* Contact */
.contact { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }
.contact__link { color: var(--text); }

/* Sticky book button (mobile) */
.sticky-book {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%);
  background: var(--accent); color: #111; font-weight: 700;
  padding: .85rem 2rem; border-radius: 999px; text-decoration: none;
  opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 50;
}
.sticky-book.is-visible { opacity: 1; pointer-events: auto; }
@media (min-width: 700px) { .sticky-book { display: none; } }
