:root {
  --bg: #efe7d3;
  --surface: #fffdf7;
  --surface-soft: #ece4d2;
  --text: #203126;
  --muted: #647162;
  --line: #ded6c4;
  --primary: #2f6b3f;
  --primary-dark: #245231;
  --accent: #e7a93d;
  --accent-light: #f8df9f;
  --shadow: 0 22px 56px rgba(48, 60, 43, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(47, 107, 63, 0.1), transparent 310px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.82), rgba(255, 253, 247, 0.28) 42%, rgba(255, 253, 247, 0.82)),
    radial-gradient(circle at 8% 10%, rgba(231, 169, 61, 0.18), transparent 260px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(255, 253, 247, 0.52) 520px),
    radial-gradient(circle at 50% 0, rgba(47, 107, 63, 0.08), transparent 380px);
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 74px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid rgba(47, 107, 63, 0.16);
  box-shadow: 0 8px 28px rgba(48, 60, 43, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;

  position: relative;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fffdf7;
  letter-spacing: 0;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);

  transition: transform 0.2s ease;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 1.13rem;
}

.brand:hover .brand-mark {
  transform: scale(1.05);
}

.tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);

  padding: 0.45rem 0.8rem;
  border-radius: 8px;

  background: var(--text, #2d2d2d);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.brand:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #314032;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #f3eddf;
  border-color: var(--line);
  outline: none;
}

.main-nav a.active {
  background: #edf3e5;
  border-color: rgba(47, 107, 63, 0.18);
  color: var(--primary-dark);
}

.main-nav .nav-cta {
  background: var(--primary);
  color: #fffdf7;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

main {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 0 clamp(44px, 6vw, 74px);
}

.hero-section {
  display: grid;
  align-items: center;
  min-height: clamp(390px, 48vw, 520px);
  overflow: hidden;
  margin-bottom: 0;
  padding: clamp(34px, 5vw, 64px) clamp(34px, 5vw, 64px) clamp(86px, 8vw, 112px);
  border: 1px solid rgba(255, 253, 247, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.04), rgba(255, 253, 247, 0)),
    linear-gradient(90deg, rgba(16, 34, 20, 0.84), rgba(16, 34, 20, 0.44) 54%, rgba(16, 34, 20, 0.16)),
    url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  box-shadow:
    0 24px 70px rgba(35, 48, 30, 0.2),
    inset 0 0 0 1px rgba(255, 253, 247, 0.12);
}

.hero-content {
  max-width: 620px;
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  line-height: 1;
}

.hero-content p:last-child {
  margin: 22px 0 0;
  max-width: 46ch;
  color: rgba(255, 253, 247, 0.88);
  font-size: 1.12rem;
  line-height: 1.7;
}

.booking-section {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 980px);
  margin: -56px auto clamp(54px, 7vw, 82px);
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr) minmax(210px, 1.15fr) minmax(170px, 0.85fr);
  align-items: center;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 233, 0.98));
  border: 1px solid rgba(222, 214, 196, 0.9);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(48, 60, 43, 0.13);
}

.booking-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.booking-field span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}

.booking-field input:invalid {
  color: var(--muted);
}

.date-divider {
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 800;
}

