/* ===== Basis ===== */
:root {
  --ink: #2b2b28;
  --ink-soft: #5c5c54;
  --paper: #faf8f4;
  --paper-alt: #f1ede5;
  --accent: #4a6b4d;      /* gedempt groen — verwijst naar het tuintje */
  --accent-dark: #3a5640;
  --line: #e2ddd2;
  --gold: #b08949;
  --radius: 14px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Inter', system-ui, sans-serif; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: .6rem; }

p { margin-bottom: 1rem; }

a { color: var(--accent-dark); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .4rem;
}
.eyebrow.light { color: #d9c9a6; }

.muted { color: var(--ink-soft); }
.small { font-size: .85rem; }
.center { text-align: center; }
.narrow { max-width: 720px; }

.todo {
  color: #b4451f;
  font-size: .82em;
  font-style: italic;
}

/* ===== Knoppen ===== */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1.5px solid #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-small { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-big { padding: 1.1rem 2.4rem; font-size: 1.1rem; margin: .5rem 0 1rem; }

/* ===== Prijsbanner ===== */
.price-banner {
  background: var(--accent-dark); color: #fff; text-align: center;
  padding: .55rem 1rem; font-weight: 600; font-size: .95rem; letter-spacing: .01em;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 500; }
.nav a:not(.btn):hover { color: var(--accent); }
.lang-switch { border: 1px solid #d8d3c8; border-radius: 999px; padding: .25rem .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .03em; }
.lang-switch:hover { color: var(--accent); border-color: var(--accent); }

/* ===== Hero ===== */
.hero {
  min-height: 78vh;
  display: flex; align-items: flex-end;
  background-image: linear-gradient(180deg, rgba(20,25,18,.15) 0%, rgba(20,25,18,.72) 100%), url('images/hero.jpg');
  background-size: cover; background-position: center;
  background-color: #3a4034; /* fallback zolang er geen foto is */
}
.hero-overlay { padding: clamp(2rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3.5rem); color: #fff; max-width: 760px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; color: #e6dcc4; margin-bottom: .8rem; }
.hero h1 { font-size: clamp(2.1rem, 6vw, 3.8rem); margin-bottom: 1rem; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: #f1ede5; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.hero-weekend {
  display: inline-block; font-size: .9rem; font-weight: 600;
  background: rgba(176,137,73,.95); color: #fff;
  padding: .45rem 1rem; border-radius: 999px; margin: 0;
}

/* ===== Kerncijfers ===== */
.stats {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { background: var(--paper); padding: 1.4rem .6rem; text-align: center; }
.stat-num { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.6rem; color: var(--accent-dark); }
.stat-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-top: .2rem; }

/* ===== Secties ===== */
.section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 2.5rem); }
.section-alt { background: var(--paper-alt); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.troeven { list-style: none; margin: 1.6rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.6rem; }
.troeven li { position: relative; padding-left: 1.6rem; }
.troeven li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ===== Galerij ===== */
.gallery-note { margin-bottom: 1.6rem; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  background-size: cover; background-position: center;
  background-color: #cfc8ba;
  background-image: linear-gradient(135deg, #d6cfc1, #c2bbad);
  overflow: hidden;
}
.shot-wide { grid-column: span 2; aspect-ratio: 16 / 7; }
.shot figcaption {
  position: absolute; left: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  color: #fff; font-size: .85rem; font-weight: 500;
  padding: 1.4rem .9rem .6rem; width: 100%;
}

/* ===== Lightbox (foto-popup) ===== */
.shot { cursor: default; }
.shot.has-photo { cursor: zoom-in; }
.shot.has-photo::before {
  content: "⤢"; position: absolute; top: .6rem; right: .7rem; z-index: 2;
  color: #fff; font-size: 1rem; line-height: 1;
  background: rgba(0,0,0,.35); border-radius: 50%; width: 1.8rem; height: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.shot.has-photo:hover::before { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(15,15,12,.93); padding: 2rem; }
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lb-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 6px; box-shadow: 0 12px 48px rgba(0,0,0,.5); }
.lb-cap { color: #f1ede5; margin-top: .9rem; font-size: .95rem; text-align: center; }
.lb-close { position: absolute; top: .8rem; right: 1.2rem; background: none; border: none; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; padding: .2rem .5rem; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 2rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-nav.hidden { display: none; }
@media (max-width: 520px) {
  .lb-nav { width: 2.5rem; height: 2.5rem; font-size: 1.6rem; }
  .lb-prev { left: .4rem; } .lb-next { right: .4rem; }
  .lightbox { padding: 1rem; }
}

/* ===== Ligging ===== */
.ligging-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.2rem; align-items: start; margin-top: 1.4rem; }
.poi { list-style: none; }
.poi li { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.poi li:last-child { border-bottom: none; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ===== Specs-tabel ===== */
.specs { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.specs th, .specs td { text-align: left; padding: .7rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { width: 38%; font-weight: 600; color: var(--ink-soft); }

/* ===== Documenten ===== */
.docs { list-style: none; margin: 1.6rem 0 1.2rem; display: grid; gap: .7rem; }
.docs a {
  display: flex; flex-direction: column;
  padding: .9rem 1.1rem;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none; color: var(--ink);
  transition: border-color .2s, transform .2s;
}
.docs a:hover { border-color: var(--accent); transform: translateY(-1px); }
.docs a::after { content: "↓ Download"; position: absolute; }
.docs li { position: relative; }
.docs li a::after { right: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: .85rem; font-weight: 600; }
.doc-name { font-weight: 600; }
.doc-meta { font-size: .82rem; color: var(--ink-soft); }

/* ===== CTA ===== */
.cta-section { background: var(--accent-dark); color: #fff; }
.cta-section h2 { color: #fff; }
.cta-section .muted { color: #cdd6cb; }

/* ===== Footer ===== */
.site-footer { background: #25271f; color: #d8d4c8; padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 5vw, 2.5rem) 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; }
.footer-col h3 { font-size: 1rem; margin-bottom: .7rem; color: #fff; }
.footer-col.legal ul { list-style: none; }
.footer-col.legal li { padding: .3rem 0; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col a { color: #d8d4c8; }
.footer-note { max-width: var(--maxw); margin: 2rem auto 0; font-size: .78rem; color: #8d897d; }
.site-footer .todo { color: #e0a06a; }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .nav a:not(.btn) { display: none; }
  .nav a.lang-switch { display: inline-flex; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .troeven { grid-template-columns: 1fr; }
  .ligging-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .shot-wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}
