/* gcinfo.nl, fase 2: vormgeving naar het voorbeeld van Pieter.
   Donkere secties (marineblauw) afgewisseld met crème contentvakken, Gabarito voor
   koppen, Onest voor lopende tekst, amber en teal als accent. Lettertypen zijn
   zelf gehost (static/fonts) in plaats van via Google geladen, zodat er geen
   bezoekersgegevens naar Google gaan zonder toestemming. */

@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/static/fonts/gabarito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Gabarito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/static/fonts/gabarito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F;
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/static/fonts/onest-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/static/fonts/onest-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F;
}

:root {
  --inkt: #0b1024;
  --inkt-2: #171326;
  --creme: #f3ece0;
  --creme-2: #fffdf9;
  --tekst-op-inkt: #f4efe6;
  --tekst-op-creme: #171326;
  --tekst-zacht-inkt: rgba(244, 239, 230, .78);
  --tekst-zacht-creme: #4b4459;
  --amber: #f7c66b;
  --amber-hover: #ffd98d;
  --teal: #58cec5;
  --rand-op-inkt: rgba(255, 255, 255, .14);
  --rand-op-creme: rgba(23, 19, 38, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--creme);
  color: var(--tekst-op-creme);
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Gabarito', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }

/* ============ NAVIGATIE ============ */
/* Zweeft als glas over de hero-foto/artikel-kop (position:absolute, niet
   fixed): de foto begint dus gewoon bovenaan de pagina, en de balk scrolt
   samen met de hero mee weg i.p.v. permanent in beeld te blijven staan. Dat
   laatste (fixed) bleek hinderlijk, vooral op mobiel waar de balk door de
   vier menu-items + knop over meerdere regels breekt. */
.nav-omhulsel {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  padding: 20px clamp(16px, 3vw, 40px) 0;
}
.nav {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 12px 14px 12px 22px; border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.nav-logo { font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: .14em; color: var(--tekst-op-inkt); text-decoration: none; white-space: nowrap; }
.nav-scheiding { width: 1px; height: 22px; background: rgba(255, 255, 255, .18); }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14.5px; }
.nav-links a { color: rgba(244, 239, 230, .82); text-decoration: none; }
.nav-links a:hover, .nav-links a.actief { color: var(--amber); }
.nav-cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 12px;
  background: var(--amber); color: #141021; font-weight: 600; font-size: 14px; text-decoration: none;
  white-space: nowrap; box-shadow: 0 14px 30px -12px rgba(247, 198, 107, .7);
}
.nav-cta:hover { background: var(--amber-hover); }
@media (max-width: 700px) {
  /* Op smalle schermen anders de balk drie regels: logo, links, knop. De knop
     staat verderop op elke pagina al als contentlink, dus die mag hier weg;
     scheidingsstreep ook (die had toch geen functie zonder de knop ernaast). */
  .nav { gap: 12px 16px; }
  .nav-scheiding, .nav-cta { display: none; }
  .nav-links { gap: 14px 18px; }
}

/* ============ HERO (alleen homepage) ============ */
.hero {
  position: relative; color: var(--tekst-op-inkt);
  padding: clamp(50px, 8vw, 100px) 0 clamp(70px, 9vw, 120px);
  min-height: 96vh; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero-foto {
  position: absolute; inset: 0; z-index: -2; background-color: #e6c58a;
  background-image: url('/static/img/hero/maspalomas-duinen.jpg');
  background-size: cover; background-position: center 46%;
  transform: scale(1.06);
  animation: heroPan 26s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,16,36,.12) 0%, rgba(11,16,36,.08) 30%, rgba(11,16,36,.5) 68%, rgba(11,16,36,.9) 90%, var(--inkt) 100%),
              radial-gradient(55% 45% at 88% 6%, rgba(247, 198, 107, .16), transparent 60%);
}
.hero-inner { position: relative; }
.hero-label {
  position: absolute; right: clamp(20px, 4vw, 64px); top: 56%; z-index: 1;
  max-width: 150px; font: 10.5px/1.9 ui-monospace, monospace; letter-spacing: .18em;
  color: rgba(255, 255, 255, .34); text-transform: uppercase; text-align: right;
}
.hero-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244, 239, 230, .72); }
.hero-kicker span.streep { width: 38px; height: 1px; background: var(--amber); display: inline-block; }
.hero h1 { font-size: clamp(42px, 7.6vw, 112px); line-height: .95; letter-spacing: -.035em; max-width: 18ch; margin: 0 0 22px; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: rgba(244, 239, 230, .84); max-width: 58ch; margin: 0 0 30px; }

