:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #1e2a2f;
  --muted: #50606a;
  --brand: #1d6b56;
  --brand-dark: #144b3d;
  --accent: #d7a44d;
  --border: #dfe5e8;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem; }
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.logo { font-weight: 700; color: var(--brand-dark); text-decoration: none; }
.nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.nav a { color: var(--text); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--brand); }
.cta-link { color: var(--brand) !important; }
.menu-toggle { display: none; }
.hero { background: linear-gradient(180deg, #e9f3ef 0%, #f7f4ef 100%); padding: 4rem 0; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.hero-photo { border-radius: 12px; overflow: hidden; box-shadow: 0 12px 28px rgba(16,24,40,.14); border:1px solid var(--border); margin-top: 1rem; }
.hero-photo img, .gallery-card img { width:100%; height:auto; display:block; }
.gallery { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:1rem; margin-top:1rem; }
.gallery-card { background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.gallery-card p { margin:.7rem .9rem 1rem; color:var(--muted); font-size:.95rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .07em; color: var(--brand-dark); font-weight: 700; font-size: .8rem; }
h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; margin-top: .25rem; }
.lead { color: var(--muted); font-size: 1.1rem; }
.hero-card, .card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem; box-shadow: 0 8px 24px rgba(16,24,40,.06); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.btn { display: inline-block; background: var(--brand); color: #fff; text-decoration: none; padding: .72rem 1rem; border-radius: 8px; font-weight: 700; }
.btn:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; color: var(--brand-dark); border: 1px solid var(--brand-dark); }
.section { padding: 3rem 0; }
.section.alt { background: #f0f5f7; }
.cards { display: grid; gap: 1rem; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.prose { max-width: 800px; }
.amenity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 1rem; }
.amenity-grid > div { background: #fff; border: 1px solid var(--border); padding: .75rem; border-radius: 8px; }
.notice a { color: #8b1e1e; font-weight: 700; }
.cta { background: #1b2f35; color: #fff; text-align: center; }
.cta .btn { background: var(--accent); color: #1c1f24; }
.site-footer { border-top: 1px solid var(--border); background: #fff; padding: 1.5rem 0; font-size: .95rem; }
@media (max-width: 800px) {
  .menu-toggle { display: inline-block; border: 1px solid var(--border); background: #fff; padding: .4rem .7rem; border-radius: 8px; }
  .nav { display: none; width: 100%; flex-direction: column; padding-bottom: .75rem; }
  .nav.open { display: flex; }
  .hero-grid, .three-up, .two-col, .amenity-grid, .gallery { grid-template-columns: 1fr; }
}
