/* ===== Design tokens ===== */
:root {
  --bg: #f6f4ee;
  --bg-alt: #eeebe1;
  --ink: #22261f;
  --ink-soft: #4b5245;
  --muted: #767c6d;
  --forest: #37453a;
  --forest-dark: #232e26;
  --rust: #c1502e;
  --rust-dark: #a43f22;
  --line: #ddd8c9;
  --card: #ffffff;
  --radius: 4px;
  --max: 1120px;
  --shadow: 0 10px 30px -12px rgba(34, 38, 31, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--forest-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ===== Header / nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-dark);
  letter-spacing: 0.01em;
}

.brand span { color: var(--rust); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--rust); text-decoration: none; }

.nav-links a.active { color: var(--rust); }

.nav-cta {
  background: var(--forest);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.nav-cta:hover { background: var(--forest-dark); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--forest-dark);
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,18,0.15) 0%, rgba(18,22,16,0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 24px 56px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e7cfa8;
  margin-bottom: 14px;
}

.hero h1 { color: #fff; max-width: 16ch; }
.hero .lede { color: #eae7dd; max-width: 46ch; font-size: 1.1rem; }

.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-dark); text-decoration: none; }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: #fff; text-decoration: none; }

.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-dark); text-decoration: none; }

.btn-block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head p { font-size: 1.05rem; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Feature grid ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 780px) { .grid-3 { grid-template-columns: 1fr; } }

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.feature .icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: inline-block;
}

.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; font-size: 0.95rem; }

/* ===== Photo grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-grid .tall { grid-row: span 2; height: 100%; min-height: 532px; }

@media (max-width: 780px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .tall { min-height: 260px; grid-row: span 1; }
}
@media (max-width: 520px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* ===== Split layout ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.split.reverse .col-img { order: 2; }
@media (max-width: 820px) { .split.reverse .col-img { order: 0; } }

/* ===== Amenity list ===== */
.amenity-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.amenity-list li { padding-left: 26px; position: relative; color: var(--ink-soft); font-size: 0.97rem; }
.amenity-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--rust);
  border-radius: 50%;
}
@media (max-width: 480px) { .amenity-list { grid-template-columns: 1fr; } }

/* ===== Cards (area guide) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 780px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.card ul li { margin-bottom: 8px; }
.card ul li:last-child { margin-bottom: 0; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--forest);
  background: #e4e9dd;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ===== Map ===== */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===== Forms ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.97rem;
  background: #fff;
  color: var(--ink);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--forest);
}

textarea { resize: vertical; min-height: 110px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.checkbox-row input { width: auto; margin-top: 3px; }
.checkbox-row label { margin: 0; font-weight: 500; color: var(--ink-soft); font-size: 0.92rem; }

.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }

/* ===== Waiver ===== */
.waiver-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.waiver-box h2 { font-size: 1.3rem; margin-top: 1.6em; }
.waiver-box h2:first-child { margin-top: 0; }
.waiver-box ol, .waiver-box ul { color: var(--ink-soft); }
.waiver-box p { color: var(--ink-soft); }

.notice {
  border-left: 4px solid var(--rust);
  background: #fbeee7;
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.93rem;
  color: #6b3620;
  margin-bottom: 32px;
}
.notice strong { color: #5a2c19; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--forest-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d9dccf; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
.site-footer {
  background: var(--forest-dark);
  color: #cfd4c6;
  padding: 48px 0 28px;
  margin-top: 84px;
  font-size: 0.9rem;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #8f9686;
  font-size: 0.82rem;
}

/* ===== Page hero (interior pages) ===== */
.page-hero {
  padding: 64px 0 20px;
}
.page-hero .eyebrow { color: var(--rust); }
.page-hero .eyebrow-dark { color: var(--rust); }
.page-hero h1 { max-width: 22ch; }
.page-hero p { font-size: 1.08rem; max-width: 60ch; }
