:root {
  --forest: #1f2a1f;
  --forest-2: #2c3a2b;
  --moss: #5b6b3a;
  --rust: #a4471f;
  --rust-2: #8a3a18;
  --amber: #d9a441;
  --cream: #f6f1e7;
  --paper: #fbf8f2;
  --ink: #1d1b17;
  --muted: #6a6358;
  --line: #e3dccd;
  --radius: 14px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.65 var(--sans); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust); text-underline-offset: 3px; }
a:hover { color: var(--rust-2); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin: 0 0 1em; }
.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.muted { color: var(--muted); }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 12px; z-index: 99; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* Header */
.top { position: sticky; top: 0; z-index: 20; background: rgba(31, 42, 31, .92); backdrop-filter: blur(8px); color: var(--cream); }
.top__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 60px; }
.brand { display: flex; align-items: center; gap: 8px; color: var(--cream); text-decoration: none; font: 600 1.25rem var(--serif); }
.brand:hover { color: #fff; }
.brand svg { width: 30px; height: 30px; color: var(--amber); }
.brand__tld { color: var(--amber); }
.nav { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav a { display: block; padding: 8px 12px; color: var(--cream); text-decoration: none; font-size: .95rem; border-radius: 8px; }
.nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* Hero */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--forest); }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 26, 18, .55) 0%, rgba(20, 26, 18, 0) 65%), linear-gradient(180deg, rgba(20, 26, 18, .15) 0%, rgba(20, 26, 18, .35) 40%, rgba(20, 26, 18, .88) 100%); }
.hero__content { position: relative; z-index: 1; padding-block: 120px 64px; max-width: 760px; margin-left: max(16px, (100% - 1160px) / 2); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: .3em; text-shadow: 0 2px 20px rgba(0, 0, 0, .35); }
.hero h1 em { font-style: italic; color: var(--amber); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 620px; color: #f3eee4; }
.lead strong { color: #fff; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 99px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25); font-size: .88rem; backdrop-filter: blur(4px); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(217, 164, 65, .3); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border-radius: 99px; background: var(--rust); color: #fff; font-weight: 600; text-decoration: none; border: 2px solid var(--rust); transition: background .15s, color .15s, border-color .15s; }
.btn:hover { background: var(--rust-2); border-color: var(--rust-2); color: #fff; }
.btn--light { background: var(--amber); border-color: var(--amber); color: var(--forest); }
.btn--light:hover { background: #e7b554; border-color: #e7b554; color: var(--forest); }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--forest); border-color: #fff; }
.btn--line { background: transparent; color: var(--rust); }
.btn--line:hover { background: var(--rust); color: #fff; }

/* Facts */
.intro { margin-top: -36px; position: relative; z-index: 2; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; background: #fff; border-radius: var(--radius); box-shadow: 0 12px 40px rgba(31, 42, 31, .12); overflow: hidden; }
.facts div { padding: 20px 22px; border-left: 1px solid var(--line); }
.facts div:first-child { border-left: 0; }
.facts dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.facts dd { margin: 2px 0 0; font: 600 1.1rem var(--serif); }

/* Sections */
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head p:last-child { color: var(--muted); }
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); margin-bottom: .6em; }
.menus, .faq { padding-block: 96px; }

/* Venue */
.venue { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.venue:last-child { margin-bottom: 0; }
.venue--flip .venue__img { order: 2; }
.venue__img { position: relative; }
.venue__img img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--radius); }
.courses { position: absolute; left: -14px; bottom: -14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 108px; height: 108px; border-radius: 50%; background: var(--forest); color: var(--cream); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; line-height: 1; box-shadow: 0 8px 24px rgba(0, 0, 0, .2); }
.courses b { display: block; font: 700 2.6rem/1 var(--serif); color: var(--amber); letter-spacing: 0; }
.venue--flip .courses { left: auto; right: -14px; }
.venue__tag { font: italic 1.15rem var(--serif); color: var(--rust); }
.price { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px; padding: 16px 0; margin: 20px 0; border-block: 1px solid var(--line); }
.price__amount { font: 700 2rem var(--serif); color: var(--forest); margin-right: 8px; }
.price__unit, .price__wine { color: var(--muted); font-size: .95rem; }
.ticks { list-style: none; padding: 0; margin: 0 0 24px; }
.ticks li { position: relative; padding-left: 26px; margin-bottom: 6px; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 12px; height: 7px; border-left: 2px solid var(--moss); border-bottom: 2px solid var(--moss); transform: rotate(-45deg); }
.venue__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Arrangements */
.arr { background: var(--forest); color: var(--cream); padding-block: 96px; }
.arr .eyebrow { color: var(--amber); }
.arr .section-head p:last-child { color: #c9c3b4; }

/* Boekingsbalk */
.bookbar { display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; align-items: stretch; max-width: 960px; margin: 0 auto 48px; background: var(--paper); color: var(--ink); border-radius: 16px; padding: 8px; box-shadow: 0 16px 40px rgba(0, 0, 0, .3); }
.bookbar__field { display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 8px 18px; border-right: 1px solid var(--line); min-width: 0; }
.bookbar__field span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--moss); }
.bookbar select, .bookbar input { width: 100%; border: 0; background: transparent; padding: 2px 0; font: 600 1rem var(--sans); color: var(--ink); min-height: 32px; }
.bookbar select:focus, .bookbar input:focus { outline: none; }
.bookbar__field:focus-within { background: #fff; border-radius: 10px; }
.bookbar .btn { margin-left: 8px; border-radius: 10px; padding-inline: 28px; }

/* Arrangementkaarten */
.deals { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.deal { display: flex; flex-direction: column; background: var(--forest-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); padding: 28px; transition: border-color .15s, transform .15s; }
.deal:hover { border-color: rgba(217, 164, 65, .6); transform: translateY(-3px); }
.deal__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.deal__where { margin: 0; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #c9c3b4; }
.deal__nights { flex: none; font-size: .8rem; font-weight: 600; padding: 3px 10px; border-radius: 99px; border: 1px solid rgba(217, 164, 65, .6); color: var(--amber); }
.deal h3 { font-size: 1.35rem; color: #fff; margin-bottom: 10px; min-height: 2.3em; }
.deal__price { font: 700 2.1rem/1.1 var(--serif); color: var(--amber); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.deal__price small { font: 400 .85rem var(--sans); color: #c9c3b4; }
.deal__list { list-style: none; padding: 0; margin: 0 0 16px; }
.deal__list li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.deal__list li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 11px; height: 6px; border-left: 2px solid var(--amber); border-bottom: 2px solid var(--amber); transform: rotate(-45deg); }
.deal__note { font-size: .85rem; color: #a9a393; margin-bottom: 16px; }
.deal__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 8px; }
.deal__foot .btn { flex: 1; }
.deal__more { color: var(--cream); font-weight: 600; font-size: .95rem; text-decoration: none; white-space: nowrap; }
.deal__more:hover { color: var(--amber); }
.arr__all { text-align: center; margin: 40px 0 0; color: #c9c3b4; font-size: .95rem; }
.arr__all a { color: var(--amber); }
.arr__all a:hover { color: #fff; }
.arr__hint { display: block; margin-top: 6px; font-size: .85rem; color: #8f897b; }

/* FAQ */
.faq__list { max-width: 820px; margin-inline: auto; }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative; font: 600 1.15rem var(--serif); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font: 400 1.6rem var(--sans); color: var(--rust); }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); padding-right: 40px; }

/* Locations */
.loc { background: var(--cream); padding-block: 96px; }
.loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin-inline: auto; }
.loc__card { font-style: normal; background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: 0 4px 20px rgba(31, 42, 31, .06); }
.loc__card h3 { margin-bottom: 0; }
.loc__links { display: flex; gap: 20px; margin: 0; font-weight: 600; }

/* Footer */
.foot { background: var(--forest); color: var(--cream); padding-block: 36px; font-size: .92rem; }
.foot p { margin: 0 0 .4em; }
.foot .muted { color: #a9a393; }

/* Responsive */
@media (max-width: 900px) {
  .venue { grid-template-columns: 1fr; gap: 36px; }
  .venue--flip .venue__img { order: 0; }
  .venue--flip .courses { right: auto; left: -8px; }
  .courses { left: -8px; }
  .loc__grid { grid-template-columns: 1fr; }
  .deal h3 { min-height: 0; }
  .bookbar { grid-template-columns: 1fr 1fr; gap: 4px; }
  .bookbar__field { border-right: 0; }
  .bookbar__field:first-child { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .bookbar .btn { grid-column: 1 / -1; margin: 4px 0 0; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(3) { border-left: 0; }
  .facts div:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .nav li:not(:first-child):not(:nth-child(2)) { display: none; }
  .nav a { padding: 8px; font-size: .9rem; }
  .brand { font-size: 1.1rem; }
  .hero__content { padding-block: 96px 56px; }
  .menus, .faq, .arr, .loc { padding-block: 64px; }
  .venue { margin-bottom: 64px; }
  .courses { width: 88px; height: 88px; }
  .courses b { font-size: 2.1rem; }
  .deal { padding: 22px; }
  details p { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
