:root {
  --forest: #2b6624;
  --moss: #4a8c3f;
  --sage: #7db56b;
  --fern: #b8d9a8;
  --sun: #f5921e;
  --amber: #e07010;
  --honey: #fac77a;
  --cream: #fbf7ef;
  --bark: #5c3d1e;
  --stone: #8b8478;
  --white: #ffffff;
  --ink: #1c2820;
  --success: #2f8f46;
  --error: #b3202e;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
  --font-script: 'Caveat', cursive;

  --container: min(1120px, 92vw);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 5rem;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);

  --transition-fast: 0.18s ease;
  --transition: 0.24s ease;
}

* {
  box-sizing: border-box;
}

.card h2 {
  color: var(--forest);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

body.access-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 0;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  background: radial-gradient(circle at 15% 20%, rgba(74, 140, 63, 0.35), transparent 38%),
    radial-gradient(circle at 85% 85%, rgba(245, 146, 30, 0.2), transparent 40%), rgba(16, 24, 19, 0.9);
  backdrop-filter: blur(6px);
}

.access-gate-panel {
  width: min(560px, 100%);
  background: linear-gradient(150deg, #fffdf8 0%, #f7efe1 100%);
  border: 1px solid rgba(43, 102, 36, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  padding: clamp(1.4rem, 2vw, 2rem);
}

.access-gate-kicker {
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--forest);
  font-weight: 700;
}

.access-gate-panel h1 {
  margin-bottom: var(--space-2);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--ink);
}

.access-gate-text {
  color: #334338;
  margin-bottom: var(--space-4);
}

.access-gate-form {
  display: grid;
  gap: var(--space-3);
}

.access-gate-error {
  min-height: 1.2em;
  margin: 0;
  color: var(--error);
  font-weight: 700;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

.section-head {
  margin-bottom: var(--space-5);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--forest);
  margin-bottom: var(--space-2);
}

.kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--sun);
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-3);
  line-height: 1.2;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

p {
  margin: 0 0 var(--space-3);
}

.lead {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 66ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn {
  border: 0;
  padding: 0.82rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.btn:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(245, 146, 30, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.btn-primary:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(43, 102, 36, 0.07);
  color: var(--forest);
  border: 2px solid rgba(43, 102, 36, 0.65);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: rgba(43, 102, 36, 0.14);
  border-color: var(--forest);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.site-header.scrolled {
  box-shadow: var(--shadow-xs);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  font-family: var(--font-display);
  text-decoration: none;
  font-size: 1.35rem;
  color: var(--forest);
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--stone);
}

.nav-toggle {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.burger-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.burger-panel.open {
  display: block;
}

.burger-list {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.burger-list li {
  width: 100%;
}

.burger-list .nav-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
}

.burger-list .btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.burger-mobile {
  display: none;
}

.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
  color: var(--forest);
}

.nav-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0.5rem 0;
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
}

.nav-cta {
  display: none;
}

@media (min-width: 1025px) {
  .nav-main {
    display: flex;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .burger-panel {
    left: auto;
    right: max(1rem, calc((100vw - var(--container)) / 2));
    width: min(320px, calc(100vw - 2rem));
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    top: 78px;
    overflow: hidden;
    z-index: 220;
  }

  .burger-panel .container {
    width: 100%;
    margin: 0;
    padding-inline: 0.85rem;
  }

  .burger-list {
    padding: 0.75rem 0 0.85rem;
    gap: 0.55rem;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background: radial-gradient(ellipse 55% 38% at 18% 84%, rgba(74, 140, 63, 0.52), transparent 70%), radial-gradient(ellipse 40% 28% at 85% 18%, rgba(245, 146, 30, 0.2), transparent 60%);
}

.hero::after {
  background: linear-gradient(rgba(28, 40, 32, 0.58), rgba(28, 40, 32, 0.58));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero:hover .hero-media {
  transform: scale(1.08);
}

.hero-inner {
  min-height: min(84vh, 760px);
  display: grid;
  align-items: end;
  padding: 7rem 0 4.5rem;
}

.hero-card {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(250, 199, 122, 0.45);
  color: var(--honey);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero .hero-card h1 {
  color: var(--white);
}

.hero p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: var(--space-4) 0 var(--space-5);
}

.hero-meta span {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  color: var(--forest);
}

.usp {
  background: linear-gradient(160deg, #fff 40%, #f8f3e8);
}

.stat {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.amenities {
  columns: 2;
  gap: var(--space-4);
  margin: 0;
  padding-left: 1.1rem;
}

.amenities li {
  margin-bottom: 0.55rem;
  break-inside: avoid;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-item {
  grid-column: span 4;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item.large {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.review {
  border-left: 4px solid var(--sun);
}

.review footer {
  margin-top: 0.8rem;
  color: var(--stone);
  font-size: 0.92rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.65rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 0.4rem 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(43, 102, 36, 0.35);
  color: var(--forest);
  font-weight: 800;
  line-height: 1;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.faq-item[open] summary::after {
  content: '-';
  background: rgba(43, 102, 36, 0.1);
}

.faq-item summary:hover::after {
  background: rgba(43, 102, 36, 0.1);
}

.faq-item p {
  margin: 0.75rem 0 0.5rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.75;
  padding: 0.75rem 1rem;
  background: rgba(43, 102, 36, 0.05);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.location-box {
  display: grid;
  gap: var(--space-3);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-md);
}

.form {
  display: grid;
  gap: var(--space-3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  display: block;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
}

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

.form-note {
  color: var(--stone);
  font-size: 0.9rem;
}

.form-error {
  color: var(--error);
  font-size: 0.84rem;
  margin-top: 0.25rem;
}

.form-success {
  color: var(--success);
  background: rgba(47, 143, 70, 0.08);
  border: 1px solid rgba(47, 143, 70, 0.25);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-6) 0;
}

.cta-band-card {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-band-card .container {
  padding-inline: clamp(1rem, 2vw, 1.6rem);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}

.site-footer {
  background: #101813;
  color: rgba(255, 255, 255, 0.86);
  padding: var(--space-6) 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover {
  color: var(--honey);
}

.legal-page .section {
  padding-top: 3.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 7, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 1.4rem;
}

.lightbox.open {
  display: flex;
}

.lightbox figure {
  margin: 0;
  max-width: min(1000px, 95vw);
}

.lightbox img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
}

.lightbox figcaption {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .burger-mobile {
    display: block;
  }

  .nav-book-btn {
    display: none;
  }

  .hero-inner {
    min-height: 74vh;
    padding-top: 6rem;
  }

  .grid-2,
  .grid-3,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 12;
  }

  .gallery-item img {
    height: 210px;
  }

  .amenities {
    columns: 1;
  }
}

/* ── Price table ─────────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-3);
  font-family: var(--font-body);
}

.price-table th,
.price-table td {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--fern);
  font-size: 0.95rem;
}

.price-table th {
  background: var(--fern);
  color: var(--ink);
  font-weight: 700;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--bark);
}

/* ── Checkbox label (contact form) ──────────────────────────── */
.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: start;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  margin-top: 0.22rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--moss);
  flex-shrink: 0;
}

.checkbox-text {
  display: block;
}

.checkbox-text a {
  color: var(--forest);
  font-weight: 700;
}

/* ── Location map ────────────────────────────────────────────── */
.location-box .map-frame {
  margin-top: var(--space-3);
}

/* ── FAQ list spacing ────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Hero small variant ──────────────────────────────────────── */
.hero-small .hero-media {
  max-height: 420px;
}

.hero-small .hero-inner {
  padding-block: var(--space-5);
}

