/*
Theme Name:  Café Dims
Theme URI:   https://cafedims.nl/
Author:      Mixxd Media
Author URI:  https://mixxdmedia.com/
Description: Custom theme voor Café Dims Horst. Warme, moody site met 8 secties (hero, welkom, filosofie, signatures, menu, gallerij, events en contact/footer). Gebouwd vanuit het Claude Design handoff-ontwerp.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cafe-dims
Tags:        restaurant, cafe, one-page, custom-menu, custom-logo, full-width-template
*/

/* ───── Custom webfont: Casko Luxury (serif, voor headers) ───── */
@font-face {
  font-family: 'Casko Luxury';
  src: url('assets/fonts/casko-luxury.woff2') format('woff2'),
       url('assets/fonts/casko-luxury.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Casko Luxury';
  src: url('assets/fonts/casko-luxury-italic.woff2') format('woff2'),
       url('assets/fonts/casko-luxury-italic.woff')  format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root{
  --bg-deep: rgb(42,31,20);
  --bg-deeper: rgb(26,20,14);
  --bg-cream: rgb(245,239,230);
  --bg-cream-2: rgb(240,237,224);
  --text-light: rgb(240,237,224);
  --text-dark: rgb(42,31,20);
  --text-mid: rgb(90,68,48);
  --gold: #d4b48d;
  --gold-hover: #e2c6a6;
  --container: 1440px;
  --pad-x: clamp(24px, 5.5vw, 80px);
}
*{ box-sizing: border-box; margin:0; padding:0; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  scrollbar-color: var(--gold) var(--bg-deeper);
  scrollbar-width: thin;
}
html::-webkit-scrollbar{ width: 10px; height: 10px; }
html::-webkit-scrollbar-track{ background: var(--bg-deeper); }
html::-webkit-scrollbar-thumb{
  background: var(--gold);
  border-radius: 5px;
  border: 2px solid var(--bg-deeper);
}
html::-webkit-scrollbar-thumb:hover{ background: var(--gold-hover); }
html,body{ background: var(--bg-deep); overflow-x: clip; }
body{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; }

/* Full-bleed sections; content constrained inside */
.page{
  width: 100%;
  background: var(--bg-deep);
  overflow-x: hidden;
}
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

/* ───── Typography helpers ───── */
.eyebrow{
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--mid{ color: var(--text-mid); }
.italic-sub{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}
h1,h2,h3,
.hero__title,
.welkom__title,
.gedraag__quote,
.sigs__title,
.menu__head h2,
.gallery__head h2,
.events__title,
.reviews__title,
.footer__cta-text{
  font-family: 'League Spartan', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

/* Accent-woorden (`<em>` binnen headings) = League Spartan Bold Italic UPPERCASE.
   Omdat League Spartan geen echte italic op Google Fonts heeft, laten we Chrome
   een lichte skew (synthetic italic) renderen — ziet er strak uit bij bold caps. */
/* League Spartan heeft geen native italic op Google Fonts, dus
   behouden we echte weight 900 en renderen we de cursieve look via
   transform: skew(). Dat garandeert bold + italic visuele look. */
h1 em, h2 em, h3 em,
.hero__title em,
.welkom__title em,
.gedraag__quote em,
.sigs__title em,
.menu__head h2 em,
.gallery__head h2 em,
.events__title em,
.reviews__title em,
.footer__cta-text em{
  font-family: 'League Spartan', sans-serif !important;
  font-style: normal !important;
  font-weight: 900 !important;
  color: var(--gold);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-block;
  transform: skew(-9deg);
  transform-origin: center;
}

/* ───── Buttons ───── */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 36px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text-light);
  white-space: nowrap;
  transition: background .3s cubic-bezier(0.22, 1, 0.36, 1),
              color .3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color .3s cubic-bezier(0.22, 1, 0.36, 1),
              transform .25s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.btn:active{ transform: scale(0.97); }
.btn--filled{ background: var(--gold); border-color: var(--gold); color: var(--text-dark); }
.btn--filled:hover{ background: var(--gold-hover); border-color:var(--gold-hover); }
.btn--outline-light{ border-color: rgba(240,237,224,0.45); color: var(--text-light); }
.btn--outline-light:hover{ border-color: var(--text-light); background: rgba(240,237,224,0.05); }
.btn--outline-dark{ border-color: rgba(42,31,20,0.45); color: var(--text-dark); }
.btn--outline-dark:hover{ border-color: var(--text-dark); background: rgba(42,31,20,0.05); }

/* ───── 01 Hero ───── */
.hero{
  position: relative;
  height: 820px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__img, .hero__shade{ position:absolute; inset:0; }
.hero__img{
  display: block;
  overflow: hidden;
  animation: heroImageIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__img-inner,
.hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* Fallback voor legacy background-image divs (404.php etc.) */
.hero__img:not(picture){
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
}
@keyframes heroImageIn {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hero__shade{
  background: linear-gradient(rgba(26,20,15,0.9) 0%, rgba(26,20,15,0.35) 55%, rgba(26,20,15,0.85) 100%);
}
.nav{
  position: absolute; left:50%; transform: translateX(-50%); top:0;
  width: 100%; max-width: var(--container);
  height: 80px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 var(--pad-x);
  z-index: 3;
}
.logo{ height: 44px; width:auto; }
.logo--nav{ height: 36px; }
.nav__links{
  display:flex; gap: 36px;
  list-style: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links a{
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .18s ease, color .18s ease;
}
.nav__links a:hover,
.nav__links .current-menu-item > a,
.nav__links .current_page_item > a{ opacity: 1; color: var(--gold); }

.hero__content-wrap{
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
}
.hero__content{ max-width: 900px; }
.hero__kicker{
  color: var(--gold); margin-bottom: 28px;
  animation: heroTextIn .8s cubic-bezier(0.22, 1, 0.36, 1) .25s both;
}
.hero__title{
  font-size: 96px;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--text-light);
  margin-bottom: 28px;
  animation: heroTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) .4s both;
}
.hero__title em{ font-style: italic; color: var(--gold); font-weight: 400; }
.hero__lede{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(240,237,224,0.78);
  max-width: 520px;
  margin-bottom: 48px;
  animation: heroTextIn .8s cubic-bezier(0.22, 1, 0.36, 1) .6s both;
}
.hero__ctas{
  display:flex; gap: 14px;
  animation: heroTextIn .8s cubic-bezier(0.22, 1, 0.36, 1) .78s both;
}
.scroll-hint{ animation: heroTextIn .8s cubic-bezier(0.22, 1, 0.36, 1) 1s both; }
.scroll-hint-wrap{
  position: absolute; left:0; right:0; top: 764px; z-index: 2;
  pointer-events: none;
}
.scroll-hint-wrap .container{ display:flex; justify-content: flex-end; }
.scroll-hint{
  display:flex; align-items:center; gap: 12px;
  pointer-events: auto;
}
.scroll-hint span{
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(240,237,224,0.55);
}
.scroll-hint .line{
  width: 48px; height: 1px; background: rgba(240,237,224,0.55);
  position: relative; overflow: hidden;
}
.scroll-hint .line::after{
  content:""; position:absolute; top:0; left:-48px; width:24px; height:100%;
  background: var(--gold);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{ transform: translateX(0); }
  60%{ transform: translateX(72px); }
  100%{ transform: translateX(72px); opacity: 0; }
}

/* ───── 02 Welkom ───── */
.welkom{
  position: relative;
  background: var(--bg-deep);
  padding: 120px 0;
}
.welkom .container{ display:flex; gap: 80px; align-items:center; }
.welkom__text{ flex: 0 1 540px; min-width: 0; }
.welkom__kicker{ color: var(--gold); margin-bottom: 20px; }
.welkom__title{
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.welkom__title em{ font-style: italic; color: var(--gold); font-weight:400; }
.welkom__body{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(240,237,224,0.72);
  margin-bottom: 28px;
}
.welkom__meta{
  display:flex; gap: 40px; padding-top: 28px;
  border-top: 1px solid rgba(240,237,224,0.12);
}
.welkom__meta > div{ display:flex; flex-direction:column; gap: 6px; }
.welkom__meta .num{
  font-family:'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-size: 44px; font-weight: 500; color: var(--gold);
  font-style: italic;
  line-height: 1;
}
.welkom__meta .lbl{
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,237,224,0.6);
}
.welkom__img{
  flex: 1;
  height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 4px;
}

/* ───── 03 Gedraag Ow ───── */
.gedraag{
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg-deeper);
  display:flex; align-items:center;
}
.gedraag__img, .gedraag__shade{ position:absolute; inset:0; }
.gedraag__img{ background-position: center; background-size: cover; background-repeat: no-repeat; }
.gedraag__shade{
  background: linear-gradient(90deg, rgba(26,20,13,0.92) 0%, rgba(26,20,13,0.7) 45%, rgba(26,20,13,0.15) 100%);
}
.gedraag .container{ position: relative; z-index: 2; padding-top: 140px; padding-bottom: 140px; }
.gedraag__inner{
  max-width: 640px;
  display: flex; flex-direction: column; gap: 28px;
}
.gedraag__quote{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 1.05;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.gedraag__quote em{ font-style: italic; color: var(--gold); font-weight:400; }
.gedraag__body{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(240,237,224,0.72);
  max-width: 480px;
}
.gedraag__sig{
  display:flex; align-items:center; gap: 14px; margin-top: 14px;
}
.gedraag__sig .dash{ width: 40px; height: 1px; background: var(--gold); }
.gedraag__sig span{
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}

/* ───── 04 Signatures ───── */
.sigs{
  padding: 120px 0;
  background: var(--bg-cream);
  color: var(--text-dark);
}
.sigs__head{
  display:flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.sigs__title{
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-dark);
  max-width: 600px;
  margin-top: 16px;
  letter-spacing: -0.005em;
}
.sigs__title em{ font-style: italic; color: var(--text-mid); font-weight:400; }
.sigs__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sig-card{ display:flex; flex-direction: column; gap: 20px; }
.sig-card__img{
  height: 360px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.sig-card__img::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,20,13,0.25));
}
.sig-card__row{
  display:flex; justify-content: space-between; align-items: center;
  padding-top: 4px;
}
.sig-card__tag{
  font-size: 11px; letter-spacing: .24em; font-weight: 700;
  text-transform: uppercase;
  color: var(--text-mid);
}
.sig-card__price{
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-mid);
}
.sig-card__name{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--text-dark);
  line-height: 1.2;
}
.sig-card__desc{
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(42,31,20,0.65);
}

/* ───── 05 Menu ───── */
.menu{
  padding: 120px 0;
  background: var(--bg-deep);
  color: var(--text-light);
  position: relative;
}
.menu__head{ text-align: center; margin-bottom: 48px; }
.menu__head .eyebrow{ display:block; margin-bottom: 20px; }
.menu__head h2{
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.menu__head h2 em{ font-style: italic; color: var(--gold); font-weight:400; }

.menu__tabs{
  display:flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 80px;
  padding-top: 8px;
}
.menu__tab{
  background: transparent;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240,237,224,0.55);
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
  border-radius: 2px;
}
.menu__tab:hover{ color: var(--text-light); }
.menu__tab.is-active{
  color: var(--gold);
  border-color: rgba(196,164,108,0.45);
}

.menu__panel{ display:none; }
.menu__panel.is-active{ display:block; }
.menu__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  margin: 0 auto;
}
.menu__col-head{ margin-bottom: 24px; }
.menu__col-head .italic-sub{ display:block; margin-bottom: 16px; }
.menu__col-divider{
  border-top: 1px solid rgba(240,237,224,0.15);
  margin-bottom: 24px;
}
.menu__col-label{ display:block; margin-bottom: 16px; }

