/* ===== RESET & BASE ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-dark);
  font-family: 'Hanken Grotesk', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: #cfe0d4; }
a { color: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --accent: #5d8270;
  --accent-hover: #4a6b5b;
  --accent-hover-on-dark: #6f9583;
  --text-dark: #2b3328;
  --bg-body: #faf7f0;
  --bg-light: #f4efe3;
  --bg-dark: #2b3328;
  --text-on-dark: #d7ddd2;
  --border-1: #e6dfd0;
  --border-2: #ece5d6;
  --border-3: #ebe4d4;
  --border-4: #e7e0d0;
  --text-secondary: #555e50;
  --text-secondary-2: #6b7264;
  --text-body-muted: #5c6457;
  --link-color: #4a5347;
  --text-faint: #93998c;
  --text-faint-2: #9a9079;
  --text-faint-3: #8a9183;
}

/* ===== LANGUAGE SWITCHING ===== */
.de, .en { display: none; }
[data-lang="de"] .de { display: revert; }
[data-lang="de"] .nl, [data-lang="de"] .en { display: none; }
[data-lang="en"] .en { display: revert; }
[data-lang="en"] .nl, [data-lang="en"] .de { display: none; }
[data-lang="nl"] .nlbtn, [data-lang="de"] .debtn, [data-lang="en"] .enbtn {
  color: var(--text-dark) !important;
  font-weight: 700 !important;
}

/* ===== ANIMATION ===== */
@keyframes zwUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.entrance { animation: zwUp 0.9s ease both; }
.entrance-slow { animation: zwUp 1.1s ease both; }
.entrance-header { animation: zwUp 0.8s ease both; }

/* ===== TYPOGRAPHY DEFAULTS ===== */
h1, h2, h3 { font-family: 'Spectral', serif; font-weight: 400; margin: 0; }

/* ===== ASPECT RATIO UTILITIES ===== */
.aspect-hero { aspect-ratio: 21/9; }
.aspect-portrait { aspect-ratio: 4/5; }
.aspect-card { aspect-ratio: 16/11; }
.aspect-gallery { aspect-ratio: 3/4; }
.aspect-hero, .aspect-portrait, .aspect-card, .aspect-gallery {
  overflow: hidden;
  border-radius: 18px;
}
.aspect-hero img, .aspect-portrait img, .aspect-card img, .aspect-gallery img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fbfaf5;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary--on-dark:hover { background: var(--accent-hover-on-dark); }
.btn-primary--block { width: 100%; text-align: center; }
.btn-primary--small { padding: 9px 18px; font-size: 14px; }