.search-button {
  min-height: 66px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #24301f;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.search-button:hover,
.search-button:focus-visible {
  background: #f0bd57;
  box-shadow: 0 12px 24px rgba(231, 169, 61, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 405px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 232, 0.94)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(48, 60, 43, 0.12);
}

.intro-section > *,
.booking-form > *,
.place-card > *,
.result-card > *,
.detail-hero > *,
.spot-detail > *,
.split-section > *,
.info-panel > *,
.content-grid > * {
  min-width: 0;
}

.intro-copy {
  max-width: 600px;
}

.intro-copy .eyebrow {
  color: var(--primary);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 1;
}

.intro-copy p:last-child {
  margin: 22px 0 0;
  max-width: 50ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.intro-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: clamp(280px, 34vw, 390px);
  overflow: hidden;
  margin-bottom: clamp(28px, 5vw, 48px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(16, 34, 20, 0.82), rgba(16, 34, 20, 0.42) 58%, rgba(16, 34, 20, 0.12)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  box-shadow: 0 22px 58px rgba(35, 48, 30, 0.18);
}

.places-hero {
  background:
    linear-gradient(90deg, rgba(16, 34, 20, 0.82), rgba(16, 34, 20, 0.44) 58%, rgba(16, 34, 20, 0.16)),
    url("https://images.unsplash.com/photo-1496545672447-f699b503d270?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.facilities-hero {
  background:
    linear-gradient(90deg, rgba(16, 34, 20, 0.82), rgba(16, 34, 20, 0.42) 58%, rgba(16, 34, 20, 0.12)),
    url("https://images.unsplash.com/photo-1510312305653-8ed496efae75?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.area-hero {
  background:
    linear-gradient(90deg, rgba(16, 34, 20, 0.8), rgba(16, 34, 20, 0.38) 58%, rgba(16, 34, 20, 0.12)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.info-hero {
  background:
    linear-gradient(90deg, rgba(16, 34, 20, 0.82), rgba(16, 34, 20, 0.42) 58%, rgba(16, 34, 20, 0.14)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.page-hero-content {
  max-width: 650px;
  color: #fffdf7;
}

.page-hero-content p:last-child {
  margin: 20px 0 0;
  max-width: 48ch;
  color: rgba(255, 253, 247, 0.9);
  font-size: 1.12rem;
  line-height: 1.7;
}

.places-layout {
  display: grid;
  gap: 22px;
}

.place-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 16px 42px rgba(48, 60, 43, 0.1);
}

.place-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.place-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 42px);
}

.place-label {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.place-card h2 {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.place-card-content > p:not(.place-label) {
  margin: 18px 0 0;
  max-width: 50ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.place-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.place-card li {
  position: relative;
  padding-left: 24px;
  color: #344535;
  font-weight: 700;
  line-height: 1.5;
}

.place-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.place-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fffdf7;
  font-weight: 800;
  text-align: center;
  white-space: normal;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.place-button:hover,
.place-button:focus-visible {
  background: var(--primary-dark);
  outline: none;
  transform: translateY(-1px);
}

.place-button.is-unavailable,
.place-button[disabled] {
  background: #b0b8a8;
  border-color: #b0b8a8;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.spot-unavailable-msg {
  margin: 0;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #fdecea;
  color: #b33a2e;
  font-size: 0.9rem;
  font-weight: 700;
}

.availability-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.09);
}

.search-summary p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.filter-form {
  display: grid;
  gap: 20px;
}

.filter-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-form legend {
  margin-bottom: 2px;
  color: var(--text);
  font-weight: 800;
}

.filter-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344535;
  font-weight: 700;
  line-height: 1.4;
}

.filter-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.price-inputs {
  display: grid;
  gap: 10px;
}

.price-inputs label {
  display: grid;
  gap: 6px;
}

.price-inputs span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-inputs input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.guest-filter-field {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.guest-filter-field svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
}

.guest-filter-field select {
  width: 100%;
  min-height: 44px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.clear-filters {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--primary-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.available-results {
  display: grid;
  gap: 18px;
}

.camping-map-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.09);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.map-heading h2 {
  max-width: none;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 13px;
  height: 13px;
  border-radius: 4px;
}

.legend-free {
  background: var(--primary);
}

.legend-booked {
  background: #a8aca3;
}

.camping-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(70px, 1fr));
  gap: 10px;
  min-height: 390px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 63, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(47, 107, 63, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 107, 63, 0.08) 1px, transparent 1px),
    #edf3e5;
  background-size: 25% 25%;
}

.map-feature,
.map-place {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  border-radius: var(--radius);
  text-align: center;
}

.map-feature {
  color: rgba(32, 49, 38, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-feature-road {
  grid-column: 2 / 3;
  grid-row: 1 / 5;
  background: #d8ccaf;
}

.map-feature-water {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  background: #b9d7cf;
}

.map-feature-facilities {
  grid-column: 4 / 5;
  grid-row: 4 / 5;
  background: #f8df9f;
}

.map-place {
  min-height: 74px;
  padding: 9px;
  border: 2px solid rgba(36, 82, 49, 0.18);
  background: var(--primary);
  color: #fffdf7;
  box-shadow: 0 10px 24px rgba(47, 107, 63, 0.16);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.map-place:nth-of-type(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.map-place:nth-of-type(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.map-place:nth-of-type(3) {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.map-place:nth-of-type(4) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.map-place:nth-of-type(5) {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.map-place:nth-of-type(6) {
  grid-column: 3 / 4;
  grid-row: 4 / 5;
}

.map-place strong {
  font-size: 1.08rem;
  line-height: 1;
}

.map-place span {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.map-place:hover,
.map-place:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(47, 107, 63, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.map-place.is-booked {
  border-color: rgba(78, 82, 76, 0.22);
  background: #b3b7ad;
  color: #f8f6ee;
  box-shadow: none;
  cursor: not-allowed;
  filter: grayscale(0.28);
}

.map-place.is-booked:hover,
.map-place.is-booked:focus-visible {
  background: #a8aca3;
  transform: none;
}

.treasure-map-page {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.treasure-map-intro {
  max-width: 760px;
}

.treasure-map-intro .eyebrow {
  color: var(--primary);
}

.treasure-map-intro h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.treasure-map-intro p:last-child {
  margin: 20px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.treasure-map-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 3vw, 28px);
  border: 1px solid rgba(109, 78, 42, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.62), rgba(248, 223, 159, 0.3)),
    #fbf3df;
  box-shadow:
    0 30px 90px rgba(48, 60, 43, 0.18),
    inset 0 0 0 1px rgba(255, 253, 247, 0.54);
}

.treasure-map-shell::before,
.treasure-map-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 0;
}

.treasure-map-shell::before {
  right: 22px;
  top: 0;
  width: 34%;
  height: 100%;
  background:
    repeating-linear-gradient(90deg, rgba(109, 78, 42, 0.07) 0 1px, transparent 1px 15px);
  opacity: 0.42;
}

.treasure-map-shell::after {
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 28px;
  background: linear-gradient(90deg, transparent, rgba(109, 78, 42, 0.12), transparent);
}

.treasure-legend {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.treasure-map {
  position: relative;
  display: block;
  min-height: auto;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(109, 78, 42, 0.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 22%, rgba(47, 107, 63, 0.2), transparent 18%),
    radial-gradient(circle at 80% 22%, rgba(38, 103, 125, 0.22), transparent 16%),
    radial-gradient(circle at 74% 76%, rgba(231, 169, 61, 0.26), transparent 15%),
    linear-gradient(135deg, rgba(100, 72, 39, 0.12) 0 2px, transparent 2px 32px),
    linear-gradient(45deg, rgba(255, 253, 247, 0.34), transparent 42%),
    #ead9b5;
  box-shadow:
    inset 0 0 42px rgba(89, 58, 25, 0.22),
    inset 0 0 0 12px rgba(255, 253, 247, 0.2);
}

.treasure-map::before {
  content: "";
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 2px dashed rgba(109, 78, 42, 0.26);
  border-radius: 14px;
}

.treasure-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49%, rgba(109, 78, 42, 0.11) 49% 51%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(109, 78, 42, 0.1) 49% 51%, transparent 51%);
  opacity: 0.55;
}

.map-compass {
  position: absolute;
  right: 5%;
  top: 6%;
  z-index: 3;
  display: grid;
  width: clamp(54px, 8vw, 82px);
  height: clamp(54px, 8vw, 82px);
  place-items: center;
  border: 1px solid rgba(109, 78, 42, 0.36);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.72);
  color: #6d4e2a;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(48, 60, 43, 0.12);
}

.map-compass::before,
.map-compass::after {
  content: "";
  position: absolute;
  background: rgba(109, 78, 42, 0.38);
}

.map-compass::before {
  width: 1px;
  height: 76%;
}

.map-compass::after {
  width: 76%;
  height: 1px;
}

.map-compass span {
  position: relative;
  z-index: 1;
}

.map-trail {
  position: absolute;
  left: 12%;
  top: 23%;
  z-index: 1;
  width: 72%;
  height: 54%;
  border-top: 8px dotted rgba(109, 78, 42, 0.42);
  border-radius: 50%;
  transform: rotate(10deg);
}

.treasure-map .map-feature {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(109, 78, 42, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.58);
  color: #67471f;
  box-shadow: 0 10px 22px rgba(48, 60, 43, 0.08);
}

.treasure-map .map-feature-road {
  left: 42%;
  top: 20%;
  width: 12%;
  height: 58%;
  border-radius: 999px;
  background: rgba(172, 139, 84, 0.45);
  writing-mode: vertical-rl;
}

.treasure-map .map-feature-water {
  right: 12%;
  top: 24%;
  width: 20%;
  height: 24%;
  border-radius: 54% 46% 50% 50%;
  background: #a8cfc4;
  color: #234e52;
}

.treasure-map .map-feature-facilities {
  right: 10%;
  bottom: 12%;
  width: 17%;
  height: 13%;
  background: #f2c96f;
}

.treasure-map .map-feature-forest {
  left: 9%;
  top: 10%;
  width: 24%;
  height: 15%;
  background: rgba(47, 107, 63, 0.26);
  color: #24472d;
}

.treasure-map .map-feature-gate {
  left: 11%;
  bottom: 10%;
  width: 17%;
  height: 12%;
  background: rgba(255, 253, 247, 0.7);
}

.treasure-place {
  position: absolute;
  z-index: 4;
  width: clamp(76px, 10vw, 116px);
  min-height: clamp(62px, 7vw, 86px);
  border-color: rgba(109, 78, 42, 0.24);
  background:
    linear-gradient(180deg, #3f8754, #2f6b3f);
  color: #fffdf7;
  box-shadow:
    0 16px 32px rgba(47, 107, 63, 0.2),
    inset 0 0 0 1px rgba(255, 253, 247, 0.2);
}

.treasure-place::after {
  content: "x";
  position: absolute;
  right: 8px;
  top: 3px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 1rem;
  font-weight: 900;
}

.treasure-place-1 {
  left: 15%;
  top: 28%;
}

.treasure-place-2 {
  left: 24%;
  top: 48%;
}

.treasure-place-3 {
  left: 32%;
  bottom: 15%;
}

.treasure-place-4 {
  right: 38%;
  top: 20%;
}

.treasure-place-5 {
  right: 29%;
  top: 55%;
}

.treasure-place-6 {
  right: 13%;
  top: 55%;
}

.photo-map-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 18px;
  background: #102018;
  box-shadow: 0 30px 90px rgba(16, 34, 20, 0.28);
}

.photo-map {
  position: relative;
  display: block;
  --p1-x: 26.7%;
  --p1-y: 17.2%;
  --p2-x: 27.8%;
  --p2-y: 28.0%;
  --p3-x: 29.6%;
  --p3-y: 41%;
  --p11-x: 92.5%;
  --p11-y: 47.9%;
  --p12-x: 92.5%;
  --p12-y: 58.2%;
  --bosrand-x: 32.1%;
  --bosrand-y: 11.9%;
  --speeltuin-x: 92.2%;
  --speeltuin-y: 75.6%;
  --sportveld-x: 86%;
  --sportveld-y: 89.4%;
  aspect-ratio: 1456 / 1056;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(4, 18, 10, 0.03), rgba(4, 18, 10, 0.12)),
    url("/images/camping-map-empty.png") center / cover,
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  box-shadow: none;
}

.photo-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 22%, transparent 80%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 30%, rgba(0, 0, 0, 0.14));
}

.photo-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.32);
}

.photo-map-legend {
  position: absolute;
  left: clamp(14px, 1.8vw, 26px);
  top: clamp(14px, 1.8vw, 26px);
  z-index: 5;
  display: grid;
  gap: 12px;
  width: min(190px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(102, 190, 114, 0.26);
  border-radius: 10px;
  background: rgba(11, 48, 31, 0.76);
  color: #fffdf7;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.map-date-picker {
  position: absolute;
  right: clamp(14px, 1.8vw, 26px);
  top: clamp(2px, 0.9vw, 14px);
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(360px, calc(100% - 240px));
  padding: 14px;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.map-date-picker label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.map-date-picker input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(36, 55, 41, 0.24);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  padding: 8px 10px;
}

.photo-map-legend strong {
  font-size: 1rem;
}

.photo-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.photo-map-legend i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.legend-available {
  background: #4fc164;
}

.legend-reserved {
  background: #e7b949;
}

.legend-occupied {
  background: #d95a35;
}

.legend-maintenance {
  background: #7f8781;
}

.photo-map-filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 8px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--radius);
  background: rgba(111, 157, 75, 0.72);
  color: #fffdf7;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.photo-map-filter-options {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.photo-map-filter-options[hidden] {
  display: none;
}

.photo-map-filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 247, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
}

.photo-map-filter-options input {
  width: 16px;
  height: 16px;
  accent-color: #4fc164;
}

.photo-map .map-compass {
  right: clamp(16px, 2vw, 34px);
  top: clamp(112px, 9vw, 138px);
  z-index: 5;
  border-color: rgba(255, 253, 247, 0.62);
  background: rgba(255, 253, 247, 0.88);
  color: #7a5528;
}

.photo-map-label {
  position: absolute;
  z-index: 4;
  color: rgba(255, 253, 247, 0.92);
  font-size: clamp(0.7rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.label-bosrand {
  left: var(--bosrand-x);
  top: var(--bosrand-y);
  min-width: 78px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 48, 31, 0.58);
  color: #fffdf7;
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  text-shadow: none;
  backdrop-filter: blur(4px);
}

.label-vijver {
  right: 25%;
  top: 19%;
}

.label-laan {
  left: 46%;
  top: 38%;
}

.label-sanitair {
  right: 1.3%;
  top: 31.3%;
  min-width: 92px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(214, 154, 55, 0.78);
  color: #332513;
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  text-shadow: none;
}

.label-receptie {
  left: 13.2%;
  bottom: 28.2%;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: #6c5131;
  text-shadow: none;
}

.label-entree {
  left: 2.6%;
  bottom: 21.6%;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.9);
  color: #332513;
  text-shadow: none;
}

.label-speeltuin {
  left: var(--speeltuin-x);
  top: var(--speeltuin-y);
  min-width: 86px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 48, 31, 0.58);
  color: #fffdf7;
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  text-shadow: none;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
}

