:root {
  --cream: #f7f1e6;
  --cream-2: #fffdf8;
  --ink: #2c2418;
  --ink-soft: #5a5040;
  --terracotta: #b1592f;
  --terracotta-dark: #8f4423;
  --sage: #6f7a55;
  --line: #e2d8c4;
  --shadow: 0 20px 50px -25px rgba(44, 36, 24, 0.35);
  --radius: 14px;
  font-size: 17px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

a { color: inherit; }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Header */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
header.site .container { display: flex; align-items: center; justify-content: space-between; }
header.site.scrolled {
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.brand { font-size: 1.25rem; color: #fff; transition: color 0.3s ease; }
header.site.scrolled .brand { color: var(--ink); }
.brand span { color: inherit; }

nav.main-nav { display: flex; align-items: center; gap: 30px; }
nav.main-nav a.nav-link {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, opacity .2s;
}
header.site.scrolled nav.main-nav a.nav-link { color: var(--ink-soft); }
nav.main-nav a.nav-link:hover { opacity: 0.7; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 25px -8px rgba(177,89,47,0.6); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.92;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,8,0.35) 0%, rgba(20,15,8,0.15) 35%, rgba(15,11,6,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 0 90px;
  width: 100%;
}
.hero-content .eyebrow { color: #f0d9c4; }
.hero-content h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-content .lead {
  max-width: 560px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 34px;
  background: rgba(255,255,255,0.6);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown { 0%,100% { transform: scaleY(0.4); opacity:.4;} 50% { transform: scaleY(1); opacity:1; } }

/* Story */
.story {
  background: var(--cream-2);
}
.story .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.story figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story figure img { border-radius: var(--radius); }
.story .text p { color: var(--ink-soft); margin: 0 0 20px; font-size: 1.05rem; }
.story .text p:first-of-type {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.5;
}
.story .signature {
  margin-top: 8px;
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--terracotta-dark);
}
@media (max-width: 860px) {
  .story .grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Spaces */
.spaces-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}
.spaces-row:last-child { margin-bottom: 0; }
.spaces-row.reverse .space-media { order: 2; }
.spaces-row.reverse .space-text { order: 1; }
.space-media {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.space-media .main-shot { grid-row: span 2; aspect-ratio: 4/5; }
.space-media img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .4s ease; }
.space-media a { display:block; overflow:hidden; border-radius: 10px; }
.space-media img:hover { transform: scale(1.04); }
.space-media .side-shot { aspect-ratio: 4/3; }
.space-text .eyebrow { color: var(--sage); }
.space-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.space-text p { color: var(--ink-soft); margin-bottom: 18px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.tag-list li {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .spaces-row, .spaces-row.reverse { grid-template-columns: 1fr; gap: 26px; }
  .spaces-row.reverse .space-media, .spaces-row.reverse .space-text { order: initial; }
}

/* Capacity strip */
.capacity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 56px 0 0;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.capacity-item { text-align: center; }
.capacity-item strong { display: block; font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--terracotta-dark); }
.capacity-item span { font-size: 0.86rem; color: var(--ink-soft); }

/* Amenities */
.amenities { background: var(--cream-2); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
.amenity-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.amenity-card .icon {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: rgba(177,89,47,0.12);
  color: var(--terracotta-dark);
  display: flex; align-items: center; justify-content: center;
}
.amenity-card span.label { font-weight: 500; font-size: 0.95rem; }
.amenities-note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px -10px rgba(0,0,0,0.3);
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .4s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,11,6,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.85rem; letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
}

/* Surroundings */
.surroundings { background: var(--cream-2); }
.surroundings .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.poi-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.poi-list li { display: flex; gap: 16px; }
.poi-list .dist {
  flex: none;
  font-family: "Fraunces", serif;
  color: var(--terracotta-dark);
  font-weight: 600;
  min-width: 84px;
}
.poi-list h4 { margin: 0 0 4px; font-size: 1.05rem; }
.poi-list p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }
.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 4/3.6;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .surroundings .grid { grid-template-columns: 1fr; } }

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  flex: none;
}
.rating-badge strong { font-family: "Fraunces", serif; font-size: 1.9rem; line-height: 1; }
.rating-badge span { font-size: 0.7rem; opacity: 0.9; }
.reviews-summary .labels { display: flex; flex-wrap: wrap; gap: 10px; }
.reviews-summary .labels span {
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.review-card .stars { color: var(--terracotta); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }
.review-card p.quote { font-size: 0.98rem; color: var(--ink); margin: 0 0 16px; }
.review-card .author { font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; }

/* Booking CTA */
.booking-cta {
  position: relative;
  background: var(--ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.booking-cta img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28;
}
.booking-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,8,0.75), rgba(20,15,8,0.92));
}
.booking-cta .container { position: relative; z-index: 2; }
.booking-cta .eyebrow { color: #f0d9c4; }
.booking-cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.booking-cta p { max-width: 560px; margin: 0 auto 32px; color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* Legal pages */
.legal-header {
  background: var(--ink);
  padding: 26px 0;
}
.legal-header .container { display: flex; justify-content: space-between; align-items: center; }
.legal-header .brand { color: #fff; font-size: 1.15rem; }
.legal-header a.back { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; }
.legal-header a.back:hover { text-decoration: underline; }
.legal-body { max-width: 780px; margin: 0 auto; padding: 60px 24px 90px; }
.legal-body h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 8px; }
.legal-body .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 40px; }
.legal-body h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal-body h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 1rem; margin: 0 0 12px; }
.legal-body ul { padding-left: 22px; }
.legal-body a { color: var(--terracotta-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-body .todo {
  background: #fff7ed;
  border: 1px solid #f0c9a8;
  border-radius: 8px;
  padding: 3px 8px;
  color: var(--terracotta-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.legal-body .box {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 20px 0;
}

/* WhatsApp button variant */
.btn-whatsapp { background: #25d366; color: #073b21; box-shadow: 0 10px 25px -8px rgba(37,211,102,0.6); }
.btn-whatsapp:hover { background: #1fbe5a; color: #062e19; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

/* Booking layout */
.booking-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.booking-intro h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.booking-intro > p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0 0 26px; max-width: 460px; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.booking-phone { font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.booking-phone a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.booking-form {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
}
.booking-form h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--ink); }
.booking-form .field { margin-bottom: 16px; }
.booking-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: 2px solid var(--terracotta); outline-offset: 1px; border-color: var(--terracotta); }
.booking-form textarea { resize: vertical; }
.booking-form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.booking-form-actions .btn { flex: 1; min-width: 150px; }
.booking-form-actions .btn-outline-light { color: var(--ink); border-color: var(--ink); }
.booking-form-actions .btn-outline-light:hover { background: var(--ink); color: #fff; }
.booking-form .booking-form-note { margin-top: 14px; margin-bottom: 0; max-width: none; font-size: 0.78rem; color: var(--ink-soft); }
@media (max-width: 860px) {
  .booking-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* Map consent overlay */
.map-consent {
  position: absolute; inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 30px;
}
.map-consent p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); max-width: 340px; }
.map-consent .map-alt { font-size: 0.86rem; color: var(--terracotta-dark); text-decoration: underline; text-underline-offset: 3px; }
.map-frame.loaded .map-consent { display: none; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 500;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.7);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* Cookie banner */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 600;
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--terracotta-dark); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .btn { flex: none; }

/* Footer */
footer.site {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 44px 0 28px;
  font-size: 0.86rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner > div { display: flex; flex-direction: column; gap: 6px; }
.footer-contact, .footer-legal { text-align: right; }
.footer-legal { flex-direction: row !important; gap: 18px; align-items: flex-start; }
footer.site a { text-decoration: none; }
footer.site a:hover { text-decoration: underline; text-underline-offset: 3px; }
footer.site .brand-small { font-family: "Fraunces", serif; color: #fff; font-size: 1.15rem; margin-bottom: 2px; }
.footer-copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 22px; }
  .footer-contact, .footer-legal { text-align: left; }
  .footer-legal { flex-wrap: wrap; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .nav-toggle {
    display: flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    cursor: pointer;
  }
  header.site.scrolled .nav-toggle { color: var(--ink); background: rgba(0,0,0,0.06); border-color: var(--line); }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 16px; right: 16px;
    background: var(--cream-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    gap: 16px;
    z-index: 99;
  }
  nav.main-nav.open a.nav-link { color: var(--ink) !important; }
}
