:root {
  --forest: #17261d;
  --forest-2: #243b2d;
  --cream: #f6f0e4;
  --sand: #d7c4a6;
  --clay: #a96845;
  --ink: #1d1b18;
  --muted: #6f675d;
  --white: #fffaf0;
  --shadow: 0 24px 70px rgba(0,0,0,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(246, 240, 228, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(29,27,24,.08);
}
.logo { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 700; }
nav { display: flex; gap: 22px; align-items: center; font-size: 14px; font-weight: 600; }
.nav-button, .button { border-radius: 999px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.nav-button, .primary { background: var(--forest); color: var(--white); }
.secondary { border: 1px solid rgba(29,27,24,.2); color: var(--ink); }
.hero {
  min-height: 760px;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 86px);
  display: grid; grid-template-columns: minmax(0, 1.1fr) 420px; gap: 40px; align-items: center;
  background:
    linear-gradient(120deg, rgba(23,38,29,.92), rgba(23,38,29,.55)),
    radial-gradient(circle at 75% 20%, rgba(215,196,166,.45), transparent 28%),
    linear-gradient(135deg, #425f48, #1f3828 55%, #0d1711);
  color: var(--white);
}
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--clay); margin: 0 0 16px; }
.hero .eyebrow, .cta .eyebrow { color: var(--sand); }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: .98; margin: 0; }
h1 { font-size: clamp(58px, 8vw, 112px); max-width: 900px; }
h2 { font-size: clamp(38px, 5vw, 68px); }
h3 { font-size: 34px; }
.hero-copy { max-width: 680px; font-size: 20px; line-height: 1.7; color: rgba(255,250,240,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .secondary { color: var(--white); border-color: rgba(255,250,240,.38); }
.hero-card { background: rgba(255,250,240,.12); border: 1px solid rgba(255,250,240,.22); border-radius: 34px; padding: 34px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.moon { width: 110px; height: 110px; border-radius: 50%; box-shadow: -26px 0 0 0 var(--sand); margin-left: 26px; margin-bottom: 30px; }
.hero-card h2 { font-size: 48px; margin-bottom: 20px; }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.hero-card li { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,250,240,.18); padding-bottom: 12px; }
.photo-grid { padding: 18px clamp(20px, 5vw, 86px); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; margin-top: -90px; position: relative; z-index: 5; }
.photo { min-height: 210px; border-radius: 28px; background: linear-gradient(135deg, #826a4e, #2d4936); display: flex; align-items: end; padding: 20px; color: var(--white); font-weight: 700; box-shadow: var(--shadow); overflow: hidden; }
.photo-large { grid-row: span 2; min-height: 436px; }
.photo span { background: rgba(0,0,0,.34); border-radius: 999px; padding: 8px 12px; }
.section { padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 86px); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.copy-block { font-size: 18px; line-height: 1.85; color: var(--muted); }
.cards { padding: 0 clamp(20px, 5vw, 86px) 90px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border-radius: 30px; padding: 34px; box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.card p { color: var(--muted); line-height: 1.7; }
.amenities-section { background: var(--forest); color: var(--white); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.amenities-grid span { background: rgba(255,250,240,.1); border: 1px solid rgba(255,250,240,.12); border-radius: 18px; padding: 18px; font-weight: 700; }
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.location-card { background: var(--white); padding: clamp(32px, 5vw, 60px); border-radius: 34px; }
.location-card p { color: var(--muted); line-height: 1.75; font-size: 18px; }
.map-panel { border-radius: 34px; min-height: 430px; background: radial-gradient(circle at 40% 30%, #d7c4a6, transparent 26%), linear-gradient(135deg, #69815e, #233d2c 65%, #111b15); color: var(--white); display: flex; align-items: end; padding: 30px; font-family: "Cormorant Garamond", serif; font-size: 42px; box-shadow: var(--shadow); }
.rules { padding-top: 0; }
.rule-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rule-grid div { background: var(--white); border-radius: 22px; padding: 22px; display: grid; gap: 8px; }
.rule-grid span { color: var(--muted); }
.cta { margin: 0 clamp(20px, 5vw, 86px) 80px; border-radius: 40px; padding: clamp(44px, 8vw, 90px); background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: var(--white); text-align: center; }
.cta h2 { max-width: 760px; margin: 0 auto 28px; }
footer { padding: 30px clamp(20px, 5vw, 86px); color: var(--muted); border-top: 1px solid rgba(29,27,24,.1); font-size: 14px; }
@media (max-width: 900px) {
  nav a:not(.nav-button) { display: none; }
  .hero, .split, .location { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 520px; }
  .photo-grid { grid-template-columns: 1fr; margin-top: 0; }
  .photo-large { min-height: 300px; }
  .cards, .amenities-grid, .rule-grid { grid-template-columns: 1fr; }
}
