
:root {
  --paper: #f3efe4;
  --paper-2: #e8e0d0;
  --ink: #1c2420;
  --ink-soft: #4a554c;
  --gulf: #16343c;
  --gulf-deep: #0e2328;
  --foam: #f7f4ec;
  --coral: #c45c3e;
  --coral-deep: #9e3f26;
  --sage: #6d7d62;
  --line: rgba(28, 36, 32, 0.12);
  --shadow: 0 24px 60px rgba(14, 35, 40, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); }
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  text-decoration: none;
}
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 0.92rem; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: var(--coral-deep); }
.btn-gulf { background: var(--gulf); color: var(--foam); }
.btn-ghost {
  background: transparent;
  color: var(--foam);
  border: 1px solid rgba(247, 244, 236, 0.35);
}
.btn-ink { background: var(--ink); color: var(--foam); }

.hero {
  min-height: calc(100vh - 72px);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(14,35,40,0.15), rgba(14,35,40,0.62)),
    var(--hero, linear-gradient(135deg, #2a5a62, #16343c 55%, #c45c3e));
  background-size: cover;
  background-position: center;
  color: var(--foam);
  display: flex;
  align-items: flex-end;
}
.hero-inner { padding: 48px 40px 40px; width: 100%; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  opacity: 0.8;
  margin: 0 0 10px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  max-width: 14ch;
}
.hero p { max-width: 38ch; font-size: 1.15rem; margin: 0 0 28px; color: rgba(247,244,236,0.88); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin: 28px 0 72px;
}
.stat { background: var(--paper); padding: 22px 18px; }
.stat b { display: block; font-family: "Fraunces", serif; font-size: 1.6rem; font-weight: 560; }
.stat span { color: var(--ink-soft); font-size: 0.88rem; }

h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  font-weight: 560;
  margin: 0 0 14px;
}
.lede { color: var(--ink-soft); max-width: 46ch; margin: 0 0 32px; font-size: 1.05rem; }

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  margin-bottom: 80px;
}
.gallery a {
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper-2);
  position: relative;
}
.gallery a:first-child { grid-row: 1 / span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .more {
  position: absolute;
  inset: auto 14px 14px auto;
  background: rgba(28,36,32,0.78);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 88px;
}
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 0; margin: 28px 0 0; list-style: none; }
.amenities li { padding-left: 18px; position: relative; color: var(--ink-soft); }
.amenities li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  position: absolute;
  left: 0; top: 0.55em;
}

.book-card {
  background: var(--gulf);
  color: var(--foam);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 92px;
}
.book-card h3 { font-family: "Fraunces", serif; font-size: 1.7rem; margin: 0 0 8px; }
.book-card p { color: rgba(247,244,236,0.78); margin: 0 0 20px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
label { display: block; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; opacity: 0.7; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(247,244,236,0.16);
  background: rgba(14,35,40,0.35);
  color: var(--foam);
  border-radius: 12px;
  padding: 12px;
}
textarea { min-height: 90px; resize: vertical; }
.full { grid-column: 1 / -1; }
.book-card .btn { width: 100%; margin-top: 8px; }
.airbnb-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: rgba(247,244,236,0.72);
  font-size: 0.92rem;
}
.save-note {
  background: rgba(247,244,236,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.compare {
  background: var(--gulf-deep);
  color: var(--foam);
  border-radius: 28px;
  padding: 48px 40px;
  margin-bottom: 88px;
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.col {
  background: rgba(247,244,236,0.05);
  border-radius: 18px;
  padding: 24px;
}
.col.win { outline: 1px solid rgba(196,92,62,0.7); }
.col h3 { margin: 0 0 12px; font-family: "Fraunces", serif; }
.col ul { margin: 0; padding-left: 18px; color: rgba(247,244,236,0.8); }

.place { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 88px; align-items: center; }
.map {
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper-2);
}
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.place-list { list-style: none; padding: 0; margin: 20px 0 0; }
.place-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,35,40,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 40;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 86vh; max-width: 92vw; border-radius: 12px; }

@media (max-width: 800px) {
  .nav-links a { display: none; }
  .stats, .gallery, .split, .compare-grid, .place, .fields { grid-template-columns: 1fr; }
  .gallery { grid-template-rows: 220px repeat(4, 160px); }
  .gallery a:first-child { grid-row: auto; }
  .hero-inner { padding: 32px 22px; }
  .compare { padding: 28px 20px; }
  .book-card { position: static; }
}


:root {
  --ldg-bnb-background: #ffffff;
  --ldg-bnb-border-radius: 14px;
  --ldg-bnb-box-shadow: none;
  --ldg-bnb-padding: 14px;
  --ldg-bnb-input-background: #ffffff;
  --ldg-bnb-button-border-radius: 999px;
  --ldg-bnb-color-primary: #c45c3e;
  --ldg-bnb-color-primary-lighter: #d97a5e;
  --ldg-bnb-color-primary-darker: #9e3f26;
  --ldg-bnb-color-primary-contrast: #ffffff;
  --ldg-component-calendar-cell-selection-bg-color: #c45c3e;
  --ldg-component-calendar-cell-selection-color: #ffffff;
  --ldg-component-calendar-cell-selected-bg-color: #d97a5e;
  --ldg-component-calendar-cell-selected-color: #ffffff;
  --ldg-bnb-font-family: inherit;
}
#lodgify-book-now-box { width: 100%; }
#lodgify-widget { margin-top: 8px; min-height: 220px; }

#book, #direct, #house, #photos, #place, #hero {
  scroll-margin-top: 88px;
}
a.col {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.col.win:hover {
  outline-color: var(--coral);
}
.book-here-btn {
  margin-top: 18px;
}