.label-sportveld {
  left: var(--sportveld-x);
  top: var(--sportveld-y);
  min-width: 86px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 48, 31, 0.58);
  color: #fffdf7;
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  text-shadow: none;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
}

.photo-map-place {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 6;
  width: clamp(38px, 3.45vw, 52px);
  min-height: clamp(32px, 3vw, 43px);
  padding: 4px 6px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 6px;
  background: rgba(38, 96, 55, 0.9);
  color: #fffdf7;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 253, 247, 0.08);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.photo-map-place-1 {
  left: var(--p1-x);
  top: var(--p1-y);
}

.photo-map-place-2 {
  left: var(--p2-x);
  top: var(--p2-y);
}

.photo-map-place-3 {
  left: var(--p3-x);
  top: var(--p3-y);
}

.photo-map-place-11 {
  left: var(--p11-x);
  top: var(--p11-y);
}

.photo-map-place-12 {
  left: var(--p12-x);
  top: var(--p12-y);
}

.photo-map-place strong {
  font-size: clamp(0.68rem, 0.82vw, 0.82rem);
}

.photo-map-place span {
  margin-top: 2px;
  font-size: clamp(0.42rem, 0.54vw, 0.54rem);
}

.photo-map-place:hover,
.photo-map-place:focus-visible {
  background: rgba(47, 122, 68, 0.96);
  transform: translate(-50%, calc(-50% - 2px));
}

