:root {
  --cream: #faf5ec;
  --cream-deep: #f3ead9;
  --ink: #2b2620;
  --ink-soft: #5d554a;
  --muted: #8a8072;
  --terra: #b8623f;
  --terra-dark: #96502f;
  --rose: #d98e73;
  --green: #3e5c4b;
  --line: #e4d9c4;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

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

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--terra);
  margin-bottom: 12px;
}

.section h2 { font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 16px; }
.section-lede { color: var(--ink-soft); font-size: 18px; margin-bottom: 36px; }

.prose p { margin-bottom: 18px; font-size: 17.5px; color: var(--ink-soft); }
.prose p.note { font-style: italic; color: var(--muted); }

.muted { color: var(--muted); }
.small { font-size: 13.5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 10px 20px; font-size: 14px; background: var(--terra); color: #fff; }
.btn-small:hover { background: var(--terra-dark); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn-light:hover { box-shadow: 0 10px 26px rgba(0,0,0,.24); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-outline { border-color: var(--terra); color: var(--terra-dark); margin-top: 8px; }
.btn-outline:hover { background: rgba(184,98,63,.08); }
.btn-big { padding: 16px 38px; font-size: 17px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(250,245,236,.94); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); }
.site-header.scrolled .wordmark, .site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .btn-small { box-shadow: none; }

.wordmark {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: #fff; text-decoration: none; letter-spacing: .01em;
}
.main-nav { display: flex; gap: 22px; margin-left: auto; }
.main-nav a { color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 500; opacity: .92; }
.main-nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.site-header .btn-small { margin-left: 4px; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.site-header.scrolled .menu-toggle { color: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,.72) 0%, rgba(20,14,8,.25) 45%, rgba(20,14,8,.15) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 0 28px 72px; max-width: 1120px; margin: 0 auto; width: 100%; }
.hero-kicker { text-transform: uppercase; letter-spacing: .28em; font-size: 13px; font-weight: 600; opacity: .85; margin-bottom: 10px; }
.hero-content h1 { font-size: clamp(56px, 10vw, 118px); font-weight: 500; letter-spacing: .01em; }
.hero-sub { font-size: clamp(17px, 2.4vw, 22px); opacity: .92; margin: 10px 0 22px; max-width: 640px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.badge {
  display: inline-block; padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 13.5px; font-weight: 600; backdrop-filter: blur(4px);
}
.badge-dark { background: var(--ink); border-color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- stats band ---------- */
.stats-band {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  background: var(--ink); color: #fff;
}
.stat { padding: 26px 38px; text-align: center; border-left: 1px solid rgba(255,255,255,.12); }
.stat:first-child { border-left: none; }
.stat strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 600; }
.stat span { font-size: 13px; opacity: .75; }

/* ---------- feature trio ---------- */
.feature-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.feature { border-top: 2px solid var(--terra); padding-top: 18px; }
.feature h3 { font-size: 23px; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 15px; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 14px;
}
.g-item { position: relative; overflow: hidden; border-radius: 10px; cursor: zoom-in; background: #e8ddc9; }
.g-item.g-wide { grid-column: span 2; grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.g-item:hover img { transform: scale(1.045); }
.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  color: #fff; font-size: 13px; font-weight: 500; opacity: 0; transition: opacity .25s ease;
}
.g-item:hover figcaption { opacity: 1; }

/* ---------- bedrooms ---------- */
.bed-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }
.bed-card { display: flex; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.bed-card img { width: 132px; height: 132px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.bed-card h3 { font-size: 22px; margin-bottom: 4px; }
.bed-card p { color: var(--ink-soft); font-size: 14.5px; }
.bed-card-text { justify-content: center; text-align: center; }

/* ---------- amenities ---------- */
.amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; margin-top: 36px; }
.amen-group h3 { font-size: 20px; color: var(--terra-dark); margin-bottom: 10px; font-family: var(--sans); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.amen-group ul { list-style: none; }
.amen-group li { padding: 7px 0 7px 26px; position: relative; font-size: 15px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.amen-group li::before { content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 700; }

/* ---------- location ---------- */
.loc-list { list-style: none; margin: 26px 0 30px; }
.loc-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; color: var(--ink-soft); }
.loc-list strong { color: var(--ink); }

/* ---------- reviews ---------- */
.review-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.reviews blockquote {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.45;
}
.reviews blockquote::before { content: "\201C"; display: block; font-size: 40px; color: var(--rose); line-height: .6; margin-bottom: 10px; }
.reviews cite { display: block; margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 13.5px; color: var(--muted); }

/* ---------- rules ---------- */
.rules-list { list-style: none; margin-top: 8px; }
.rules-list li { padding: 13px 0 13px 30px; position: relative; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink-soft); }
.rules-list li::before { content: "—"; position: absolute; left: 0; color: var(--terra); font-weight: 700; }

/* ---------- booking band ---------- */
.book-band { background: linear-gradient(135deg, #3e2c20 0%, #6b4429 55%, #96502f 100%); color: #fff; padding: 96px 0; text-align: center; }
.book-band h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 12px; }
.book-band p { opacity: .88; font-size: 17px; margin-bottom: 30px; }
.book-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.book-band .muted { color: rgba(255,255,255,.65); }

/* ---------- footer ---------- */
.site-footer { padding: 44px 0; text-align: center; border-top: 1px solid var(--line); }
.site-footer .wordmark { color: var(--ink); font-size: 22px; margin-bottom: 6px; }
.site-footer p { margin-bottom: 4px; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(12,9,6,.94);
  display: none; align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
.lb-img { max-width: min(92vw, 1400px); max-height: 82vh; object-fit: contain; border-radius: 6px; }
.lb-caption { color: #fff; margin-top: 14px; font-size: 15px; opacity: .85; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none; color: #fff;
  font-size: 44px; cursor: pointer; opacity: .8; padding: 10px 18px; line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 8px; right: 14px; }
.lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 6px; top: 50%; transform: translateY(-50%); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .feature-trio { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .bed-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 12px 28px 20px; gap: 4px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .main-nav a { color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-header .btn-small { display: none; }
  .section { padding: 64px 0; }
  .stat { padding: 18px 22px; }
}