.hero-zoek {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px;
  padding: 10px 10px 10px 22px; border-radius: 20px; max-width: 660px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(24px) saturate(1.3); -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 26px 60px -26px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.hero-zoek input {
  flex: 1 1 240px; padding: 14px 0; border: none; background: transparent;
  color: #f4efe6; font-size: 16.5px; outline: none; font-family: inherit;
}
.hero-zoek input::placeholder { color: rgba(244, 239, 230, .55); }
.hero-zoek button {
  padding: 15px 26px; border-radius: 14px; border: none; cursor: pointer;
  background: var(--amber); color: #141021; font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 15.5px;
}
.hero-zoek button:hover { background: var(--amber-hover); }
.hero-veelgezocht { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.hero-veelgezocht span.label { font-size: 13px; color: rgba(244, 239, 230, .5); margin-right: 4px; }
.hero-veelgezocht a {
  padding: 9px 16px; border-radius: 12px; font-size: 14px; text-decoration: none;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); color: rgba(244, 239, 230, .85);
}
.hero-veelgezocht a:hover { background: rgba(255, 255, 255, .13); color: #fff; }

/* ============ SECTIES ============ */
.sectie { padding: clamp(70px, 9vw, 130px) 0; }
.sectie.donker { position: relative; background: var(--inkt); color: var(--tekst-op-inkt); overflow: hidden; }
.sectie.donker::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 92% 0%, rgba(247, 198, 107, .16), transparent 60%),
              radial-gradient(55% 50% at 4% 96%, rgba(88, 206, 197, .14), transparent 62%);
}
/* Elke donkere sectie krijgt in de mockup een net iets andere gloed-richting. */
#badplaatsen.sectie.donker::before {
  background: radial-gradient(65% 50% at 90% 4%, rgba(247, 198, 107, .18), transparent 60%),
              radial-gradient(60% 50% at 2% 80%, rgba(88, 206, 197, .16), transparent 62%);
}
#doen.sectie.donker::before {
  background: radial-gradient(70% 50% at 88% 0%, rgba(88, 206, 197, .18), transparent 60%),
              radial-gradient(60% 50% at 4% 70%, rgba(247, 198, 107, .14), transparent 62%);
}
#doen .teaser-grid { gap: clamp(14px, 1.6vw, 22px); }
#boeken.sectie.donker::before {
  background: radial-gradient(80% 60% at 50% -8%, rgba(247, 198, 107, .22), transparent 62%),
              radial-gradient(50% 40% at 92% 92%, rgba(88, 206, 197, .16), transparent 65%);
}
.sectie.donker > .wrap { position: relative; }
.sectie.donker .zacht { color: var(--tekst-zacht-inkt); }
.sectie.crm { background: var(--creme); color: var(--tekst-op-creme); }
.sectie.crm .zacht { color: var(--tekst-zacht-creme); }
.sectie-kop { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; color: rgba(244, 239, 230, .6); }
.sectie.crm .sectie-kop { color: #8a7a5e; }
.sectie h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.03; letter-spacing: -.03em; max-width: 22ch; margin: 0 0 18px; }
.sectie > .wrap > p.intro { font-size: 16.5px; max-width: 56ch; margin: 0 0 36px; }
.sectie-kop-rij { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-end; justify-content: space-between; margin-bottom: 42px; }
.sectie-kop-rij h2, .sectie-kop-rij p.intro { margin-bottom: 0; }