.photo-map-place.is-reserved {
  background: rgba(219, 178, 63, 0.94);
  color: #2f2817;
}

.photo-map-place.is-reserved:hover,
.photo-map-place.is-reserved:focus-visible {
  background: rgba(219, 178, 63, 0.94);
  transform: translate(-50%, -50%);
}

.photo-map-place.is-occupied {
  background: rgba(188, 67, 42, 0.94);
}

.photo-map-place.is-maintenance {
  background: rgba(100, 109, 104, 0.94);
}

.photo-map-place.is-booked {
  filter: none;
  cursor: not-allowed;
}

.photo-map-place.is-booked:hover,
.photo-map-place.is-booked:focus-visible {
  filter: none;
  transform: translate(-50%, -50%);
}

.photo-map-place.is-filtered-out {
  opacity: 0;
  pointer-events: none;
}

.results-heading {
  padding: 4px 2px 2px;
}

.results-heading h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.result-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.09);
}

.result-card[hidden] {
  display: none;
}

.result-card.is-booked {
  opacity: 0.68;
}

.result-card.is-booked .availability-badge {
  background: #eeeeea;
  color: #5f665c;
}

.result-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.result-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.availability-badge {
  margin: 0;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: #edf3e5;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.result-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.result-card p:not(.place-label) {
  margin: 14px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.result-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.result-card li {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #f3eddf;
  color: #344535;
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
}

.price-box {
  display: grid;
  gap: 2px;
}

.price-box span,
.price-box small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-box strong {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.price-box .total-price {
  color: var(--primary-dark);
}

.reservation-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(47, 107, 63, 0.18);
  border-radius: var(--radius);
  background: #fffaf0;
}

.reservation-panel[hidden] {
  display: none;
}

.reservation-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reservation-fields label {
  display: grid;
  gap: 6px;
}

.reservation-fields span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reservation-fields input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.reservation-total {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.reservation-total strong {
  color: var(--primary-dark);
}

.reservation-panel .place-button {
  width: fit-content;
  margin-top: 0;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.date-range-picker {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.date-range-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.date-range-heading > div:first-child {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.date-range-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.date-range-heading strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.date-range-controls {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  gap: 8px;
  flex: 0 0 auto;
}

.calendar-nav {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--primary-dark);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  background: #edf3e5;
  border-color: rgba(47, 107, 63, 0.26);
  color: var(--primary);
  outline: none;
}

.calendar-month {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.calendar-month h2 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.2;
  text-transform: capitalize;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    transform 120ms ease;
}

.calendar-day:not(:disabled):hover,
.calendar-day:not(:disabled):focus-visible {
  background: #edf3e5;
  border-color: rgba(47, 107, 63, 0.26);
  outline: none;
  transform: translateY(-1px);
}

.calendar-day:disabled {
  cursor: not-allowed;
  color: #b5aa94;
  background: #f4eee2;
  text-decoration: line-through;
}

.calendar-day.is-empty {
  pointer-events: none;
  background: transparent;
}

.calendar-day.is-in-range {
  border-color: rgba(47, 107, 63, 0.12);
  background: #edf3e5;
  color: var(--primary-dark);
}

.calendar-day.is-start,
.calendar-day.is-end {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffdf7;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 20px 52px rgba(48, 60, 43, 0.12);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 5vw, 54px);
}

.detail-copy h1 {
  max-width: none;
  font-size: clamp(2.35rem, 3.7vw, 3.55rem);
  line-height: 1.06;
}

.detail-copy .eyebrow {
  color: var(--primary);
}

.detail-copy p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.type-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.92);
  color: #344535;
  font-weight: 800;
}

.type-tabs a.active {
  background: var(--primary);
  color: #fffdf7;
  border-color: var(--primary);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spot-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 20px 52px rgba(48, 60, 43, 0.12);
}

.spot-detail > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.spot-detail-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(26px, 3.6vw, 42px);
}