.btn-outline {
  background: none;
  color: var(--text-dark);
  border: 1px solid #cfc7b6;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline--on-dark {
  color: #eef0e9;
  border: 1px solid #4d574a;
  padding: 14px 28px;
}
.btn-outline--on-dark:hover { border-color: #8fae9b; }

.text-link {
  text-decoration: none;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 3px;
}

/* ===== SITE HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(250,247,240,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-1);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  color: var(--text-dark);
}
.brand-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint-3);
  font-weight: 600;
}
.brand-name {
  font-family: 'Spectral', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 32px);
  flex-wrap: wrap;
}
.nav-link {
  text-decoration: none;
  color: var(--link-color);
  font-size: 14.5px;
  font-weight: 500;
}
.nav-link:hover { color: var(--accent); }
.nav-link.is-active {
  color: var(--accent);
  font-weight: 700;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: clamp(6px, 1.5vw, 16px);
  border-left: 1px solid #ddd5c5;
  font-size: 13px;
}
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: #aab0a2;
  padding: 2px;
}
.lang-sep { color: #d3cbbb; }

/* ===== SITE FOOTER ===== */
.site-footer {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 64px) 36px;
}
.site-footer--light { background: var(--bg-light); border-top: 1px solid var(--border-2); }
.site-footer--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(28px, 4vw, 52px);
}
.footer-brand-col { grid-column: 1 / -1; max-width: 30em; }
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 16px;
}
.footer-brand-name { font-family: 'Spectral', serif; font-size: 24px; font-weight: 600; }
.footer-tagline { font-size: 14.5px; line-height: 1.65; margin: 0; }
.site-footer--light .footer-brand-eyebrow { color: var(--text-faint-3); }
.site-footer--light .footer-brand-name { color: var(--text-dark); }
.site-footer--light .footer-tagline { color: var(--text-body-muted); }
.site-footer--dark .footer-brand-eyebrow { color: #8fae9b; }
.site-footer--dark .footer-brand-name { color: var(--bg-body); }
.site-footer--dark .footer-tagline { color: #9fb0a3; }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.site-footer--light .footer-col-title { color: var(--text-faint-2); }
.site-footer--dark .footer-col-title { color: #7e8a7c; }

.footer-links { display: grid; gap: 10px; font-size: 14.5px; }
.footer-link { text-decoration: none; }
.site-footer--light .footer-link { color: var(--link-color); }
.site-footer--light .footer-link:hover { color: var(--accent); }
.site-footer--dark .footer-link { color: var(--text-on-dark); }
.site-footer--dark .footer-link:hover { color: #fff; }

.footer-address { font-size: 14.5px; line-height: 1.7; margin: 0; }
.site-footer--light .footer-address { color: var(--link-color); }
.site-footer--dark .footer-address { color: #b6c0b6; }

.footer-contact-lines { font-size: 14.5px; line-height: 1.9; margin: 0 0 16px; }
.site-footer--light .footer-contact-lines { color: var(--link-color); }
.site-footer--dark .footer-contact-lines { color: #b6c0b6; }

.footer-bottom {
  max-width: 1180px;
  margin: 44px auto 0;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}
.site-footer--light .footer-bottom { border-top: 1px solid #e1d9c8; color: var(--text-faint); }
.site-footer--dark .footer-bottom { border-top: 1px solid #3c463a; color: #7e8a7c; }

/* ===== SHARED PAGE HEADER (non-home pages) ===== */
.page-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 40px);
}
.page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.page-title {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  max-width: 16ch;
}
.page-lead {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 46ch;
  margin: 0;
}

/* ===== DARK CTA BAND (de-camping + tarieven) ===== */
.cta-band {
  background: var(--bg-dark);
  color: #eef0e9;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
  text-align: center;
}
.cta-band-title {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.2;
  margin: 0 0 26px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-text {
  font-size: 15.5px;
  color: #b6c0b6;
  margin: 0 auto 28px;
  max-width: 38ch;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ===================================================== */
/* PAGE: HOME (index.html)                                */
/* ===================================================== */
.page-home .hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 7vw, 92px) clamp(20px, 5vw, 64px) clamp(48px, 6vw, 84px);
}
.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.page-home .hero-eyebrow-line {
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.page-home .hero-title {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.page-home .hero-title em { font-style: italic; color: var(--accent); }
.page-home .hero-text {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 32em;
  margin: 0 0 34px;
}
.page-home .hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.page-home .hero-image-wrap { position: relative; }
.page-home .hero-image-wrap .aspect-portrait {
  border-radius: 220px 220px 18px 18px;
  box-shadow: 0 30px 60px -34px rgba(60,70,55,0.5);
}
.page-home .review-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--bg-dark);
  color: #f3efe4;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 18px 36px -20px rgba(0,0,0,0.5);
}
.page-home .review-score { font-family: 'Spectral', serif; font-size: 30px; line-height: 1; }
.page-home .review-score span { font-size: 15px; color: #9fb0a3; }
.page-home .review-count { font-size: 11.5px; color: #aeb8ac; margin-top: 4px; letter-spacing: 0.03em; }

.page-home .intro-strip {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-light);
}
.page-home .intro-strip-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.page-home .intro-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.page-home .intro-text {
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.4;
  color: #353f33;
  margin: 0;
}

.page-home .highlights {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
}
.page-home .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}
.highlight-card {
  text-decoration: none;
  color: inherit;
  background: #fbfaf4;
  border: 1px solid var(--border-3);
  border-radius: 18px;
  overflow: hidden;
  display: block;
}
.highlight-card:hover { border-color: var(--accent); }
.highlight-card .aspect-card { border-radius: 0; }
.highlight-body { padding: 24px 24px 28px; }
.highlight-body h3 { font-weight: 500; font-size: 22px; margin: 0 0 10px; }
.highlight-body p { font-size: 14.5px; line-height: 1.6; color: var(--text-body-muted); margin: 0; }

.philosophy-band {
  background: var(--bg-dark);
  color: #eef0e9;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}
.philosophy-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.philosophy-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8fae9b;
  font-weight: 600;
  margin-bottom: 28px;
}
.philosophy-quote {
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.32;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}
.philosophy-text { font-size: 15.5px; line-height: 1.7; color: #b6c0b6; max-width: 36em; margin: 0 auto; }

.rates-teaser {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
}
.rates-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.rates-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.rates-heading { font-size: clamp(30px, 4vw, 46px); line-height: 1.08; margin: 0 0 18px; }
.rates-copy { font-size: 15px; line-height: 1.65; color: var(--text-body-muted); margin: 0 0 24px; max-width: 26em; }

.price-card {
  background: #fbfaf4;
  border: 1px solid var(--border-3);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 38px);
}
.price-card-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 18px;
}
.price-amount { font-family: 'Spectral', serif; font-size: 46px; line-height: 1; }
.price-card-header .price-unit { font-size: 14px; color: #7c8475; }
.price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.price-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; color: var(--link-color); }
.price-list strong { font-weight: 600; white-space: nowrap; }
.price-note {
  font-size: 12.5px;
  color: var(--text-faint);
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
}

/* ===================================================== */
/* PAGE: DE CAMPING                                       */
/* ===================================================== */
.page-camping .wide-banner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.page-camping .wide-banner .aspect-hero {
  border-radius: 22px;
  box-shadow: 0 30px 60px -40px rgba(60,70,55,0.5);
}

.two-col {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.two-col .aspect-portrait { box-shadow: 0 24px 48px -34px rgba(60,70,55,0.5); }
.two-col h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.1; margin: 0 0 18px; }
.two-col p { font-size: 15.5px; line-height: 1.7; color: var(--text-secondary); margin: 0 0 16px; }
.two-col p:last-of-type { margin-bottom: 0; }

.bell-tent-feature {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(48px, 7vw, 88px);
}
.bell-tent-feature .section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.facilities-band {
  background: var(--bg-light);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
}
.facilities-inner { max-width: 1180px; margin: 0 auto; }
.facilities-inner h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.1; margin: 0 0 8px; }
.facilities-intro { font-size: 15px; color: var(--text-secondary-2); margin: 0 0 36px; }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.facility-card { background: #fbfaf4; border: 1px solid var(--border-4); border-radius: 16px; padding: 24px; }
.facility-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-bottom: 16px; }
.facility-card h3 { font-weight: 500; font-size: 19px; margin: 0 0 7px; }
.facility-card p { font-size: 14px; line-height: 1.55; color: var(--text-body-muted); margin: 0; }
.facilities-note { font-size: 13px; color: var(--text-faint); margin: 28px 0 0; }

.omgeving {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 40px);
}
.omgeving .section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.omgeving h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.1; margin: 0 0 32px; max-width: 18ch; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.area-card { background: #fbfaf4; border: 1px solid var(--border-3); border-radius: 18px; overflow: hidden; }
.area-card .aspect-card { border-radius: 0; }
.area-card-body { padding: 24px 24px 28px; }
.area-card-body h3 { font-weight: 500; font-size: 21px; margin: 0 0 10px; }
.area-card-body p { font-size: 14.5px; line-height: 1.6; color: var(--text-body-muted); margin: 0; }

.distance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 14px;
}
.distance-chip {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-4);
  border-radius: 14px;
  padding: 14px 18px;
}
.distance-chip span { font-size: 14px; color: #3f4a3c; }
.distance-chip strong {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
}

.gallery {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(48px, 7vw, 88px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
}
.gallery-grid .aspect-gallery { border-radius: 14px; }

/* ===================================================== */
/* PAGE: TARIEVEN                                         */
/* ===================================================== */
.price-cards-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(20px, 3vw, 32px);
}
.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}
.price-card--featured {
  background: var(--bg-dark);
  color: #eef0e9;
  position: relative;
  box-shadow: 0 30px 60px -40px rgba(43,51,40,0.8);
}
.price-card h2 { font-weight: 500; font-size: 22px; margin: 0 0 4px; }
.price-card--featured h2 { color: var(--bg-body); }
.price-card-subtitle { font-size: 13px; margin: 0 0 22px; }
.price-card--featured .price-card-subtitle { color: #9fb0a3; }
.price-card:not(.price-card--featured) .price-card-subtitle { color: #8a9080; }
.price-card--featured .price-amount { color: var(--bg-body); }
.price-card--featured .price-card-header { border-bottom-color: #3c463a; }
.price-card:not(.price-card--featured) .price-card-header { border-bottom-color: var(--border-2); }
.price-card--featured .price-unit { color: #9fb0a3; max-width: 13em; }
.price-card:not(.price-card--featured) .price-unit { color: #7c8475; }
.price-card--featured .price-list li { color: var(--text-on-dark); }
.price-card--featured .price-list strong { color: var(--bg-body); }
.price-card-text { font-size: 14.5px; line-height: 1.6; color: var(--text-body-muted); margin: 0; }
.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid #cfddca;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 700;
}

.included-band {
  margin: clamp(40px, 5vw, 64px) 0 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: clamp(44px, 6vw, 80px) clamp(20px, 5vw, 64px);
}
.included-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.included-inner h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 10px; }
.included-intro { font-size: 15px; color: var(--text-secondary-2); margin: 0 0 34px; }
.included-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.included-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fbfaf4;
  border: 1px solid var(--border-4);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14.5px;
  color: #3f4a3c;
}
.included-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.included-note { font-size: 13px; color: var(--text-faint); margin: 34px 0 0; }

/* ===================================================== */
/* PAGE: CONTACT                                          */
/* ===================================================== */
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 64px) clamp(48px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-info-blocks { display: grid; gap: 24px; margin-bottom: 28px; }
.info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint-2);
  font-weight: 700;
  margin-bottom: 8px;
}
.info-address { font-size: 16px; line-height: 1.6; color: #3f4a3c; margin: 0; }
.info-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-link { font-size: 16px; color: #3f4a3c; text-decoration: none; }
.info-link:hover { color: var(--accent); }
.info-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.info-chip {
  font-size: 13px;
  color: var(--text-secondary-2);
  background: var(--bg-light);
  border: 1px solid var(--border-4);
  border-radius: 999px;
  padding: 7px 14px;
}
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-4);
  box-shadow: 0 20px 44px -34px rgba(60,70,55,0.5);
}
.map-frame iframe { width: 100%; height: 300px; border: 0; display: block; }

.booking-card {
  background: #fbfaf4;
  border: 1px solid var(--border-3);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 24px 50px -38px rgba(60,70,55,0.5);
}
.booking-card h2 { font-weight: 500; font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 6px; }
.booking-intro { font-size: 14px; color: #7c8475; margin: 0 0 26px; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: block; }
.form-field.full { margin-bottom: 16px; }
.field-label { display: block; font-size: 13px; font-weight: 600; color: var(--link-color); margin-bottom: 7px; }
.field-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d0c0;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--text-dark);
  font-family: 'Hanken Grotesk', sans-serif;
}
.field-input:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(93,130,112,0.15);
}
textarea.field-input { resize: vertical; }
.checkbox-field { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; cursor: pointer; }
.checkbox-field input { width: 18px; height: 18px; accent-color: var(--accent); }
.checkbox-field span { font-size: 14.5px; color: var(--link-color); }
.form-note { font-size: 12px; color: var(--text-faint); margin: 14px 0 0; text-align: center; }
