/* ==========================================================================
   Gasthoeve Adrichem — stylesheet
   Kleuren afgeleid van het logo: wijnrood (tekst), goudgeel en crème (ovaal)
   ========================================================================== */

/* ---------- Lettertypen (lokaal gehost) ---------- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dmsans-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmsans-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --bg: #FBF6EA;
  --bg-alt: #F4EAD4;
  --surface: #FFFDF8;
  --line: #E6D8BC;
  --ink: #2A2019;
  --ink-soft: #5E5145;
  --wine: #8B1E24;
  --wine-dark: #6A1419;
  --gold: #F2C14A;
  --gold-hover: #F6CF69;
  --gold-soft: #FBEAB8;
  --gold-deep: #A87812;
  --brown: #241A13;
  --brown-2: #33261C;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(36, 26, 19, .06), 0 4px 14px -6px rgba(36, 26, 19, .10);
  --shadow: 0 2px 4px rgba(36, 26, 19, .05), 0 22px 44px -20px rgba(36, 26, 19, .32);

  --max: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 88px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--wine-dark); }
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.5rem + 3.2vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 1.35rem + 1.8vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + .55vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--wine); color: #fff; padding: .6em 1em; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .65em;
  margin: 0 0 1rem;
  font: 700 .78rem/1.2 var(--sans);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--wine);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--gold); }
.lead { font-size: clamp(1.1rem, 1rem + .35vw, 1.28rem); line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.icon { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: .8em 1.45em;
  border: 2px solid transparent; border-radius: 999px;
  font: 600 1rem/1 var(--sans); text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--brown); }
.btn--gold:hover { background: var(--gold-hover); color: var(--brown); box-shadow: 0 12px 26px -12px rgba(168, 120, 18, .7); }
.btn--wine { background: var(--wine); color: #fff; }
.btn--wine:hover { background: var(--wine-dark); color: #fff; box-shadow: 0 12px 26px -12px rgba(106, 20, 25, .6); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--bg); }
.btn--light { border-color: rgba(255, 255, 255, .75); color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--brown); }
.btn--sm { min-height: 42px; padding: .6em 1.1em; font-size: .95rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; text-decoration: none; color: var(--wine);
}
.link-arrow::after { content: "\2192"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Topbalk ---------- */
.topbar { background: var(--brown); color: #E6D9C2; font-size: .875rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; }
.topbar__group { display: flex; align-items: center; gap: 1.5rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .5em; color: #F2E6CF; text-decoration: none; }
.topbar a.topbar__item:hover { color: var(--gold); }
.topbar .icon { color: var(--gold); width: 15px; height: 15px; }

/* ---------- Header & navigatie ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px -22px rgba(36, 26, 19, .45); }
.site-header__inner, .topbar .container { max-width: 1380px; }
.site-header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); flex: none; position: relative; z-index: 2; }
.brand img { height: 64px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font: 600 1.28rem/1.1 var(--serif); color: var(--wine); letter-spacing: -.01em; }
.brand__tag { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .3rem; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3em; white-space: nowrap;
  padding: .6em .8em; border: 0; border-radius: 999px; background: none;
  font: 500 .98rem/1.2 var(--sans); color: var(--ink); text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s;
}
.nav__link .icon { width: 14px; height: 14px; transition: transform .2s; }
.nav__link:hover, .nav__item:focus-within > .nav__link, .nav__item.is-open > .nav__link { background: var(--bg-alt); color: var(--wine); }
.nav__item.is-current > .nav__link { color: var(--wine); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.nav__item.is-current > .nav__link:hover { border-radius: 999px; box-shadow: none; }
.nav__item.is-open > .nav__link .icon { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  min-width: 250px; margin: 0; padding: .5rem; list-style: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.dropdown--cols { columns: 2; column-gap: .25rem; min-width: 470px; }
.dropdown li { break-inside: avoid; }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .55em .85em; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: .95rem; line-height: 1.35;
}
.dropdown a:hover, .dropdown a[aria-current="page"] { background: var(--bg-alt); color: var(--wine); }
.dropdown a .icon { width: 13px; height: 13px; color: var(--ink-soft); }
.dropdown__overview a { font-weight: 600; color: var(--wine); }
.nav__item--dd:hover > .dropdown,
.nav__item--dd:focus-within > .dropdown,
.nav__item--dd.is-open > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.header-cta { flex: none; }
.nav__mobile-extra { display: none; }

.nav-toggle {
  display: none; position: relative; z-index: 2;
  width: 48px; height: 48px; margin-left: auto;
  border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--ink);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1380px) {
  .brand__tag { display: none; }
  .nav__link { padding: .6em .62em; font-size: .96rem; }
}

@media (max-width: 1200px) {
  :root { --header-h: 74px; }
  .topbar { display: none; }
  .brand img { height: 54px; }
  .brand__name { font-size: 1.15rem; }
  .brand__tag { display: block; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed; inset: 0; z-index: 1;
    margin: 0; padding: calc(var(--header-h) + 8px) var(--gutter) 40px;
    background: var(--bg); overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link {
    width: 100%; justify-content: space-between; padding: 1rem .15rem; border-radius: 0;
    font: 600 1.3rem/1.2 var(--serif);
  }
  .nav__link .icon { width: 20px; height: 20px; }
  .nav__link:hover, .nav__item:focus-within > .nav__link, .nav__item.is-open > .nav__link { background: none; }
  .nav__item.is-current > .nav__link { box-shadow: none; }
  .dropdown, .dropdown--cols {
    position: static; display: none; min-width: 0; columns: 1;
    padding: 0 0 .9rem; border: 0; border-radius: 0; background: none; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; transition: none;
  }
  .dropdown::before { display: none; }
  .nav__item--dd.is-open > .dropdown { display: block; transform: none; }
  .nav__item--dd:hover > .dropdown, .nav__item--dd:focus-within > .dropdown { transform: none; }
  .dropdown a { padding: .6em .75em; font-size: 1.02rem; }
  .nav__mobile-extra { display: grid; gap: .75rem; margin-top: 1.75rem; }
  .nav__mobile-extra .btn { width: 100%; }
  .nav__mobile-extra p { margin: .5rem 0 0; font-size: .92rem; color: var(--ink-soft); }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 400px) {
  .brand img { height: 46px; }
  .brand__name { font-size: 1.05rem; }
  .brand__tag { font-size: .66rem; }
}

/* ---------- Home hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: min(86vh, 820px);
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; margin: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(30, 20, 14, .88) 0%, rgba(30, 20, 14, .66) 40%, rgba(30, 20, 14, .12) 78%),
    linear-gradient(0deg, rgba(30, 20, 14, .6) 0%, rgba(30, 20, 14, 0) 45%);
}
.hero__content { padding: clamp(110px, 14vw, 170px) 0 clamp(44px, 6vw, 80px); max-width: 690px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.8rem, 1.6rem + 5vw, 5.4rem); line-height: 1; margin-bottom: .35em; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold); }
.hero .lead { color: #F1E6D3; max-width: 36em; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: .6rem 1.75rem;
  list-style: none; margin: 2.25rem 0 0; padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: .96rem; color: #EFE3CF;
}
.hero__facts li { display: inline-flex; align-items: center; gap: .55em; }
.hero__facts .icon { color: var(--gold); }
@media (max-width: 720px) {
  .hero { min-height: 0; }
  .hero::before { background: linear-gradient(0deg, rgba(30, 20, 14, .94) 0%, rgba(30, 20, 14, .74) 55%, rgba(30, 20, 14, .3) 100%); }
  .hero__bg img { object-position: 64% 30%; }
  .hero__content { padding-top: 180px; }
  .hero__facts { flex-direction: column; gap: .5rem; }
}

/* ---------- Pagina-kop (subpagina's) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(36px, 5.5vw, 76px) 0 clamp(44px, 6vw, 84px);
  background:
    radial-gradient(700px 420px at 100% 0%, rgba(242, 193, 74, .20), transparent 70%),
    radial-gradient(500px 360px at 0% 100%, rgba(139, 30, 36, .06), transparent 70%);
}
.page-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.page-hero--plain .page-hero__grid { grid-template-columns: 1fr; max-width: 860px; }
.page-hero h1 { margin-bottom: .4em; }
.page-hero h1.h1--long { font-size: clamp(2.1rem, 1.5rem + 2.3vw, 3.3rem); }
.page-hero .lead + .lead { margin-top: .75rem; }
.page-hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.page-hero__wide { margin-top: clamp(28px, 4vw, 52px); }
.page-hero__wide img {
  width: 100%; aspect-ratio: 1191 / 261; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
@media (max-width: 700px) { .page-hero__wide img { aspect-ratio: 16 / 7; } }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45em; margin: 0 0 1.4rem; padding: 0; list-style: none; font-size: .875rem; color: var(--ink-soft); }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--wine); text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: .45em; color: var(--line); color: #C9B894; }

.frame { position: relative; isolation: isolate; margin: 0; }
.frame::before {
  content: ""; position: absolute; z-index: -1;
  inset: 20px -20px -20px 20px;
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
}
.frame img {
  width: 100%; aspect-ratio: var(--ratio, 4 / 3); object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--bg-alt);
}
.frame figcaption { margin-top: .9rem; font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 880px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { max-width: 620px; }
  .frame::before { inset: 12px -12px -12px 12px; }
}

.doc {
  display: block; width: min(360px, 82%); margin-inline: auto;
  transform: rotate(-2.5deg); transition: transform .3s ease;
}
.doc img { border-radius: 6px; box-shadow: 0 0 0 1px var(--line), 0 36px 60px -24px rgba(36, 26, 19, .5); }
.doc:hover { transform: rotate(0) translateY(-4px); }

/* ---------- Secties ---------- */
.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--tight { padding: clamp(40px, 5vw, 68px) 0; }
.section--flush-top { padding-top: 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--brown); color: #E9DDC8; }
.section--dark h2, .section--dark h3 { color: #FFF5DE; }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .lead, .section--dark .muted { color: #D6C8AF; }

.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.section-head--row > div { max-width: 720px; }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.5em; }
.prose h3 { margin-top: 1.4em; }
.prose > :first-child, .prose .eyebrow + h2, .prose .eyebrow + h3 { margin-top: 0; }
a[href^="tel:"] { white-space: nowrap; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1em; }
.prose li { margin: .3em 0; }
.prose li::marker { color: var(--gold-deep); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 92px); align-items: center; }
.split--top { align-items: start; }
.split--wide-text { grid-template-columns: 1.2fr .8fr; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split, .split--wide-text { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--start { align-items: start; }
@media (max-width: 1000px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 660px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Kaarten ---------- */
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
a.card { text-decoration: none; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D9C69E; color: inherit; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-alt); margin: 0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
a.card:hover .card__media img { transform: scale(1.045); }
.card__badge {
  position: absolute; left: 14px; top: 14px;
  background: rgba(255, 253, 248, .94); color: var(--wine);
  font: 700 .72rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  padding: .55em .8em; border-radius: 999px;
}
.card__body { display: flex; flex-direction: column; gap: .55rem; flex: 1; padding: clamp(20px, 2.4vw, 28px); }
.card__body h3 { margin: 0; }
.card__body p { margin: 0; color: var(--ink-soft); }
.card__more { margin-top: auto; padding-top: .8rem; font-weight: 600; color: var(--wine); display: inline-flex; gap: .45em; align-items: center; }
.card__more::after { content: "\2192"; transition: transform .2s; }
a.card:hover .card__more::after { transform: translateX(4px); }
.card--compact .card__media { aspect-ratio: 16 / 10; }
.section--dark .card { background: var(--brown-2); border-color: rgba(255, 255, 255, .08); box-shadow: none; }
.section--dark a.card:hover { border-color: rgba(242, 193, 74, .5); box-shadow: 0 24px 48px -24px rgba(0, 0, 0, .6); }
.section--dark .card__body h3 { color: #FFF5DE; }
.section--dark .card__body p { color: #CDBFA6; }
.section--dark .card__more { color: var(--gold); }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 36px);
}
.panel > h2, .panel > h3 { margin-top: 0; }
.panel--gold { background: var(--gold-soft); border-color: #EFD58B; color: #43320E; }
.panel--gold h3 { color: #43320E; }
.panel__title { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.panel__title .icon-badge { width: 42px; height: 42px; }

/* ---------- Prijzen ---------- */
.price-card {
  position: relative; display: flex; flex-direction: column; gap: .9rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-sm);
}
.price-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); }
.price-card__badge {
  position: absolute; top: -13px; left: clamp(24px, 3vw, 38px);
  background: var(--gold); color: var(--brown);
  font: 700 .72rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  padding: .55em .9em; border-radius: 999px;
}
.price-card h3 { margin: 0; }
.price-card p { margin: 0; color: var(--ink-soft); }
.price-card .pricelist { margin-top: .25rem; }
.price { font: 600 clamp(2rem, 1.6rem + 1.3vw, 2.6rem)/1 var(--serif); color: var(--wine); letter-spacing: -.02em; }
.price small { margin-left: .35em; font: 500 .92rem/1 var(--sans); color: var(--ink-soft); letter-spacing: 0; }
.price-card__foot { margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line); font-size: .93rem; color: var(--ink-soft); }
.price-card a.link-arrow { margin-top: auto; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .38em .8em; border-radius: 999px;
  background: var(--gold-soft); color: #5A420F;
  font-size: .84rem; font-weight: 600; line-height: 1.3;
}
.chip .icon { width: 14px; height: 14px; }
.chip--line { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); }
.section--dark .chip--line { border-color: rgba(255,255,255,.2); color: #E9DDC8; }

.pricelist { list-style: none; margin: 0; padding: 0; }
.pricelist li { display: flex; align-items: baseline; gap: .9rem; padding: .72rem 0; border-bottom: 1px dashed var(--line); }
.pricelist li:last-child { border-bottom: 0; padding-bottom: 0; }
.pricelist li:first-child { padding-top: 0; }
.pricelist .name { flex: 1; }
.pricelist .note { display: block; font-size: .86rem; color: var(--ink-soft); }
.pricelist .amount { font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--ink); }
.pricelist__group { margin: 1.4rem 0 .6rem; font: 700 .76rem/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--wine); }
.pricelist__group:first-child { margin-top: 0; }

/* ---------- Menukaarten ---------- */
.menu-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.2vw, 44px); box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--header-h) + 80px); }
.menu-card__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: .5rem 1.5rem; padding-bottom: 1.1rem; margin-bottom: 1.4rem; border-bottom: 2px solid var(--gold); }
.menu-card__head h3 { margin: 0; }
.menu-card__price { font: 600 1.35rem/1.2 var(--serif); color: var(--wine); white-space: nowrap; }
.menu-card__price small { font: 500 .88rem/1 var(--sans); color: var(--ink-soft); margin-left: .25em; }
.menu-card__intro { color: var(--ink-soft); margin-bottom: 1.4rem; }
.menu-card__prices { display: grid; gap: .35rem; margin-bottom: 1.4rem; }
.courses { display: grid; gap: 1.5rem 2.5rem; }
.courses--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .courses--2 { grid-template-columns: 1fr; } }
.course h4 { margin: 0 0 .45rem; font: 700 .76rem/1.2 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--wine); }
.course ul { list-style: none; margin: 0; padding: 0; }
.course li { padding: .22rem 0; }
.course--divided li + li { border-top: 1px dotted var(--line); padding-top: .45rem; margin-top: .23rem; }
.course .or { display: block; margin: .15rem 0; font: italic 400 .95rem/1.4 var(--serif); color: var(--gold-deep); }
.course .extra { color: var(--gold-deep); font-weight: 600; white-space: nowrap; }
.menu-card__note { margin-top: 1.5rem; padding: 1rem 1.2rem; border-radius: var(--radius); background: var(--bg); color: var(--ink-soft); font-size: .95rem; }
.menu-card__note strong { color: var(--ink); }

