/* ── Domein Walbrugge ── natuur & luxe ─────────────────────────────────── */
:root {
  --green: #2d4a22;
  --green-dark: #1f3517;
  --green-soft: #3d5f30;
  --linen: #f5f0e8;
  --linen-dark: #ece4d6;
  --gold: #c9a84c;
  --gold-dark: #b09138;
  --ink: #262a22;
  --muted: #6b7263;
  --white: #fffdf9;
  --radius: 14px;
  --shadow: 0 10px 34px rgba(31, 53, 23, .12);
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-title); font-weight: 600; line-height: 1.15; color: var(--green-dark); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .6em; }
h3 { font-size: 1.45rem; }
h1 em { font-style: italic; color: var(--gold); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.kicker { text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 600; color: var(--gold-dark); margin-bottom: .9em; }
.lead { max-width: 720px; margin: 0 auto 2.6rem; color: var(--muted); font-size: 1.06rem; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-linen { background: var(--linen); }
.section-dark { background: var(--green-dark); color: #e9e6dc; }
.section-dark h2, .section-dark h3 { color: var(--linen); }
.section-dark .kicker { color: var(--gold); }
.section-dark p { color: #cfd3c4; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all .25s ease; font-family: var(--font-body); }
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-green { background: var(--green); color: var(--linen); }
.btn-green:hover { background: var(--green-soft); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ── Nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; transition: background .3s ease, box-shadow .3s ease, padding .3s; }
.nav.scrolled { background: rgba(31, 53, 23, .96); backdrop-filter: blur(8px); box-shadow: 0 4px 24px rgba(0,0,0,.25); padding: 8px 0; }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 52px; width: auto; transition: height .3s; }
.nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #f2efe6; text-decoration: none; font-size: .9rem; font-weight: 500; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--green-dark) !important; padding: 9px 20px; border-radius: 999px; }
.nav-cta:hover { background: var(--gold-dark); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 26px; height: 2px; background: #f2efe6; margin: 6px 0; border-radius: 2px; transition: .3s; }

/* ── Hero ── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,38,16,.55) 0%, rgba(23,38,16,.35) 45%, rgba(23,38,16,.72) 100%); }
.hero-content { position: relative; z-index: 2; padding: 120px 22px 80px; max-width: 860px; }
.hero-kicker { text-transform: uppercase; letter-spacing: .3em; font-size: .8rem; color: var(--gold); font-weight: 600; margin-bottom: 1.4em; }
.hero h1 { color: #fff; margin-bottom: .45em; text-shadow: 0 3px 24px rgba(0,0,0,.35); }
.hero-sub { color: #e8e5da; font-size: 1.1rem; max-width: 620px; margin: 0 auto 2.2em; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--gold); border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ── Split layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.split-text p { margin-bottom: 1em; color: var(--muted); }
.section-dark .split-text p { color: #cfd3c4; }
.split-text .btn { margin-top: .6em; }
.signature { font-family: var(--font-title); font-style: italic; font-size: 1.25rem; color: var(--green) !important; }

/* ── KPI bar ── */
.kpi-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: clamp(44px, 6vw, 70px); border-top: 1px solid var(--linen-dark); padding-top: clamp(32px, 4vw, 48px); }
.kpi { text-align: center; }
.kpi strong { display: block; font-family: var(--font-title); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--green); font-weight: 700; line-height: 1; }
.kpi span { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }

/* ── Panorama strip ── */
.pano { height: clamp(220px, 34vw, 420px); overflow: hidden; }
.pano-img { height: 100%; background-size: cover; background-position: center; background-attachment: fixed; }
@media (max-width: 800px) { .pano-img { background-attachment: scroll; } }

/* ── Cards (zakelijk) ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 26px; margin-top: 1rem; }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(31,53,23,.18); }
.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.badge { position: absolute; bottom: 12px; left: 12px; background: rgba(31,53,23,.85); color: var(--gold); font-size: .75rem; font-weight: 600; padding: 5px 13px; border-radius: 999px; letter-spacing: .04em; }
.card-body { padding: 24px 24px 28px; }
.card-body h3 { margin-bottom: .5em; }
.card-body p { color: var(--muted); font-size: .93rem; }

/* ── Ruimtes strip ── */
.ruimtes-strip { margin-top: clamp(44px, 6vw, 64px); background: var(--green-dark); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); }
.ruimtes-title { font-family: var(--font-title); font-size: 1.5rem; color: var(--gold); margin-bottom: 1.1em; text-align: center; }
.ruimtes-strip ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.ruimtes-strip li { text-align: center; padding: 14px 8px; border: 1px solid rgba(201,168,76,.3); border-radius: 10px; }
.ruimtes-strip strong { display: block; color: var(--linen); font-size: .92rem; font-weight: 600; }
.ruimtes-strip span { color: var(--gold); font-size: .8rem; }

/* ── Rooms ── */
.rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 1rem; }
.room { background: var(--linen); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s ease; }
.room:hover { transform: translateY(-5px); }
.room img { aspect-ratio: 16 / 11; object-fit: cover; width: 100%; }
.room-body { padding: 22px 24px 26px; }
.room-tag { color: var(--gold-dark); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin: .3em 0 .7em; }
.room-body p:not(.room-tag) { color: var(--muted); font-size: .92rem; }
.room-cta { background: var(--green); display: flex; align-items: center; }
.room-cta-inner { padding: 34px 30px; }
.room-cta h3 { color: var(--linen); }
.room-cta p { color: #cfd3c4; margin: .8em 0 1.4em; font-size: .95rem; }

/* ── Check list ── */
.check-list { list-style: none; margin: 1.2em 0 1.8em; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: .55em; color: #dfe3d3; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── Faciliteiten ── */
.facil { background: var(--gold); padding: clamp(36px, 5vw, 56px) 0; }
.facil-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 22px; text-align: center; }
.facil-item { display: flex; flex-direction: column; gap: 2px; }
.facil-ico { font-size: 1.9rem; margin-bottom: 6px; }
.facil-item strong { color: var(--green-dark); font-size: .95rem; }
.facil-item span:not(.facil-ico) { color: rgba(31,53,23,.75); font-size: .8rem; }

/* ── Gallery ── */
.gallery { columns: 4 240px; column-gap: 14px; }
.gallery img { border-radius: 10px; margin-bottom: 14px; break-inside: avoid; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease; }
.gallery img:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(31,53,23,.25); }