.spot-detail-content h1 {
  max-width: none;
  font-size: clamp(2.3rem, 3.4vw, 3.25rem);
  line-height: 1.06;
  overflow-wrap: break-word;
}

.spot-detail-content > p:not(.place-label) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.spot-price {
  display: grid;
  gap: 3px;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf0;
}

.spot-price span,
.spot-price small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.spot-price strong {
  color: var(--text);
  font-size: 2.45rem;
  line-height: 1;
}

.spot-price small:last-child {
  color: var(--primary-dark);
}

.spot-features {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.spot-features li {
  position: relative;
  padding-left: 24px;
  color: #344535;
  font-weight: 800;
  line-height: 1.5;
}

.spot-features li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.spot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.spot-actions a {
  flex: 1 1 170px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--primary-dark);
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

.booking-confirmation,
.reservation-flow {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.confirmation-copy,
.flow-heading {
  max-width: 680px;
}

.confirmation-copy .eyebrow,
.flow-heading .eyebrow {
  color: var(--primary);
}

.confirmation-copy h1,
.flow-heading h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1;
}

.confirmation-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.confirmation-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 18px 46px rgba(48, 60, 43, 0.11);
}

.confirmation-panel img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.confirmation-details h2,
.reservation-summary h2 {
  max-width: none;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.booking-summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.booking-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(222, 214, 196, 0.86);
}

