:root {
  --pine: #183c38;
  --deep: #102b2b;
  --cream: #f8f2e8;
  --paper: #fffdf8;
  --ink: #20302d;
  --muted: #677771;
  --sunset: #d67649;
  --lake: #6caeb4;
  --line: rgba(24, 60, 56, .16);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Nunito Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { color: var(--ink); background: var(--paper); font-family: var(--sans); }
a { color: inherit; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 10000; padding: .75rem 1rem; background: #fff; }
.navbar { background: rgba(16, 43, 43, .92); backdrop-filter: blur(12px); }
.navbar-brand { color: #fff; font-family: var(--serif); font-size: 1.35rem; }
.navbar-brand:hover { color: #fff; }
.navbar .nav-link { color: rgba(255,255,255,.8); }
.navbar .nav-link:hover, .navbar .nav-link:focus { color: #fff; }
.hero {
  min-height: 92vh; position: relative; display: flex; align-items: end; color: #fff;
  background: linear-gradient(90deg, rgba(10,34,35,.9) 0%, rgba(10,34,35,.48) 48%, rgba(10,34,35,.12) 100%),
    url("../images/lake-view-living-room.webp") center/cover no-repeat;
}
.hero-content { max-width: 790px; padding: 9rem 0 6rem; }
.eyebrow { color: var(--sunset); font-size: .77rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { color: #ffd2b8; }
h1, h2, h3 { font-family: var(--serif); }
.hero h1 { font-size: clamp(3.3rem, 8vw, 7.2rem); line-height: .92; text-wrap: balance; }
.hero .lead { max-width: 690px; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.65; }
.btn-sunset { background: var(--sunset); border-color: var(--sunset); color: #fff; font-weight: 900; }
.btn-sunset:hover { background: #be5d34; border-color: #be5d34; color: #fff; }
.quick-facts { margin-top: -2.2rem; position: relative; z-index: 2; }
.facts-wrap { background: var(--cream); box-shadow: 0 18px 50px rgba(18,45,42,.12); border: 1px solid var(--line); }
.fact { padding: 1.4rem .75rem; text-align: center; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact i { color: var(--sunset); }
.fact strong { display: block; font-size: 1.08rem; }
.fact span { color: var(--muted); font-size: .9rem; }
.section-space { padding: 6.5rem 0; }
.section-cream { background: var(--cream); }
.section-deep { background: var(--deep); color: #fff; }
.display-heading { font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1; }
.lead-copy { color: var(--muted); font-size: 1.13rem; line-height: 1.8; }
.section-deep .lead-copy { color: rgba(255,255,255,.72); }
.feature-card { height: 100%; padding: 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; }
.feature-card i { color: var(--sunset); font-size: 1.5rem; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 15rem; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 1rem; background: #dfe6e4; }
.gallery figure:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery figure:nth-child(2) { grid-column: span 5; }
.gallery figure:nth-child(3) { grid-column: span 5; }
.gallery figure:nth-child(4), .gallery figure:nth-child(5), .gallery figure:nth-child(6) { grid-column: span 4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.review { height: 100%; padding: 2rem; border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; }
.stars { color: #ffd07a; letter-spacing: .18em; }
.host-photo { width: 100%; max-height: 38rem; object-fit: cover; border-radius: 1rem; }
.policy { padding: 1rem 0; border-top: 1px solid var(--line); }
.policy i { color: var(--sunset); width: 1.5rem; }
.inquiry-card { background: #fff; border-radius: 1rem; padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 24px 70px rgba(0,0,0,.25); color: var(--ink); }
.form-control { padding: .85rem 1rem; border-color: #ccd5d2; }
.footer { color: rgba(255,255,255,.7); background: #0b2222; }
.footer a { color: rgba(255,255,255,.86); }
.booking-note { font-size: .87rem; color: var(--muted); }
@media (max-width: 767.98px) {
  .hero { min-height: 84vh; background-position: 63% center; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .section-space { padding: 4.5rem 0; }
  .gallery { display: block; }
  .gallery figure { height: 17rem; margin-bottom: 1rem; }
}