.chipnav { position: sticky; top: var(--header-h); z-index: 20; background: rgba(251, 246, 234, .97); border-block: 1px solid var(--line); }
.chipnav ul { display: flex; gap: .5rem; margin: 0; padding: .75rem 0; list-style: none; overflow-x: auto; scrollbar-width: none; }
.chipnav ul::-webkit-scrollbar { display: none; }
@media (min-width: 1000px) { .chipnav ul { flex-wrap: wrap; justify-content: center; } }
.chipnav a {
  display: inline-block; white-space: nowrap;
  padding: .45em .95em; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 500;
  transition: border-color .2s, color .2s, background-color .2s;
}
.chipnav a:hover, .chipnav a.is-active { border-color: var(--wine); color: var(--wine); }
.chipnav a.is-active { background: var(--wine); color: #fff; }

/* ---------- Diversen ---------- */
.icon-badge { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--gold-soft); color: var(--wine); flex: none; }
.icon-badge .icon { width: 21px; height: 21px; }
.section--dark .icon-badge { background: rgba(242, 193, 74, .14); color: var(--gold); }

.info-list { display: grid; gap: 1.35rem; margin: 0; padding: 0; list-style: none; }
.info-list li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: start; }
.info-list h3 { margin: .1rem 0 .2rem; font: 700 .78rem/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--wine); }
.info-list p { margin: 0; }
.info-list a { color: inherit; text-decoration-color: var(--gold); }
.info-list a:hover { color: var(--wine); }
.section--dark .info-list h3 { color: var(--gold); }