.booking-summary-list dt {
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 800;
}

.booking-summary-list dd {
  margin: 0;
  min-width: 0;
  color: var(--text);
  font-weight: 900;
  text-align: right;
  overflow-wrap: break-word;
  word-break: break-word;
}

.booking-summary-list .summary-calculation {
  align-items: flex-start;
  border-bottom: 0;
}

.booking-summary-list .summary-calculation dd {
  display: grid;
  gap: 4px;
  min-width: 190px;
}

.summary-calculation span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
}

.summary-calculation small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-calculation strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.summary-calculation .summary-total-line {
  margin-top: 5px;
  padding-top: 8px;
  border-top: 1px solid rgba(222, 214, 196, 0.95);
}

.summary-calculation .summary-total-line small,
.summary-calculation .summary-total-line strong {
  color: var(--text);
  font-size: 1rem;
}

.confirmation-actions,
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.82);
}

.progress-steps span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f3eddf;
  color: var(--muted);
  font-weight: 900;
}

.progress-steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.progress-steps .completed,
.progress-steps .active {
  border-color: rgba(47, 107, 63, 0.24);
  background: #edf3e5;
}

.progress-steps .completed span,
.progress-steps .active span {
  background: var(--primary);
  color: #fffdf7;
}

.progress-steps .completed p,
.progress-steps .active p {
  color: var(--primary-dark);
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
}

.reservation-summary,
.booking-flow-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 16px 38px rgba(48, 60, 43, 0.09);
}

.reservation-summary {
  position: sticky;
  top: 94px;
  padding: 24px;
}

.booking-flow-form {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.booking-flow-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-flow-form legend {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 900;
}

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

.booking-flow-form label {
  display: grid;
  gap: 7px;
  color: #344535;
  font-weight: 800;
}

.booking-flow-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-flow-form input,
.booking-flow-form select,
.booking-flow-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--text);
  font: inherit;
  font-weight: 750;
  outline: none;
}

.booking-flow-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.booking-flow-form input:focus,
.booking-flow-form select:focus,
.booking-flow-form textarea:focus {
  border-color: rgba(47, 107, 63, 0.5);
  box-shadow: 0 0 0 3px rgba(47, 107, 63, 0.12);
}

.electricity-option {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px !important;
  align-items: center;
  align-self: end;
  height: 48px;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  cursor: pointer;
}

.electricity-option input {
  width: 20px;
  min-height: 20px;
  padding: 0;
  accent-color: var(--primary);
}

.electricity-option > span {
  display: grid;
  gap: 2px;
  color: var(--text) !important;
  font-size: 0.92rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.electricity-option strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.electricity-option small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.electricity-option:has(input:checked) {
  border-color: rgba(47, 107, 63, 0.5);
  background: #eef7e8;
}

.terms-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  padding: 14px;
  border-radius: var(--radius);
  background: #f3eddf;
}

.terms-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.terms-row span {
  color: #344535 !important;
  font-size: 0.96rem !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.form-status {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(47, 107, 63, 0.22);
  border-radius: var(--radius);
  background: #edf3e5;
  color: var(--primary-dark);
  font-weight: 850;
  line-height: 1.5;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.simple-list article,
.info-panel article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.09);
}

.info-card img,
.info-panel article img {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 220px;
  object-fit: cover;
  margin: -26px -26px 16px -26px;
}

.simple-list article img {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  height: 200px;
  object-fit: cover;
  margin: -22px -22px 14px -22px;
}

.info-card {
  min-height: 190px;
  padding: 26px;
}

.info-card h2,
.simple-list h3,
.info-panel h2 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
}

.info-card p,
.simple-list p,
.info-panel p,
.split-section > div > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 232, 0.94)),
    var(--surface);
  box-shadow: 0 18px 46px rgba(48, 60, 43, 0.1);
}