/* ── Lightbox ── */
.lightbox { position: fixed; inset: 0; background: rgba(20,28,15,.93); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 4vw; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }

/* ── Team ── */
.team-names { display: flex; justify-content: center; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; margin-top: 1.5rem; }
.team-name { text-align: center; font-weight: 600; color: var(--green-dark); }
.team-name span { display: flex; align-items: center; justify-content: center; width: 84px; height: 84px; margin: 0 auto 12px; border-radius: 50%; background: var(--linen); border: 2px solid var(--gold); font-family: var(--font-title); font-size: 2rem; color: var(--green); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact-list { list-style: none; margin: 1.6em 0; }
.contact-list li { margin-bottom: 1em; }
.contact-list strong { display: block; color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 2px; }
.contact-list a { color: #e9e6dc; text-decoration: none; }
.contact-list a:hover { color: var(--gold); }
.socials { display: flex; gap: 14px; }
.socials a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: .9rem; border: 1px solid rgba(201,168,76,.5); padding: 8px 18px; border-radius: 999px; transition: .25s; }
.socials a:hover { background: var(--gold); color: var(--green-dark); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.contact-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--green-dark); margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--linen-dark); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; background: var(--linen); color: var(--ink); transition: border-color .2s, background .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }
.form-msg { margin-top: 14px; font-size: .9rem; font-weight: 500; color: var(--green); min-height: 1.4em; }
.form-msg.error { color: #a33; }

/* ── Footer ── */
.footer { background: #17250f; padding: 44px 0; text-align: center; }
.footer-logo { height: 54px; margin: 0 auto 18px; opacity: .9; }
.footer p { color: #8d967f; font-size: .84rem; }
.footer-note { margin-top: 6px; font-size: .76rem !important; color: #6a7360 !important; }

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 920px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-rev .split-img { order: -1; }
  .kpi-bar { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 820px) {
  .nav-links { position: fixed; top: 0; right: -290px; width: 280px; height: 100vh; background: var(--green-dark); flex-direction: column; justify-content: center; gap: 30px; transition: right .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3); }
  .nav-links.open { right: 0; }
  .nav-burger { display: block; z-index: 110; position: relative; }
  .nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