.map { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--bg-alt); box-shadow: var(--shadow-sm); }
.map { display: flex; min-height: 380px; }
.map iframe { display: block; flex: 1; width: 100%; min-height: 380px; border: 0; }
.split--top > .map { align-self: stretch; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin: 2rem 0 .5rem; }
.stat { border-top: 2px solid var(--gold); padding-top: .9rem; }
.stat b { display: block; font: 600 clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem)/1 var(--serif); color: var(--wine); }
.stat span { display: block; margin-top: .35rem; font-size: .9rem; line-height: 1.4; color: var(--ink-soft); }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

.photo-stack { position: relative; padding: 0 0 clamp(40px, 6vw, 70px) 0; }
.photo-stack__main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.photo-stack__small { position: absolute; right: -4%; bottom: 0; width: 46%; margin: 0; }
.photo-stack__small img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); border: 6px solid var(--bg); box-shadow: var(--shadow); }
@media (max-width: 880px) { .photo-stack__small { right: 0; } }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 16px); }
.gallery img { width: 100%; height: 100%; aspect-ratio: var(--ratio, 3 / 4); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery > :nth-child(3):last-child { grid-column: 1 / -1; } .gallery > :nth-child(3):last-child img { aspect-ratio: 16 / 10; } .gallery--2 { grid-template-columns: 1fr; } }

