:root {
  --ink: #20251f;
  --muted: #62695f;
  --paper: #fbfcf9;
  --soft: #eef2ec;
  --forest: #263a2b;
  --leaf: #57745b;
  --sun: #d79a43;
  --line: #d8ded5;
  --white: #fff;
  --shadow: 0 18px 44px rgba(25, 40, 29, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); max-width: 950px; }
h2 { font-size: clamp(30px, 4vw, 50px); max-width: 850px; }
h3 { font-size: 22px; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 252, 249, .95);
  border-bottom: 1px solid rgba(216, 222, 213, .9);
  backdrop-filter: blur(16px);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 14px; color: #38463b; }
.nav-links a:hover { color: var(--sun); }
.button, button {
  border: 0;
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
  padding: 12px 18px;
  min-height: 44px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.button.sun { background: var(--sun); color: #1f271f; }
.button.light { background: var(--white); color: var(--forest); border: 1px solid var(--line); }

.hero, .page-hero {
  color: #fff;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(17, 28, 19, .16), rgba(17, 28, 19, .78)),
    var(--hero) center / cover no-repeat;
}
.hero { min-height: 82vh; }
.page-hero { min-height: 50vh; }
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 22px 54px;
}
.eyebrow, .kicker {
  color: #f2c77c;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.kicker { color: #a46618; }
.lead { max-width: 800px; font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,.9); margin: 22px 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.facts { background: var(--forest); color: #edf4ec; }
.fact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
}
.fact-grid div { background: var(--forest); padding: 18px 20px; }
.fact-grid strong { display: block; color: #fff; font-size: 18px; }
.fact-grid span { color: #cad6ca; font-size: 13px; }

.section { padding: 84px 22px; }
.section.soft { background: var(--soft); }
.container { max-width: 1200px; margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: 48px; align-items: center; }
.media { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); background: #d5ddd4; }
.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.section p { font-size: 17px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { padding: 24px; }
.card p { margin-bottom: 0; }
.feature-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-list li { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 6px; padding: 13px 15px; color: #465347; }
.notice { border-left: 4px solid var(--sun); background: #fff8e9; padding: 16px 18px; color: #4e493c; margin-top: 22px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; }
.gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: span 2; }

.booking-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(420px, 1.1fr); gap: 44px; align-items: start; }
.booking-panel { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 26px; box-shadow: var(--shadow); }
.booking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; color: #405044; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: #fff;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.booking-summary { margin: 18px 0; padding: 16px; background: var(--soft); border-radius: 6px; }
.booking-summary strong { display: block; color: var(--forest); font-size: 20px; }
.small { font-size: 13px !important; color: var(--muted); }

.footer { background: #1f2d22; color: #edf4ed; padding: 54px 22px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer h3 { font-size: 18px; }
.footer a, .footer p, .footer small { color: #c8d3c9; }
.footer small { display: block; max-width: 1200px; margin: 30px auto 0; }
.mobile-book { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .brand span { font-size: 14px; }
  .hero { min-height: 76vh; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .booking-layout { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .feature-list, .booking-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img, .gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: auto; height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-book { display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 40; box-shadow: var(--shadow); }
}