.stat-kaartje { padding: 20px 24px; border-radius: 20px; background: var(--creme-2); border: 1px solid rgba(23, 19, 38, .08); box-shadow: 0 24px 50px -28px rgba(23, 19, 38, .3); white-space: nowrap; }
.stat-groot { font-family: 'Gabarito', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.stat-klein { font-size: 14px; color: #6b6379; }

.glaspil {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px; border-radius: 15px;
  background: rgba(255, 255, 255, .08); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .18); color: var(--tekst-op-inkt); font-size: 15.5px;
  text-decoration: none; white-space: nowrap;
}
.glaspil:hover { background: rgba(255, 255, 255, .14); }

.maand-rij { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.maand-chip {
  font: inherit; cursor: pointer; padding: 12px 18px; border-radius: 13px; border: 1px solid rgba(23, 19, 38, .08);
  background: rgba(255, 253, 249, .6); color: #4b4459; font-size: 14.5px; font-weight: 500;
  transition: border-color .15s, background .15s, color .15s;
}
.maand-chip:hover { border-color: rgba(23, 19, 38, .18); }
.maand-chip.actief { border-color: rgba(23, 19, 38, .16); background: var(--inkt-2); color: #f6f1e8; }

/* ============ WEER-WIDGET (homepage) ============ */
.weer-widget { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 1.6vw, 20px); align-items: stretch; margin-bottom: 24px; }
.weer-groot-paneel {
  position: relative; overflow: hidden; border-radius: 26px; padding: clamp(26px, 2.8vw, 40px);
  background: var(--inkt-2); color: var(--tekst-op-inkt);
  box-shadow: 0 34px 70px -34px rgba(23, 19, 38, .5);
}
.weer-groot-paneel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 70% at 100% 0%, rgba(247, 198, 107, .28), transparent 60%),
              radial-gradient(60% 60% at 0% 100%, rgba(88, 206, 197, .2), transparent 62%);
}
.weer-groot-paneel > * { position: relative; }
.weer-groot-eyebrow { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244, 239, 230, .6); margin-bottom: 14px; }
.weer-cijfers { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 48px); margin-bottom: 22px; }
.weer-cijfer { font-family: 'Gabarito', sans-serif; font-size: clamp(44px, 5vw, 68px); font-weight: 700; line-height: .9; letter-spacing: -.03em; }
.weer-cijfer--teal { color: var(--teal); }
.weer-cijfer-label { font-size: 13.5px; color: rgba(244, 239, 230, .7); margin-top: 8px; }
.weer-tip { font-size: 16.5px; line-height: 1.6; color: rgba(244, 239, 230, .86); margin: 0 0 24px; max-width: 52ch; }
.weer-cta {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 24px; border-radius: 14px;
  background: var(--amber); color: #141021; font-family: 'Gabarito', sans-serif; font-weight: 700;
  font-size: 15.5px; text-decoration: none;
}
.weer-cta:hover { background: var(--amber-hover); }
.weer-zijpaneel {
  border-radius: 26px; padding: 22px; background: var(--creme-2); border: 1px solid var(--rand-op-creme);
  box-shadow: 0 28px 60px -34px rgba(23, 19, 38, .36); display: flex; flex-direction: column; justify-content: center;
}
.weer-zijpaneel .zijkaart-kop { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #8a7a5e; margin-bottom: 12px; }
.weer-zijpaneel p { font-size: 14.5px; line-height: 1.55; color: #4b4459; margin: 0 0 14px; }
.weer-zijpaneel a { font-size: 14px; font-weight: 600; color: #171326; display: inline-flex; gap: 7px; align-items: center; text-decoration: none; }
.weer-zijpaneel a:hover { color: #9a7a22; }
@media (min-width: 820px) {
  .weer-widget { grid-template-columns: 2fr 1fr; }
}

/* ============ RUBRIEKENGRID (homepage) ============ */
.rubrieken-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.rubriek-kaart {
  display: block; text-decoration: none; color: inherit;
  padding: 17px 20px; border-radius: 16px;
  background: var(--creme-2); border: 1px solid rgba(23, 19, 38, .14);
  box-shadow: 0 22px 44px -28px rgba(23, 19, 38, .4);
  transition: border-color .18s;
}
.rubriek-kaart:hover { border-color: rgba(23, 19, 38, .22); }
.rubriek-nr { font-family: 'Roboto Mono', ui-monospace, monospace; font-size: 12.5px; opacity: .55; min-width: 26px; }
.rubriek-titel { font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 17.5px; margin: 6px 0 8px; }
.rubriek-count { font-size: 13px; opacity: .55; }

/* ============ TEASERKAARTEN (tekst, geen foto): weer/doen/eten ============ */
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.teaser-kaart {
  display: block; text-decoration: none; color: inherit; padding: 22px 24px; border-radius: 18px;
  background: var(--creme-2); border: 1px solid var(--rand-op-creme);
  box-shadow: 0 16px 36px -26px rgba(23, 19, 38, .3), inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.teaser-kaart:hover { transform: translateY(-2px); border-color: rgba(23, 19, 38, .22); }
.teaser-kaart .teaser-titel { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.teaser-kaart .teaser-tekst { font-size: 14px; line-height: 1.55; color: var(--tekst-zacht-creme); margin-bottom: 14px; }
.teaser-kaart .teaser-link { font-size: 13.5px; font-weight: 600; }

.teaser-kaart.glas {
  border-radius: 26px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, .6);
}
.teaser-kaart.glas:hover { border-color: rgba(247, 198, 107, .4); }
.teaser-kaart.glas .teaser-titel { color: #fff; font-size: 21px; letter-spacing: -.015em; }
.teaser-kaart.glas .teaser-tekst { color: rgba(244, 239, 230, .8); font-size: 14.5px; }
.teaser-kaart.glas .teaser-link { color: var(--amber); }

/* Eten-sectie: horizontaal scrollende rij i.p.v. grid, loopt tot de vieuwport-rand */
.eten-scroll {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px clamp(20px, 4vw, 64px) 30px;
}
.eten-kaart { flex: 0 0 clamp(260px, 26vw, 330px); scroll-snap-align: start; border-radius: 24px; }

/* ============ KAARTEN: badplaatsen (fotokaart met zwevend glaspaneel) ============ */
.kaarten-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(14px, 1.6vw, 20px); }
.kaart {
  position: relative; min-height: 430px; border-radius: 26px; overflow: hidden;
  text-decoration: none; color: inherit; display: flex;
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, .6);
}
.kaart-beeld { position: absolute; inset: 0; background: #dcd2c0; }
.kaart-beeld img { width: 100%; height: 100%; object-fit: cover; }
.kaart-beeld::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 36, 0) 26%, rgba(11, 16, 36, .78) 100%);
}
.kaart-inhoud {
  position: relative; margin: auto 14px 14px; padding: 20px 22px; border-radius: 22px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 22px 48px -22px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .2);
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}
.kaart-kop-rij { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.kaart-titel { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 23px; letter-spacing: -.02em; color: #fff; margin: 0; }
.kaart-badge { font-size: 12px; padding: 5px 10px; border-radius: 8px; background: rgba(247, 198, 107, .2); color: var(--amber); white-space: nowrap; }
.kaart-tekst { font-size: 14.5px; line-height: 1.55; color: rgba(244, 239, 230, .82); margin: 0; }
.kaart-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: rgba(244, 239, 230, .68); }
.kaart-voet { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .14); }
.kaart-link { font-size: 13.5px; font-weight: 600; color: var(--amber); }

/* ============ BOEKEN ============ */
.boek-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 1.8vw, 20px); margin-bottom: 26px; }
.boek-kaart {
  display: flex; flex-direction: column; padding: clamp(22px, 2.2vw, 30px); border-radius: 24px;
  color: var(--tekst-op-inkt); text-decoration: none;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .16);
  transition: transform .18s, border-color .18s;
}
.boek-kaart:hover { transform: translateY(-3px); border-color: rgba(247, 198, 107, .4); }
.boek-kaart.boek-hoofd {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(247, 198, 107, .4);
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.boek-kop { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.boek-titel { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 19px; }
.boek-badge { font-size: 11.5px; padding: 5px 11px; border-radius: 8px; background: var(--amber); color: #141021; font-weight: 600; white-space: nowrap; }
.boek-tekst { font-size: 15px; line-height: 1.6; color: rgba(244, 239, 230, .82); margin: 0 0 20px; }
.boek-lijst { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.boek-lijst li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--tekst-zacht-inkt); }
.boek-lijst li::before { content: '✦'; color: var(--amber); }
.boek-cta { margin-top: auto; padding: 16px 22px; border-radius: 15px; text-align: center; font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 16px; }
.boek-kaart:not(.boek-hoofd) .boek-cta { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); }
.boek-hoofd .boek-cta { background: var(--amber); color: #141021; box-shadow: 0 20px 44px -16px rgba(247, 198, 107, .6); }

/* ============ PARTNERS ============ */
.partners-balk { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; padding: 24px 28px; border-radius: 22px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .11); text-align: left; }
.partners-tekst { font-size: 14.5px; color: rgba(244, 239, 230, .68); max-width: 38ch; line-height: 1.6; }
.partners-logos { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.partners-logos a { display: inline-flex; }
.partners-logos img { max-height: 34px; width: auto; filter: grayscale(1) brightness(1.6); opacity: .85; }
.partners-logos a:hover img { filter: none; opacity: 1; }

/* ============ STICKY-BALK ============ */
@keyframes floatUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.sticky-balk-omhulsel { position: fixed; left: 0; right: 0; bottom: 0; z-index: 39; padding: 14px clamp(14px, 3vw, 40px) clamp(14px, 2vw, 22px); pointer-events: none; opacity: 0; transform: translateY(18px); transition: opacity .3s, transform .3s; }
.sticky-balk-omhulsel.zichtbaar { pointer-events: none; opacity: 1; transform: none; }
.sticky-balk {
  pointer-events: auto; max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between; padding: 14px 16px 14px 24px; border-radius: 22px;
  background: rgba(23, 19, 38, .72);
  backdrop-filter: blur(26px) saturate(1.4); -webkit-backdrop-filter: blur(26px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.sticky-info { display: flex; align-items: center; gap: 16px; color: var(--tekst-op-inkt); }
.sticky-icoon { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; flex: 0 0 auto; }
.sticky-titel { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 16.5px; }
.sticky-sub { font-size: 13.5px; color: rgba(244, 239, 230, .7); }
.sticky-acties { display: flex; align-items: center; gap: 14px; }
.sticky-acties > a:not(.sticky-cta) { font-size: 14.5px; color: rgba(244, 239, 230, .8); text-decoration: none; }
.sticky-acties > a:not(.sticky-cta):hover { color: #fff; }
.sticky-cta { display: inline-flex; align-items: center; gap: 9px; padding: 15px 26px; border-radius: 15px; background: var(--amber); color: #141021; font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 16px 34px -14px rgba(247, 198, 107, .65); }
.sticky-cta:hover { background: var(--amber-hover); }
@media (max-width: 640px) {
  /* Merkbaar slanker op mobiel: geen ondertitel, geen tweede link, kleinere
     foto en een minder dominante knop, in plaats van de volle desktop-balk. */
  .sticky-balk-omhulsel { padding: 8px 10px 10px; }
  .sticky-balk { padding: 8px 10px 8px 12px; gap: 10px; border-radius: 16px; }
  .sticky-sub { display: none; }
  .sticky-icoon { width: 36px; height: 36px; border-radius: 9px; }
  .sticky-titel { font-size: 14px; }
  .sticky-acties > a:not(.sticky-cta) { display: none; }
  .sticky-cta { padding: 10px 16px; font-size: 13.5px; border-radius: 11px; gap: 6px; }
}

/* ============ ARTIKELPAGINA ============ */
.artikel-kop {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--tekst-op-inkt); padding: 104px 0 44px;
  background-color: var(--inkt); background-size: cover; background-position: center 42%;
}
.artikel-kop::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,16,36,.55) 0%, rgba(11,16,36,.72) 55%, var(--inkt) 100%);
}
.kruimelpad { font-size: 13.5px; color: rgba(244, 239, 230, .62); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.kruimelpad a { text-decoration: none; }
.kruimelpad a:hover { color: var(--amber); }
.kruimelpad .huidig { color: var(--amber); }
.artikel-kop h1 { font-size: clamp(28px, 4vw, 44px); max-width: 26ch; }
.artikel-kop p.lead { font-size: clamp(16px, 1.2vw, 17.5px); line-height: 1.6; color: rgba(244, 239, 230, .8); max-width: 58ch; margin: 0 0 22px; }
.artikel-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(244, 239, 230, .55); }
.artikel-lijf { background: var(--creme-2); }
.artikel-lijf .wrap { max-width: 1120px; padding-top: 44px; padding-bottom: 60px; }

/* tweekoloms leesomgeving: artikel + zijbalk */
.artikel-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.artikel-hoofd { max-width: 660px; }
@media (max-width: 880px) {
  .artikel-layout { grid-template-columns: 1fr; }
  .artikel-hoofd { max-width: none; }
}

.artikel-inhoud .voorzin { font-size: 18.5px; line-height: 1.7; color: #2a2440; margin: 0 0 26px; }
.artikel-inhoud h2 { font-size: 27px; letter-spacing: -.015em; line-height: 1.15; margin: 1.5em 0 .55em; scroll-margin-top: 110px; }
.artikel-inhoud h3 { font-size: 20px; letter-spacing: -.01em; margin: 1.3em 0 .5em; }
.artikel-inhoud p { margin: 0 0 1.1em; font-size: 16.5px; line-height: 1.75; color: var(--tekst-zacht-creme); }
.artikel-inhoud ul, .artikel-inhoud ol { margin: 0 0 1.1em; padding-left: 1.3em; font-size: 16.5px; line-height: 1.65; color: var(--tekst-zacht-creme); }
.artikel-inhoud li { margin-bottom: .5em; }
.artikel-inhoud a { color: #9a6a1f; text-decoration: underline; text-underline-offset: 2px; }
.artikel-inhoud a:hover { color: var(--amber); }
.artikel-inhoud img { border-radius: 14px; margin: 1.4em 0; }

.artikel-inhoud table { border-collapse: collapse; width: 100%; margin: 1.4em 0; font-size: 15.5px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 44px -30px rgba(23, 19, 38, .3); }
.artikel-inhoud thead tr { background: var(--inkt-2); color: var(--tekst-op-inkt); text-align: left; }
.artikel-inhoud th { padding: 13px 18px; font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 14px; }
.artikel-inhoud td { padding: 13px 18px; border-top: 1px solid var(--rand-op-creme); }
.artikel-inhoud tbody tr:nth-child(even) { background: #f8f3e9; }

.artikel-inhoud blockquote { margin: 1.8em 0; padding: 0 0 0 22px; border-left: 3px solid var(--amber); }
.artikel-inhoud blockquote p { font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 20px; line-height: 1.4; letter-spacing: -.01em; color: var(--tekst-op-creme); margin: 0 0 8px; }
.artikel-inhoud blockquote cite { font-size: 13.5px; color: #8a7a5e; font-style: normal; }

.artikel-inhoud details { padding: 16px 20px; border-radius: 15px; background: var(--creme-2); border: 1px solid var(--rand-op-creme); margin-bottom: 10px; }
.artikel-inhoud details summary { font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 16px; cursor: pointer; }
.artikel-inhoud details p { margin: 10px 0 0; font-size: 15px; }

/* tip- en waarschuwingskaders */
.kader { margin: 1.6em 0; padding: 20px 24px; border-radius: 16px; }
.kader.tip { background: var(--creme-2); border: 1px solid var(--rand-op-creme); box-shadow: 0 18px 40px -30px rgba(23, 19, 38, .3); }
.kader.tip .kader-kop { display: flex; gap: 10px; align-items: flex-start; }
.kader.tip .kader-kop::before { content: '✦'; color: var(--amber); font-size: 16px; }
.kader.tip .kader-titel { font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.kader.tip p { margin: 0; font-size: 15px; }
.kader.waarschuwing { background: var(--inkt-2); color: var(--tekst-op-inkt); }
.kader.waarschuwing .kader-titel { font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 15px; color: var(--amber); margin-bottom: 4px; }
.kader.waarschuwing p { margin: 0; font-size: 15px; color: rgba(244, 239, 230, .85); }

/* onderaan-artikel CTA */
.artikel-cta { margin-top: 2em; padding: 24px 26px; border-radius: 18px; background: var(--inkt-2); color: var(--tekst-op-inkt); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; box-shadow: 0 26px 56px -30px rgba(23, 19, 38, .5); }
.artikel-cta-titel { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.artikel-cta-tekst { font-size: 14px; color: rgba(244, 239, 230, .72); }
.artikel-cta-knop { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 14px; background: var(--amber); color: #141021; font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 14.5px; white-space: nowrap; }

/* zijbalk */
.artikel-zijbalk { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
.zijkaart { padding: 20px 22px; border-radius: 18px; background: var(--creme-2); border: 1px solid var(--rand-op-creme); box-shadow: 0 20px 44px -30px rgba(23, 19, 38, .3); }
.zijkaart-kop { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8a7a5e; margin-bottom: 12px; }
.zijkaart.donker { background: var(--inkt-2); color: var(--tekst-op-inkt); box-shadow: 0 20px 44px -30px rgba(23, 19, 38, .5); }
.zijkaart.donker .zijkaart-kop { color: rgba(244, 239, 230, .55); }

.toc-lijst { display: flex; flex-direction: column; gap: 2px; }
.toc-lijst a { padding: 7px 0 7px 12px; font-size: 13.5px; color: #6b6379; border-left: 2px solid transparent; text-decoration: none; }
.toc-lijst a:hover { color: var(--tekst-op-creme); }
.toc-lijst a.actief { color: var(--tekst-op-creme); font-weight: 600; border-left-color: var(--amber); }

.snellinks { display: flex; flex-direction: column; gap: 11px; }
.snellinks a { display: flex; justify-content: space-between; gap: 8px; font-size: 14px; color: var(--tekst-op-inkt); text-decoration: none; }
.snellinks a:hover { color: var(--amber); }
.snellinks a span.pijl { color: var(--amber); }
.zijkaart.donker .zijkaart-voet { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 11.5px; color: rgba(244, 239, 230, .5); }

.leesook { display: flex; flex-direction: column; gap: 11px; }
.leesook a { font-size: 14px; font-weight: 600; color: var(--tekst-op-creme); line-height: 1.4; text-decoration: none; }
.leesook a:hover { color: #9a6a1f; }

/* ============ FOOTER ============ */
footer.voet { background: var(--inkt); color: rgba(244, 239, 230, .7); padding: clamp(50px, 6vw, 80px) 0 40px; border-top: 1px solid rgba(255, 255, 255, .08); }
.voet-boven { display: flex; flex-wrap: wrap; gap: 44px; justify-content: space-between; margin-bottom: 34px; }
.voet-kolommen { display: flex; gap: clamp(28px, 4.5vw, 64px); flex-wrap: wrap; font-size: 14.5px; }
.voet-merk { font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: .14em; color: var(--tekst-op-inkt); margin-bottom: 14px; }
.voet-kolom { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.voet-kolom strong { color: var(--tekst-op-inkt); font-family: 'Gabarito', sans-serif; font-weight: 600; margin-bottom: 2px; }
.voet-kolom a { text-decoration: none; }
.voet-kolom a:hover { color: var(--amber); }
.voet-onder { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }

/* ============ WEER: HUIDIG + WEEKOVERZICHT (artikelpagina's) ============ */
.weernu-kaart {
  display: flex; align-items: center; gap: 20px; margin: 2.2em 0; padding: 22px 26px; border-radius: 20px;
  background: var(--inkt-2); color: var(--tekst-op-inkt); box-shadow: 0 24px 50px -30px rgba(23, 19, 38, .4);
}
.weernu-temp { font-family: 'Gabarito', sans-serif; font-size: clamp(40px, 5vw, 56px); font-weight: 700; letter-spacing: -.03em; color: var(--teal); }
.weernu-omschrijving { font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 17px; }
.weernu-details { font-size: 13.5px; color: rgba(244, 239, 230, .65); margin-top: 4px; }

.weekoverzicht { margin: 2.2em 0; }
.weekoverzicht h2 { margin-bottom: 4px; }
.weekoverzicht-bijschrift { font-size: 13px; color: var(--tekst-zacht-creme); opacity: .85; margin: 0 0 16px; }
.weekoverzicht-rij { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.weekoverzicht-dag {
  padding: 16px 12px; border-radius: 16px; text-align: center; background: var(--creme-2);
  border: 1px solid var(--rand-op-creme); box-shadow: 0 18px 38px -28px rgba(23, 19, 38, .3);
}
.weekoverzicht-naam { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 14.5px; }
.weekoverzicht-datum { font-size: 12px; color: var(--tekst-zacht-creme); opacity: .75; margin-bottom: 10px; }
.weekoverzicht-omschrijving { font-size: 12.5px; color: var(--tekst-zacht-creme); min-height: 2.4em; margin-bottom: 8px; }
.weekoverzicht-temps strong { font-family: 'Gabarito', sans-serif; font-size: 16px; }
.weekoverzicht-temps span { font-size: 13.5px; color: var(--tekst-zacht-creme); opacity: .7; margin-left: 4px; }

/* ============ VLUCHTENBORD ============ */
.vluchtenbord { margin: 2.2em 0; }
.vluchtenbord-kop { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; margin-bottom: 14px; }
.vluchtenbord-kop h2 { margin: 0; }
.vluchtenbord-bijschrift { font-size: 13px; color: var(--tekst-zacht-creme); opacity: .85; }
.vluchtenbord-scroll { overflow-x: auto; border-radius: 16px; box-shadow: 0 20px 44px -30px rgba(23, 19, 38, .3); }
.vluchtenbord-tabel { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 14.5px; }
.vluchtenbord-tabel thead tr { background: var(--inkt-2); color: var(--tekst-op-inkt); text-align: left; }
.vluchtenbord-tabel th { padding: 12px 16px; font-family: 'Gabarito', sans-serif; font-weight: 600; font-size: 13px; white-space: nowrap; }
.vluchtenbord-tabel td { padding: 11px 16px; border-top: 1px solid var(--rand-op-creme); background: var(--creme-2); white-space: nowrap; }
.vluchtenbord-tabel tbody tr:nth-child(even) td { background: #f8f3e9; }
.vluchtenbord-status { display: inline-block; padding: 4px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 600; }
.vluchtenbord-status--ok { background: rgba(88, 206, 197, .18); color: #1c7d74; }
.vluchtenbord-status--vertraagd { background: rgba(247, 198, 107, .25); color: #92650f; }
.vluchtenbord-status--geannuleerd { background: rgba(193, 68, 58, .14); color: #c1443a; }
.vluchtenbord-leeg { font-size: 15px; color: var(--tekst-zacht-creme); padding: 18px 20px; background: var(--creme-2); border-radius: 14px; border: 1px solid var(--rand-op-creme); }

/* ============ CONTACTFORMULIER ============ */
.formulier { display: flex; flex-direction: column; gap: 18px; margin: 1.6em 0; max-width: 640px; }
.formulier .onderwerp-keuze { display: flex; gap: 10px; flex-wrap: wrap; }
.formulier .onderwerp-keuze label {
  flex: 1 1 200px; display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: 13px; border: 1px solid var(--rand-op-creme);
  background: var(--creme-2); font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.formulier .onderwerp-keuze input { accent-color: var(--teal); }
.formulier .onderwerp-keuze label:has(input:checked) { border-color: var(--teal); background: rgba(88, 206, 197, .1); }
.veld { display: flex; flex-direction: column; gap: 6px; }
.veld label { font-size: 13.5px; font-weight: 600; color: var(--tekst-zacht-creme); }
.veld label .hint { font-weight: 400; opacity: .75; }
.veld input, .veld textarea {
  font: inherit; font-size: 15.5px; padding: 12px 15px; border-radius: 12px;
  border: 1px solid var(--rand-op-creme); background: var(--creme-2); color: var(--tekst-op-creme);
}
.veld input:focus, .veld textarea:focus { outline: none; border-color: var(--teal); }
.veld textarea { min-height: 130px; resize: vertical; }
.veld.alleen-bedrijf { display: none; }
.formulier.toont-bedrijf .veld.alleen-bedrijf { display: flex; }
.veld.heeft-fout input, .veld.heeft-fout textarea { border-color: #c1443a; }
.fout { font-size: 13px; color: #c1443a; min-height: 1em; }
/* honeypot-velden: voor mensen onzichtbaar, voor eenvoudige bots vaak wel invulbaar */
.hp { position: absolute; left: -9999px; top: -9999px; }
.formulier .knop-verstuur {
  align-self: flex-start; border: 0; cursor: pointer; font: inherit;
  padding: 13px 26px; border-radius: 13px; background: var(--amber); color: #141021;
  font-weight: 700; font-size: 15px; box-shadow: 0 16px 34px -14px rgba(247, 198, 107, .7);
}
.formulier .knop-verstuur:hover { background: var(--amber-hover); }
.formulier .knop-verstuur:disabled { opacity: .6; cursor: default; }
.form-status { font-size: 14.5px; font-weight: 600; min-height: 1.3em; }
.form-status.fout-status { color: #c1443a; }
.form-status.ok-status { color: #1c8f6c; }

/* ============ HULP: fase-1 overzichtspagina ============ */
.overzicht-lijst { list-style: none; padding: 0; margin: 0; columns: 2; gap: 24px; }
.overzicht-lijst li { break-inside: avoid; margin-bottom: 8px; font-size: 14px; }
.overzicht-lijst span { color: var(--tekst-zacht-creme); font-size: 12.5px; display: block; }

@media (max-width: 640px) {
  .overzicht-lijst { columns: 1; }
}