.split-section .eyebrow {
  color: var(--primary);
}

/* Omgeving 2×2 grid */
.area-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  grid-template-areas:
    "text   wandelen"
    "fietsen dorp";
}

.area-card {
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.09);
}

.area-text  { grid-area: text; }
.area-card:nth-child(2) { grid-area: wandelen; }
.area-card:nth-child(3) { grid-area: fietsen; }
.area-card:nth-child(4) { grid-area: dorp; }

.area-card img {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  height: 200px;
  object-fit: cover;
  margin: -22px -22px 14px -22px;
}

.area-card h2,
.area-card h3 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
}

.area-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.simple-list {
  display: grid;
  gap: 14px;
}

.simple-list article {
  padding: 22px;
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel article {
  padding: 26px;
}

.info-panel span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section {
    margin-bottom: 0;
  }

  .booking-section {
    width: min(100% - 28px, 980px);
    margin-top: -42px;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .date-divider {
    display: none;
  }

  .guests-field,
  .search-button {
    grid-column: span 2;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

  .place-card {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .split-section,
  .area-grid,
  .info-panel,
  .availability-layout,
  .detail-hero,
  .detail-grid,
  .spot-detail,
  .confirmation-panel,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .reservation-summary {
    position: static;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .booking-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-legend {
    justify-content: flex-start;
  }

  .reservation-fields {
    grid-template-columns: 1fr;
  }

  .date-range-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .date-range-controls {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-nav {
    width: 100%;
  }

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

  .place-card img {
    min-height: 260px;
  }

  .detail-hero img {
    min-height: 280px;
  }

  .spot-detail > img {
    min-height: 320px;
  }

  h1,
  h2 {
    max-width: 13ch;
  }

  .detail-copy h1,
  .spot-detail-content h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-content,
  .page-hero-content {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
  }

  main {
    width: min(100% - 28px, 1120px);
    padding-top: 18px;
  }

  .site-header {
    padding: 14px;
    position: static;
  }

  .brand-name {
    font-size: 1rem;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .main-nav a {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .main-nav .nav-cta {
    grid-column: span 2;
  }

  .hero-section {
    min-height: 430px;
    padding: 24px 24px 76px;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.04), rgba(255, 253, 247, 0)),
      linear-gradient(180deg, rgba(16, 34, 20, 0.34), rgba(16, 34, 20, 0.88)),
      url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1000&q=80")
        center / cover;
  }

  h1 {
    max-width: 11ch;
    font-size: 2.75rem;
  }

  .detail-copy h1,
  .spot-detail-content h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .progress-steps {
    grid-template-columns: 1fr;
  }

  .guests-field,
  .search-button {
    grid-column: auto;
  }

  .intro-section {
    padding: 22px;
  }

  .page-hero {
    min-height: 340px;
    padding: 24px;
  }

  .place-card-content {
    padding: 22px;
  }

  .camping-map-panel {
    padding: 16px;
  }

  .camping-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(64px, auto));
    min-height: auto;
    gap: 8px;
    padding: 10px;
    background-size: 50% 16.66%;
  }

  .map-feature-road {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .map-feature-water {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .map-feature-facilities {
    grid-column: 1 / 2;
    grid-row: 6 / 7;
  }

  .map-place {
    min-height: 66px;
  }

  .map-place:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .map-place:nth-of-type(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .map-place:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .map-place:nth-of-type(4) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }

  .map-place:nth-of-type(5) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }

  .map-place:nth-of-type(6) {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
  }

  .treasure-map-page {
    gap: 18px;
  }

  .treasure-map-intro h1 {
    max-width: 10ch;
    font-size: 2.7rem;
  }

  .treasure-map-shell {
    margin-inline: -2px;
    padding: 12px;
  }

  .treasure-map {
    aspect-ratio: auto;
    min-height: 720px;
  }

  .treasure-map::before {
    inset: 12px;
  }

  .map-compass {
    right: 18px;
    top: 18px;
  }

  .map-trail {
    left: 22%;
    top: 18%;
    width: 45%;
    height: 66%;
    transform: rotate(76deg);
  }

  .treasure-map .map-feature-road {
    left: 47%;
    top: 21%;
    width: 18%;
    height: 56%;
  }

  .treasure-map .map-feature-water {
    right: 8%;
    top: 18%;
    width: 31%;
    height: 13%;
  }

  .treasure-map .map-feature-facilities {
    right: 8%;
    bottom: 7%;
    width: 32%;
    height: 9%;
  }

  .treasure-map .map-feature-forest {
    left: 7%;
    top: 9%;
    width: 40%;
    height: 10%;
  }

  .treasure-map .map-feature-gate {
    left: 8%;
    bottom: 7%;
    width: 32%;
    height: 9%;
  }

  .treasure-place {
    width: min(34vw, 118px);
    min-height: 70px;
  }

  .treasure-place-1 {
    left: 9%;
    top: 24%;
  }

  .treasure-place-2 {
    left: 9%;
    top: 38%;
  }

  .treasure-place-3 {
    left: 9%;
    top: 55%;
  }

  .treasure-place-4 {
    right: 9%;
    top: 34%;
  }

  .treasure-place-5 {
    right: 9%;
    top: 51%;
  }

  .treasure-place-6 {
    right: 9%;
    top: 68%;
  }

  .photo-map-shell {
    margin-inline: -14px;
    border-radius: 0;
  }

  .photo-map {
    aspect-ratio: auto;
    min-height: 720px;
    border-radius: 0;
    background-position: center !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    background-size: cover, cover, cover !important;
  }

  .photo-map-legend {
    left: 10px;
    top: 10px;
    width: 152px;
    gap: 8px;
    padding: 12px;
  }

  .photo-map-legend span {
    font-size: 0.76rem;
  }

  .photo-map-filter-toggle {
    min-height: 34px;
  }

  .photo-map .map-compass {
    top: 10px;
    width: 54px;
    height: 54px;
  }

  .photo-map-label {
    font-size: 0.66rem;
  }

  .label-bosrand {
    left: 36%;
    top: 12%;
    padding: 7px 10px;
  }

  .label-vijver {
    right: 12%;
    top: 22%;
  }

  .label-sanitair {
    right: 4%;
    top: 36%;
    padding: 7px 10px;
  }

  .label-receptie,
  .label-entree {
    padding: 7px 10px;
  }

  .photo-map-place {
    width: 46px;
    min-height: 40px;
    padding: 5px;
  }

  .photo-map-place strong {
    font-size: 0.72rem;
  }

  .photo-map-place span {
    font-size: 0.48rem;
  }

  .info-card,
  .simple-list article,
  .info-panel article {
    padding: 22px;
  }

  h2 {
    max-width: 11ch;
    font-size: 2.35rem;
  }

  .place-card h2 {
    max-width: none;
  }
}

/* Icoon + label component */
.icoon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icoon-label svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Datumkiezer op plekken-pagina */
.plekken-datumkiezer {
  display: grid;
  gap: 12px;
  padding: 18px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(219, 207, 183, 0.9);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(250, 244, 232, 0.96));
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.08);
}

.datumkiezer-velden {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.datumkiezer-veld {
  display: grid;
  gap: 7px;
}

.datumkiezer-veld span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.datumkiezer-veld input[type="date"] {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(36, 55, 41, 0.18);
  border-radius: 10px;
  background: #fffdf7;
  color: var(--text);
  font: inherit;
  font-weight: 850;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.datumkiezer-veld input[type="date"]:focus {
  outline: 3px solid rgba(79, 193, 100, 0.22);
  border-color: rgba(58, 129, 64, 0.62);
}

.datumkiezer-pijl {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 46px;
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.datumkiezer-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.datumkiezer-status.is-loaded {
  color: var(--text);
  font-weight: 850;
}

.datumkiezer-wis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(36, 55, 41, 0.16);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--primary-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.datumkiezer-wis:hover,
.datumkiezer-wis:focus-visible {
  background: #eef7e8;
  border-color: rgba(58, 129, 64, 0.34);
}

.datumkiezer-wis svg {
  width: 16px;
  height: 16px;
}

.progress-steps li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-steps li.completed {
    cursor: pointer;
}

@media (max-width: 760px) {
  .datumkiezer-velden {
    grid-template-columns: 1fr 1fr;
  }

  .datumkiezer-pijl {
    display: none;
  }

  .datumkiezer-wis {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .datumkiezer-velden {
    grid-template-columns: 1fr;
  }

  .datumkiezer-wis {
    grid-column: auto;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(47, 107, 63, 0.1);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 10px 0;
}

.footer-inner strong {
  color: var(--primary-dark);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
  outline: none;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(47, 107, 63, 0.14);
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 -8px 32px rgba(48, 60, 43, 0.1);
  font-size: 0.92rem;
  line-height: 1.6;
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  max-width: 720px;
  color: var(--text);
}

.cookie-banner a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--primary-dark);
}

.cookie-accept {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fffdf7;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.cookie-accept:hover,
.cookie-accept:focus-visible {
  background: var(--primary-dark);
  outline: none;
  transform: translateY(-1px);
}

/* Legal content styling (privacy, terms, cookies) */
.legal-content {
  display: grid;
  gap: 28px;
}

.legal-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 34px rgba(48, 60, 43, 0.09);
}

.legal-content h2 {
  max-width: none;
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 18px 0 6px;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--primary-dark);
}

.legal-content p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 14px;
  padding: 0 0 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

@media (max-width: 660px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .legal-content article {
    padding: 22px;
  }
}