.quote { position: relative; margin: 0; padding: clamp(28px, 4vw, 48px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.quote::before { content: "\201C"; position: absolute; right: 18px; top: -18px; font: 700 9rem/1 var(--serif); color: var(--gold); opacity: .45; }
.quote__date { font: 700 .76rem/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--wine); margin-bottom: 1rem; }
.quote blockquote { margin: 0; font: italic 400 clamp(1.1rem, 1rem + .45vw, 1.35rem)/1.6 var(--serif); color: var(--ink); }
.quote blockquote p + p { margin-top: .6em; }
.quote figcaption { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; font-weight: 600; color: var(--wine); }
.quote figcaption img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold-soft); }

.notice { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 1.25rem; border-radius: var(--radius); background: var(--gold-soft); color: #4A3710; }
.notice .icon { width: 22px; height: 22px; margin-top: .15rem; color: var(--wine); }
.notice p { margin: 0; }

.checks { list-style: none; margin: 1.25rem 0; padding: 0; display: grid; gap: .55rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .25em; width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B1E24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin: 1.4rem 0 0; }
.fact { padding: .8rem 1rem; border-radius: 12px; background: var(--bg-alt); }
.section--alt .fact { background: var(--surface); }
.fact span { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.fact b { display: block; margin-top: .15rem; font-weight: 600; }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; } }

