:root {
  --green-900: #1b3a2c;
  --green-700: #2c5a43;
  --cream: #f6f1e8;
  --sand: #efe4d2;
  --wood: #8a6844;
  --ink: #171717;
  --muted: #5a5a5a;
  --white: #fff;
  --shadow: 0 16px 40px rgba(27, 58, 44, 0.12);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Source Sans 3", system-ui, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246,241,232,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(27,58,44,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 16px; }
.logo { font-family: "Playfair Display", Georgia, serif; font-weight: 600; font-size: 1.2rem; color: var(--green-900); }
.logo span { display: block; font-size: .68rem; font-family: "Source Sans 3", sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--wood); font-weight: 600; }
nav ul { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
nav a { font-size: .95rem; font-weight: 600; color: var(--green-900); }
nav a.active, nav a:hover { color: var(--wood); }
.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--green-900); color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 600; border: 0; cursor: pointer; }
.btn:hover { background: var(--green-700); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid #fff; }
.hero { min-height: 88vh; display: grid; align-items: end; color: #fff;
  background: linear-gradient(180deg, rgba(27,58,44,.28), rgba(27,58,44,.62)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat; }
.hero-inner { padding: 88px 0 72px; max-width: 740px; }
.eyebrow { letter-spacing: .18em; text-transform: uppercase; font-size: .76rem; font-weight: 700; margin-bottom: 12px; }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(2.3rem, 5.6vw, 4.2rem); line-height: 1.08; margin-bottom: 16px; }
.hero p { font-size: 1.14rem; max-width: 560px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: -36px; position: relative; z-index: 2; }
.fact { background: #fff; border-radius: 14px; padding: 18px 16px; box-shadow: var(--shadow); text-align: center; }
.fact strong { display: block; font-family: "Playfair Display", serif; font-size: 1.35rem; color: var(--green-900); }
.fact span { font-size: .88rem; color: var(--muted); }
.section { padding: 84px 0; }
.section h2 { font-family: "Playfair Display", serif; font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--green-900); margin-bottom: 14px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 680px; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card h3 { font-family: "Playfair Display", serif; color: var(--green-900); margin-bottom: 8px; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 18px; list-style: none; }
.amenity-list li::before { content: "✦ "; color: var(--wood); }
.photo-ph {
  background: repeating-linear-gradient(135deg, #e8dcc8 0 12px, #efe6d6 12px 24px);
  border: 2px dashed #8a6844; border-radius: 14px; min-height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px; color: var(--green-900);
}
.photo-ph strong { font-family: "Playfair Display", serif; font-size: 1.15rem; }
.photo-ph code { background: #fff; padding: 2px 8px; border-radius: 6px; font-size: .85rem; margin-top: 6px; }
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 200px; gap: 12px; }
.gallery > * { height: 100%; min-height: 200px; }
.gallery > :first-child { grid-row: 1 / span 2; min-height: 412px; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--sand); }
.price-table th { background: var(--green-900); color: #fff; }
.form { display: grid; gap: 12px; background: #fff; padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form input, .form textarea { width: 100%; padding: 12px 14px; border: 1px solid #d9d0c0; border-radius: 10px; font: inherit; background: var(--cream); }
.form label { font-weight: 600; font-size: .92rem; }
footer { background: var(--green-900); color: #e7eee8; padding: 48px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.legal { margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; opacity: .85; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.4rem; color: var(--green-900); }
@media (max-width: 860px) {
  .facts, .grid-2, .grid-3, .footer-grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 200px; }
  .gallery > :first-child { grid-row: auto; min-height: 220px; }
  nav ul { display: none; }
  .menu-toggle { display: block; }
  nav.open ul { display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 78px; background: var(--cream); padding: 16px 20px 22px; }
}
