*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #2d4a2d;
  --green-mid:  #4a7c4a;
  --green-sage: #7da87d;
  --cream:      #f5f0e8;
  --warm-white: #fdfaf4;
  --earth:      #8b6c42;
  --text:       #1e2e1e;
  --muted:      #5a6b5a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 6rem;
  background: rgba(253,250,244,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45,74,45,0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center;}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-deep); }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* Animate to X when open */
.nav-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,38,20,0.9) 0%, rgba(20,38,20,0.4) 55%, transparent 90%);
}
.hero-content {
  position: relative;
  padding: 0 3rem 4.5rem;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--green-sage); }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  min-height: 52px;
  padding: 0 30px;
  background: var(--green-sage);
  color: #fff!important;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500!important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none!important;
  gap: 20px;
}
.btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6)!important;
  margin-left: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ── GRASS DIVIDER (signature element) ── */
.grass {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.grass svg { display: block; width: 100%; height: auto; }

/* ── SECTIONS ── */
section { padding: 5rem 2.5rem; }

.container { max-width: 960px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  display: block;
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* ── INTRO ── */
#intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.intro-text strong { color: var(--green-deep); }
.intro-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.intro-imgs img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
}
.intro-imgs img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ── PRICING STRIP ── */
.price-strip {
  background: var(--green-deep);
  color: #fff;
  padding: 2.5rem 2.5rem;
}
.price-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.price-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.price-amount span { font-size: 1rem; font-weight: 300; opacity: 0.7; }
.price-meta { font-size: 0.8rem; opacity: 0.6; margin-top: 0.25rem; }

/* ── VOORZIENINGEN ── */
#voorzieningen { background: var(--warm-white); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: var(--cream);
  border-radius: 3px;
  border-left: 3px solid var(--green-sage);
}
.amenity-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.4rem;
  text-align: center;
  color: var(--green-mid);
}
.amenity-name { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.amenity-tag {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 500;
}
.amenity-tag.paid { color: var(--earth); }

/* ── OMGEVING ── */
#omgeving { background: var(--cream); }
.omgeving-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.omgeving-card {
  padding: 2rem;
  background: var(--warm-white);
  border-radius: 3px;
}
.omgeving-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}
.omgeving-card h3 i {
  color: var(--green-mid);
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.omgeving-card p { color: var(--muted); font-size: 0.95rem; }

/* ── REVIEWS ── */
#reviews { background: var(--green-deep); color: #fff; }
#reviews h2 { color: #fff; }
#reviews .section-label { color: var(--green-sage); }
.reviews-header {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.reviews-quote {
  flex: 1;
  min-width: 200px;
  padding-top: 3.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
}
.stars { color: var(--green-sage); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-sage);
}
.reviews-meta { opacity: 0.6; font-size: 0.875rem; margin-top: 0.5rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.review-card {
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.review-card .stars { font-size: 0.9rem; }
.review-text { font-size: 0.9rem; opacity: 0.85; font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.review-author { font-size: 0.75rem; opacity: 0.5; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  margin-top: 1.5rem;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { color: var(--muted); margin-top: 0.2rem; }
.contact-info dd a { color: var(--green-mid); text-decoration: none; }
.contact-info dd a:hover { text-decoration: underline; }
.contact-btn { margin-top: 2rem; }
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 3px;
  border: none;
}

/* ── AANVRAAGFORMULIER ── */
#aanvraag { background: var(--warm-white); }
#reserveren { background: var(--warm-white); }
.form-intro { color: var(--muted); margin-bottom: 2rem; }
.aanvraag-form,
.reserveer-form { max-width: 700px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { margin-bottom: 1.25rem; }
.required { color: #c0392b; margin-left: 2px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--earth);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(45,74,45,0.2);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-sage);
}
.form-group textarea { resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.aanvraag-form .btn,
.reserveer-form .btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: var(--green-mid);
  font-weight: 500;
  font-size: 0.95rem;
}
.form-success i { font-size: 1.1rem; }

/* reCAPTCHA badge verbergen */
.grecaptcha-badge { visibility: hidden !important; }
.form-error {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: #c0392b;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-error i { font-size: 1.1rem; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 2rem 6rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── RESPONSIVE ── */

/* Verkleinde padding nav en footer tussen 1024px en 1500px */
@media (max-width: 1500px) {
  nav { padding: 1.1rem 3rem; }
  footer { padding: 2rem 3rem; }
}

@media (max-width: 1200px) {
  nav { padding: 1.1rem 2rem; }
  footer { padding: 2rem 2rem; }
}

/* Hamburger menu vanaf 1024px */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 5rem 2rem 2.5rem;
    background: var(--warm-white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(45,74,45,0.08); }
  .nav-links li:last-child { border-bottom: none; margin-top: 1rem; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text);
  }
  .nav-links .btn {
    display: inline-flex;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 500px) {
  .nav-logo img { width: 180px; height: auto; }
}

@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }

  /* Hero: em tekst wit op mobiel */
  .hero h1 em { color: #fff; }

  /* Hero: knoppen centreren en ruimte ertussen */
  .hero-content { padding: 0 1.5rem 3rem; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-content .btn { margin: 0; }
  .hero-content .btn-outline { margin-left: 0; }
  .hero-content a.btn,
  .hero-content a.btn-outline {
    display: inline-flex;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-content a.btn + a { margin-top: 0.75rem; }


  /* Reviews quote: geen grote padding-top op mobiel */
  .reviews-quote { padding-top: 0; }

  section { padding: 3.5rem 1.25rem; }
  .intro-grid,
  .contact-grid,
  .omgeving-cols,
  .form-row { grid-template-columns: 1fr; gap: 2rem; }
  .price-inner { flex-direction: column; text-align: center; }
  footer { padding: 2rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}