.activity__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.activity h2 { font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.4rem); }
.activity h3 { font-size: 1.25rem; margin-top: 1.4em; }

.name-wall { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.name-wall li { padding: .6rem 1.05rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-weight: 500; font-size: .98rem; }

.link-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.45rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
  color: var(--ink); text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.link-card:hover { transform: translateY(-3px); border-color: var(--wine); box-shadow: var(--shadow); color: var(--ink); }
.link-card__text { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.link-card b { display: block; font: 600 1.2rem/1.25 var(--serif); }
.link-card small { display: block; margin-top: .15rem; font-size: .86rem; color: var(--ink-soft); overflow-wrap: anywhere; }
.link-card > .icon { width: 20px; height: 20px; color: var(--wine); transition: transform .2s; }
.link-card:hover > .icon { transform: translate(2px, -2px); }

.agenda { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.agenda li { display: flex; align-items: center; gap: 1rem; padding: .85rem 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.agenda__date { display: grid; place-content: center; flex: none; width: 64px; height: 64px; border-radius: 14px; background: var(--wine); color: #fff; text-align: center; line-height: 1; }
.agenda__date b { font: 600 1.55rem/1 var(--serif); }
.agenda__date span { margin-top: .25rem; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.agenda h3 { margin: 0; font-size: 1.12rem; }
.agenda p { margin: .1rem 0 0; font-size: .86rem; color: var(--ink-soft); }
.agenda li.is-tbd h3 { color: var(--ink-soft); font-style: italic; font-weight: 500; }

.video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-lg); background: var(--brown); box-shadow: var(--shadow); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Formulier ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: .93rem; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem;
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 4px rgba(139, 30, 36, .12); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #B3261E; }
.field__error { display: none; margin-top: .35rem; font-size: .85rem; color: #B3261E; }
.field.has-error .field__error { display: block; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
.form__note { margin: 0; font-size: .86rem; color: var(--ink-soft); }
.form__status { display: none; }
.form__status.is-visible { display: flex; }

.booking { min-height: 460px; }
.booking iframe { border-radius: 12px; }

/* ---------- CTA-band ---------- */
.cta {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: 1.35fr auto; gap: 1.5rem 3rem; align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--wine); color: #F6E4D2;
}
.cta::before {
  content: ""; position: absolute; z-index: -1; right: -120px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 193, 74, .38), rgba(242, 193, 74, 0) 70%);
}
.cta::after {
  content: ""; position: absolute; z-index: -1; left: -60px; bottom: -120px;
  width: 260px; height: 260px; border-radius: 50%; border: 2px solid rgba(242, 193, 74, .25);
}
.cta h2 { color: #fff; margin-bottom: .35em; }
.cta p { margin: 0; color: #F1D9C6; max-width: 46ch; }
.cta .actions { margin: 0; justify-content: flex-end; }
@media (max-width: 860px) { .cta { grid-template-columns: 1fr; } .cta .actions { justify-content: flex-start; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown); color: #CDBEA5; padding: clamp(56px, 7vw, 88px) 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer-brand img { height: 92px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 30ch; }
.site-footer h2 { margin: 0 0 1rem; font: 700 .76rem/1.2 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.site-footer a { color: #F3E7D3; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-links { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.footer-contact { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; }
.footer-contact .icon { margin-top: .3em; color: var(--gold); }
.social { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.25rem; padding: .55rem 1rem; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; }
.social:hover { border-color: var(--gold); text-decoration: none !important; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; margin-top: clamp(40px, 5vw, 64px); padding: 1.3rem 0 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; color: #A6967B; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Zwevende belknop (mobiel) ---------- */
.fab-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 45;
  display: none; align-items: center; gap: .55rem;
  padding: .9rem 1.2rem; border-radius: 999px;
  background: var(--wine); color: #fff; font-weight: 600; text-decoration: none;
  box-shadow: 0 14px 32px -10px rgba(106, 20, 25, .65);
}
.fab-call:hover { color: #fff; background: var(--wine-dark); }
.fab-call .icon { width: 19px; height: 19px; }
@media (max-width: 1200px) { .fab-call { display: inline-flex; } body { padding-bottom: 76px; } }
body.nav-open .fab-call { display: none; }

/* ---------- Scroll-animatie ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- 404 ---------- */
.not-found { text-align: center; padding: clamp(80px, 12vw, 160px) 0; }
.not-found__code { font: 600 clamp(5rem, 3rem + 10vw, 10rem)/1 var(--serif); color: var(--gold); }

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .fab-call, .cta, .chipnav, .map, .site-footer { display: none !important; }
  body { background: #fff; }
  .section, .page-hero { padding: 16px 0; }
}