.menu-row{
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 18px 0;
  gap: 24px;
  border-bottom: 1px solid rgba(240,237,224,0.08);
}
.menu-row:last-child{ border-bottom: 0; }
.menu-row__left{ flex: 1; min-width: 0; }
.menu-row__name{
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.menu-row__desc{
  font-weight: 300;
  font-size: 13px;
  color: rgba(240,237,224,0.55);
  line-height: 1.5;
}
.menu-row__price{
  font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
}

/* ───── 06 Gallerij ───── */
.gallery{
  background: var(--bg-deeper);
  padding: 140px 0;
}
.gallery__head{
  display:flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.gallery__head h2{
  font-size: 52px; line-height: 1.1;
  color: var(--text-light);
  max-width: 480px;
  margin-top: 16px;
  letter-spacing: -0.005em;
}
.gallery__head h2 em{ font-style: italic; color: var(--gold); font-weight:400; }
.gallery__grid{
  display:grid;
  grid-template-rows: 300px 300px;
  gap: 24px;
}
.gallery__row{
  display:grid;
  gap: 24px;
}
.gallery__row--a{ grid-template-columns: 513fr 367fr 367fr; }
.gallery__row--b{ grid-template-columns: 367fr 367fr 513fr; }
.gallery__tile{
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .5s ease;
}
.gallery__tile::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(26,20,13,0) 55%, rgba(26,20,13,0.55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery__tile:hover{ transform: scale(1.02); }
.gallery__tile:hover::after{ opacity: 1; }

/* ───── 07 Live & Events ───── */
.events{
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 140px 0;
}
.events .container{ display:flex; gap: 80px; align-items:center; }
.events__img{
  flex: 0 1 560px; height: 480px;
  border-radius: 4px;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  min-width: 0;
}
.events__text{ flex: 1; min-width: 0; }
.events__kicker{ color: var(--text-mid); margin-bottom: 20px; }
.events__title{
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.events__title em{ font-style: italic; color: var(--text-mid); font-weight:400; }
.events__body{
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(42,31,20,0.7);
  margin-bottom: 40px;
  max-width: 480px;
}
.next-event{
  display:flex; align-items: center; gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(42,31,20,0.15);
  border-radius: 4px;
  max-width: 460px;
  background: rgba(253,250,243,0.5);
}
.next-event__date{
  display:flex; flex-direction: column; align-items: center; gap: 2px;
  padding-right: 24px;
  border-right: 1px solid rgba(42,31,20,0.15);
  min-width: 64px;
}
.next-event__day{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--text-dark);
}
.next-event__mo{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--text-mid);
  margin-top: 4px;
}
.next-event__info h4{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.next-event__info p{
  font-size: 13px;
  color: rgba(42,31,20,0.6);
  line-height: 1.4;
}

/* ───── 08 Contact & Footer ───── */
.footer{
  background: var(--bg-deeper);
  color: var(--text-light);
  padding: 120px 0 60px;
}
.footer__top{
  display:flex; justify-content: space-between; align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}
.footer__brand{ max-width: 420px; }
.footer__brand img{ height: 64px; width:auto; margin-bottom: 32px; }
.footer__cta-text{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.footer__cta-text em{ font-style: italic; color: var(--gold); font-weight:400; }
.footer__phone{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  text-decoration: none;
}
.footer__btns{
  display:flex; flex-direction: column; gap: 12px;
  padding-top: 16px;
}
.footer__divider{
  height: 1px;
  background: rgba(240,237,224,0.15);
  margin-bottom: 48px;
}
.footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.footer__col h5{
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul{ list-style: none; display:flex; flex-direction:column; gap: 10px; }
.footer__col a, .footer__col li{
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(240,237,224,0.72);
  text-decoration: none;
  transition: color .18s ease;
  display: flex; justify-content: space-between; gap: 12px;
}
.footer__col a:hover{ color: var(--gold); }
.footer__col li span:last-child{
  color: rgba(240,237,224,0.5);
  font-variant-numeric: tabular-nums;
}

.footer__bottom{
  display:flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(240,237,224,0.08);
  font-size: 12px;
  color: rgba(240,237,224,0.35);
}
.footer__bottom a{ color: inherit; text-decoration: none; }
.footer__bottom a:hover{ color: var(--gold); }

/* Responsive */
@media (max-width: 900px){
  :root{ --pad-x: 20px; }
  .welkom .container, .events .container{ flex-direction: column; align-items: stretch; gap: 24px; }
  .welkom__text, .events__text{ flex: 0 0 auto !important; height: auto; }
  .welkom__img, .events__img{ width: 100%; height: 280px; flex: 0 0 auto; }
  .welkom{ padding: 80px 0; }
  .welkom__meta{ gap: 24px; flex-wrap: wrap; }

  .gedraag{ min-height: auto; }
  .gedraag .container{ padding-top: 80px; padding-bottom: 80px; }
  .gedraag__shade{ background: linear-gradient(180deg, rgba(26,20,13,0.75), rgba(26,20,13,0.92)); }

  .sigs{ padding: 80px 0; }
  .sigs__grid{ grid-template-columns: 1fr; gap: 40px; }
  .sig-card__img{ height: 280px; }
  .sigs__head, .gallery__head, .footer__top{ flex-direction: column; align-items: flex-start; gap: 32px; }

  .menu{ padding: 80px 0; }
  .menu__head{ margin-bottom: 64px; }
  .menu__tabs{ margin-top: 16px; margin-bottom: 56px; gap: 8px; row-gap: 10px; }
  .menu__grid{ grid-template-columns: 1fr; gap: 56px; padding: 0; }
  .menu__col-head{ margin-top: 8px; }

  .gallery{ padding: 80px 0; }
  .gallery__row--a, .gallery__row--b{ grid-template-columns: 1fr 1fr; }
  .gallery__grid{ grid-template-rows: repeat(3, 200px); }
  .gallery__row{ display: contents; }

  .events{ padding: 80px 0; }
  .events__body{ margin-bottom: 28px; }

  .footer{ padding: 80px 0 40px; }
  .footer__cols{ grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-bottom: 48px; }
  .footer__top{ margin-bottom: 48px; }
  .footer__brand img{ height: 52px; margin-bottom: 24px; }
  .footer__bottom{ flex-direction: column; gap: 12px; align-items: flex-start; }

  .hero{ height: auto; min-height: 100vh; }
  .hero__title{ font-size: 56px; line-height: 1.05; }
  .hero__lede{ font-size: 15px; }
  .hero__content-wrap{ position: static; padding: 140px 0 120px; }
  .hero__ctas{ flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__ctas .btn{ width: 100%; }
  .scroll-hint-wrap{ display: none; }
  .nav__links{ display:none; }
  .nav{ padding: 0 20px; }
  .nav .btn{ padding: 12px 22px; font-size: 10px; letter-spacing: .18em; }
}

@media (max-width: 480px){
  .hero__title{ font-size: 44px; }
  .footer__cols{ grid-template-columns: 1fr; }
  .gallery__grid{ grid-template-rows: repeat(3, 180px); }
}

/* Scroll reveal. Framer-style spring easing + stagger.
   Gate via .js-reveal (inline <script> in head) zodat elementen
   zonder JS gewoon zichtbaar blijven. Server-side rendered .reveal
   klasse voorkomt "flash of visible content". */
.js-reveal .reveal{
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity .9s cubic-bezier(0.22, 1, 0.36, 1),
    transform .9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-in{ opacity: 1; transform: translate3d(0, 0, 0); }

/* Welkom sectie, langzamer + iets groter */
.js-reveal .welkom__text.reveal{ transition-duration: 1s; }
.js-reveal .welkom__img.reveal{ transition-duration: 1.1s; transition-delay: .1s; transform: translate3d(0, 48px, 0) scale(0.98); }
.js-reveal .welkom__img.reveal.is-in{ transform: translate3d(0, 0, 0) scale(1); }

/* Signature cards, cascaded */
.js-reveal .sig-card.reveal{ transform: translate3d(0, 48px, 0); }
.js-reveal .sigs__grid .sig-card:nth-child(1).reveal{ transition-delay: 0s; }
.js-reveal .sigs__grid .sig-card:nth-child(2).reveal{ transition-delay: .12s; }
.js-reveal .sigs__grid .sig-card:nth-child(3).reveal{ transition-delay: .24s; }
.sig-card{ transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1); }
.sig-card:hover{ transform: translateY(-8px); }
.sig-card__img{ transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.sig-card:hover .sig-card__img{ transform: scale(1.05); }

/* Gallery tiles, cascaded per tile */
.js-reveal .gallery__row .gallery__tile:nth-child(1).reveal{ transition-delay: 0s; }
.js-reveal .gallery__row .gallery__tile:nth-child(2).reveal{ transition-delay: .08s; }
.js-reveal .gallery__row .gallery__tile:nth-child(3).reveal{ transition-delay: .16s; }

/* Menu row hover + next event card hover */
.menu-row{ transition: border-bottom-color .3s ease; }
.menu-row:hover{ border-bottom-color: rgba(240,237,224,0.2); }
.next-event{ transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1),
                         border-color .35s ease,
                         background .35s ease; }
.next-event:hover{ transform: translateY(-2px); border-color: rgba(42,31,20,0.3); }

/* Respecteer reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html{ scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal{ opacity: 1 !important; transform: none !important; }
  .scroll-hint .line::after{ animation: none !important; }
}

/* Social icon row (footer), overrule footer__col ul defaults */
.footer__col .social-icons,
.social-icons{
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col .social-icons li,
.social-icons li{
  display: inline-flex !important;
  justify-content: center !important;
  padding: 0 !important;
  gap: 0 !important;
}
/* Force-center de icon zelf (overrulet .footer__col a's gap/justify) */
.footer__col a.social-icon,
.social-icon{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 !important;
  line-height: 1;
  font-size: 0;
}
.social-icon svg{ display: block; margin: 0; }
.social-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(240,237,224,0.18);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: background .25s cubic-bezier(0.22, 1, 0.36, 1),
              border-color .25s cubic-bezier(0.22, 1, 0.36, 1),
              color .25s cubic-bezier(0.22, 1, 0.36, 1),
              transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.social-icon:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.social-icon svg{ color: currentColor; }
.social-icon svg [stroke]{ stroke: currentColor; }
.social-icon svg [fill]:not([fill="none"]){ fill: currentColor; }
.social-icon:hover svg{ color: var(--text-dark); }
.social-icon:active{ transform: translateY(0) scale(0.95); }
.social-icon:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* ═════════════════════════════════════════════════════════
   Sticky header (verschijnt na scroll > 400px)
   ════════════════════════════════════════════════════════ */
.sticky-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(26, 20, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240,237,224,0.08);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.sticky-nav.is-visible{
  transform: translateY(0);
  pointer-events: auto;
}
/* Als WP admin-bar actief is: sticky-nav eronder laten zakken */
.admin-bar .sticky-nav{ top: 32px; }
.admin-bar .mobile-menu{ top: 32px; }
@media screen and (max-width: 782px){
  .admin-bar .sticky-nav{ top: 46px; }
  .admin-bar .mobile-menu{ top: 46px; }
}
.sticky-nav__inner{
  max-width: var(--container);
  margin: 0 auto;
  height: 72px;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-nav__brand img{ height: 36px; width: auto; display: block; }
.sticky-nav__brand .logo{ height: 36px; }
.sticky-nav__actions .btn{ padding: 16px 36px; font-size: 11px; letter-spacing: 0.22em; }
.sticky-nav__links{ flex: 1; display: flex; justify-content: center; }
.sticky-nav__menu{
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0; padding: 0;
}
.sticky-nav__menu a{
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .18s, color .18s;
}
.sticky-nav__menu a:hover{ opacity: 1; color: var(--gold); }
.sticky-nav__actions{ display: flex; align-items: center; gap: 14px; }
.btn--sm{ padding: 10px 22px; font-size: 10px; letter-spacing: 0.2em; }

/* Hamburger button */
.hamburger{
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hamburger span{
  display: block;
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--text-light);
  border-radius: 1px;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), opacity .2s, top .3s, background .2s;
}
.hamburger span:nth-child(1){ top: 13px; }
.hamburger span:nth-child(2){ top: 19px; }
.hamburger span:nth-child(3){ top: 25px; }

/* Hamburger in hero-nav (altijd zichtbaar op mobile) */
.nav .hamburger{ display: none; }

@media (max-width: 900px){
  .sticky-nav__menu{ display: none; }
  .sticky-nav__inner{ height: 56px; }
  .sticky-nav__actions .btn{ display: none; }
  .hamburger, .sticky-nav__actions .hamburger{ display: block; }
}

/* Ook een hamburger in de hero-nav (mobile only) */
@media (max-width: 900px){
  .nav{ justify-content: space-between; }
  .nav .btn--outline-light{ display: none; }
  .nav .hamburger{ display: block; }
}

/* Wanneer mobile menu open is: verberg hamburger in hero + sticky */
body.mobile-menu-open .hamburger{ opacity: 0; pointer-events: none; }

/* ═════════════════════════════════════════════════════════
   Mobile full-screen menu
   ════════════════════════════════════════════════════════ */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--bg-deep);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(196,164,108,0.10), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(196,164,108,0.06), transparent 50%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .35s cubic-bezier(0.22, 1, 0.36, 1),
              transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
body.mobile-menu-open{ overflow: hidden; }
body.mobile-menu-open .mobile-menu{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu__inner{
  min-height: 100%;
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobile-menu__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}
.mobile-menu__brand img{ height: 32px; width: auto; display: block; }
.mobile-menu__close{
  background: transparent;
  border: 0;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  line-height: 0;
}
.mobile-menu__close:hover{ color: var(--gold); }

.mobile-menu__nav{ flex: 1; display: flex; align-items: center; }
.mobile-menu__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.mobile-menu__links li{
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity .4s;
}
body.mobile-menu-open .mobile-menu__links li{ transform: translateY(0); opacity: 1; }
body.mobile-menu-open .mobile-menu__links li:nth-child(1){ transition-delay: 0.12s; }
body.mobile-menu-open .mobile-menu__links li:nth-child(2){ transition-delay: 0.18s; }
body.mobile-menu-open .mobile-menu__links li:nth-child(3){ transition-delay: 0.24s; }
body.mobile-menu-open .mobile-menu__links li:nth-child(4){ transition-delay: 0.30s; }
body.mobile-menu-open .mobile-menu__links li:nth-child(5){ transition-delay: 0.36s; }
.mobile-menu__links a{
  display: block;
  padding: 8px 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-light);
  text-decoration: none;
  transition: color .18s, transform .2s;
  border-bottom: 1px solid rgba(240,237,224,0.06);
}
.mobile-menu__links{ gap: 2px !important; }
.mobile-menu__links a:hover,
.mobile-menu__links a:focus{ color: var(--gold); transform: translateX(6px); }

.mobile-menu__cta{
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu__cta .btn{ width: 100%; justify-content: center; padding: 18px 24px; }

.mobile-menu__social{
  display: flex !important;
  gap: 14px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(240,237,224,0.08);
  list-style: none;
  margin: 0;
}
.mobile-menu__social .social-icon{ width: 48px; height: 48px; }

@media (min-width: 901px){
  .mobile-menu{ display: none !important; }
}

/* Reviews sectie + sterren */
.reviews{
  padding: 120px 0;
  background: var(--bg-cream);
  color: var(--text-dark);
}
.reviews__head{ text-align: center; margin-bottom: 64px; }
.reviews__title{
  font-size: 48px; line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.005em;
  margin: 16px 0 32px;
}
.reviews__title em{ font-style: italic; color: var(--text-mid); font-weight: 400; }
.reviews__summary{
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
}
.reviews__rating-value{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.reviews__count{
  font-size: 13px;
  color: rgba(42,31,20,0.65);
}
.reviews__count a{ color: var(--text-mid); border-bottom: 1px solid rgba(42,31,20,0.2); transition: border-color .2s ease; }
.reviews__count a:hover{ border-bottom-color: var(--text-dark); }

.cd-stars{ display: inline-flex; gap: 2px; color: var(--gold); }
.cd-stars svg{ width: 16px; height: 16px; }
.cd-stars--large svg{ width: 24px; height: 24px; }

.reviews__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card{
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(42,31,20,0.08);
  padding: 28px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 16px;
  margin: 0;
}
.review-card .cd-stars{ margin-bottom: 4px; }
.review-card__text{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}
.review-card__author{
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}
@media (max-width: 900px){
  .reviews{ padding: 80px 0; }
  .reviews__grid{ grid-template-columns: 1fr; gap: 20px; }
  .reviews__title{ font-size: 36px; }
  .reviews__rating-value{ font-size: 40px; }
}

/* Reservation modal (GoTable). Dims stijl */
body.cd-reserve-open{
  position: fixed;
  width: 100%;
  overflow: hidden;
}
.cd-reserve-modal{
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cd-reserve-modal.is-open{ opacity: 1; pointer-events: auto; }
.cd-reserve-modal[hidden]{ display: none !important; }

.cd-reserve-modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(12,8,4,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cd-reserve-modal__panel{
  position: relative;
  width: min(560px, 92vw);
  max-height: min(92vh, 860px);
  background: var(--bg-cream);
  color: var(--text-dark);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 3px solid var(--gold);
}
.cd-reserve-modal.is-open .cd-reserve-modal__panel{ transform: translateY(0) scale(1); }

.cd-reserve-modal__head{
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(42,31,20,0.1);
  gap: 16px;
}
.cd-reserve-modal__head .eyebrow{
  color: var(--text-mid);
  display: block;
  margin-bottom: 8px;
}
.cd-reserve-modal__head h2{
  font-family: 'League Spartan', 'Casko Luxury', 'Playfair Display', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0;
}
.cd-reserve-modal__head h2 em{
  font-style: italic;
  color: var(--text-mid);
  font-weight: 400;
}
.cd-reserve-modal__close{
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(42,31,20,0.2);
  color: var(--text-dark);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.cd-reserve-modal__close:hover{ background: var(--gold); border-color: var(--gold); }
.cd-reserve-modal__close:active{ transform: scale(0.94); }

.cd-reserve-modal__frame-wrap{
  position: relative;
  flex: 1;
  min-height: 480px;
  background: var(--bg-cream-2);
}
.cd-reserve-modal__loading{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-mid);
  pointer-events: none;
}
.cd-reserve-modal__iframe{
  position: relative;
  width: 100%; height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  background: var(--bg-cream-2);
  z-index: 1;
}

@media (max-width: 600px){
  .cd-reserve-modal__panel{ width: 100vw; max-height: 100vh; border-radius: 0; border-top: 0; }
  .cd-reserve-modal__head{ padding: 20px 20px 16px; }
  .cd-reserve-modal__head h2{ font-size: 26px; }
}

/* Floating "Reserveer" FAB (alleen in floating-mode) */
.cd-reserve-fab{
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--text-dark);
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.cd-reserve-fab:hover{ background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); }
.cd-reserve-fab:active{ transform: translateY(0) scale(0.97); }
.cd-reserve-fab svg{ flex: none; }

/* Inline reservation (shortcode [cd_reserveer]) */
.cd-reserve-inline{ padding: 40px 0; }

/* Instagram feed grid */
.insta-feed{ padding: 140px 0; background: var(--bg-deeper); }
.insta-feed__notice{ color: rgba(240,237,224,0.45); font-size: 12px; margin-top: 12px; }
.insta-feed__grid{
  display: grid;
  grid-template-columns: repeat(var(--cd-insta-cols, 3), 1fr);
  gap: 16px;
}
.insta-feed__tile{
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-deep);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.insta-feed__tile img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.insta-feed__tile:hover{ transform: translateY(-3px); }
.insta-feed__tile:hover img{ transform: scale(1.06); }
.insta-feed__tile::after{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,13,0) 50%, rgba(26,20,13,0.55));
  opacity: 0; transition: opacity .3s ease;
}
.insta-feed__tile:hover::after{ opacity: 1; }
@media (max-width: 900px){
  .insta-feed{ padding: 80px 0; }
  .insta-feed__grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* 404 pagina */
.hero--404{ height: 100vh; min-height: 600px; }

/* ═════════════════════════════════════════════════════════
   Subpage template (Werken bij, Huisregels, Privacy)
   ════════════════════════════════════════════════════════ */
.page-subpage{ background: var(--bg-deep); color: var(--text-light); }

.subpage__hero{
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg-deeper);
  display: flex; align-items: center;
}
.subpage__hero-img,
.subpage__hero-shade{ position: absolute; inset: 0; }
.subpage__hero-img{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: heroImageIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.subpage__hero-shade{
  background: linear-gradient(rgba(26,20,15,0.92) 0%, rgba(26,20,15,0.65) 50%, rgba(26,20,15,0.92) 100%);
}
.subpage__hero-wrap{
  position: relative; z-index: 2;
  width: 100%;
  padding: 180px 0 80px;
}
.subpage__hero-kicker{ color: var(--gold); margin-bottom: 20px; }
.subpage__hero-title{
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  color: var(--text-light);
  letter-spacing: -0.01em;
  max-width: 900px;
}

.subpage__content{
  padding: 100px 0 140px;
  background: var(--bg-deep);
}
/* Container net zo breed als header + footer (--container = 1440px).
   Body-tekst behoudt een leesbare max-width zodat regels niet te lang worden. */
.subpage__container{ max-width: var(--container); }
.subpage__body{
  font-size: 17px;
  line-height: 1.8;
  color: rgba(240,237,224,0.82);
  max-width: 860px;
}
.subpage__body h2{
  font-size: 32px;
  color: var(--text-light);
  margin: 48px 0 20px;
  letter-spacing: -0.005em;
}
.subpage__body h3{
  font-size: 22px;
  color: var(--gold);
  margin: 36px 0 14px;
}
.subpage__body p{ margin-bottom: 22px; }
.subpage__body ul, .subpage__body ol{
  margin: 0 0 24px 22px;
  padding: 0;
}
.subpage__body li{ margin-bottom: 8px; }
.subpage__body strong{ color: var(--text-light); font-weight: 600; }
.subpage__body a{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.subpage__body a:hover{ color: var(--gold-hover); }
.subpage__body blockquote{
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  color: var(--text-light);
  font-size: 20px;
}

.subpage__back{ margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(240,237,224,0.08); }

@media (max-width: 900px){
  .subpage__hero-wrap{ padding: 140px 0 60px; }
  .subpage__content{ padding: 70px 0 100px; }
  .subpage__body{ font-size: 16px; }
  .subpage__body h2{ font-size: 26px; margin: 36px 0 14px; }
}

/* Scroll-to-top button */
.scroll-top{
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 40; /* onder sticky-nav en modal, maar boven content */
}
/* Als de GoTable floating-FAB aanwezig is: scroll-top hoger zetten zodat ze niet overlappen */
body:has(.cd-reserve-fab) .scroll-top{ bottom: calc(clamp(16px, 3vw, 32px) + 64px); }
/* Verberg scroll-top bij open mobile menu */
body.mobile-menu-open .scroll-top{ opacity: 0; pointer-events: none; }

.scroll-top{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity .35s cubic-bezier(0.22, 1, 0.36, 1),
              transform .35s cubic-bezier(0.22, 1, 0.36, 1),
              background .25s ease;
  z-index: 50;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.scroll-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top:hover{ background: var(--gold-hover); }
.scroll-top:active{ transform: translateY(0) scale(0.94); }
.scroll-top:focus-visible{ outline: 2px solid var(--text-light); outline-offset: 4px; }

/* WPBakery compatibiliteit, onze eigen sections zijn al full-bleed,
   dus de vc_row/vc_column wrappers mogen niks toevoegen. */
.wpb_row,
.vc_row,
.vc_row-fluid{ margin: 0 !important; }
.wpb_row > .wpb_column,
.vc_row > .vc_column_container,
.vc_column_container > .vc_column-inner,
.wpb_column > .vc_column-inner,
.wpb_wrapper{ padding: 0 !important; }
.vc_row-fluid [class*="vc_col-"]{ padding-left: 0 !important; padding-right: 0 !important; }

/* Als de user een Café Dims-sectie in een "full height" WPBakery-row zet,
   laat onze sectie mee-schalen naar 100vh ipv de vaste height die ons design
   gebruikt, anders ontstaan zwarte banden boven/onder. */
.vc_row-o-full-height{ min-height: 100vh !important; height: auto !important; }
.vc_row-o-full-height > .wpb_column,
.vc_row-o-full-height > .vc_column_container{ width: 100% !important; }
.vc_row-o-full-height .hero,
.vc_row-o-full-height .welkom,
.vc_row-o-full-height .gedraag,
.vc_row-o-full-height .sigs,
.vc_row-o-full-height .menu,
.vc_row-o-full-height .gallery,
.vc_row-o-full-height .events,
.vc_row-o-full-height .footer{
  min-height: 100vh !important;
  height: auto !important;
}
/* Hero content centrering blijft werken binnen de flexbox van full-height rows */
.vc_row-o-full-height .hero__content-wrap{ position: absolute; inset: 0; }
.vc_row-o-full-height .scroll-hint-wrap{ top: auto !important; bottom: 56px !important; }

/* WPBakery content-alignment modifiers die onze layout anders breken */
.vc_row-o-content-middle,
.vc_row-o-content-bottom,
.vc_row-o-content-top{ align-items: stretch !important; }
.vc_row-o-equal-height > .wpb_column > .vc_column-inner > .wpb_wrapper{ height: 100%; }

/* WP / a11y */
.screen-reader-text{
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; overflow: hidden; position: absolute !important; word-wrap: normal !important;
}
.skip-link{
  position: absolute; left: -9999px; top: 10px; z-index: 9999; background: var(--gold); color: var(--text-dark);
  padding: 8px 12px; text-decoration: none; font-weight: 700;
}
.skip-link:focus{ left: 10px; }
