*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ocean:   #0B7A8A;
  --ocean-d: #095E6B;
  --sand:    #F6EFE3;
  --sand-d:  #E8DECA;
  --coral:   #D95A35;
  --coral-l: #E8744F;
  --gold:    #C8913A;
  --text:    #1C1E1F;
  --muted:   #68706E;
  --white:   #FDFAF6;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }

/* ─── NAV ──────────────────────────────── */
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  padding: 0 4rem; height: 84px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,246,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,122,138,.1);
}
.nav-logo { display: flex; align-items: center; gap: 1.1rem; text-decoration: none; }
.logo-svg  { width: 76px; height: 76px; flex-shrink: 0; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--ocean-d); display: block; line-height: 1.15; }
.logo-sub  { font-size: .67rem; color: var(--muted); letter-spacing: .13em; text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ocean); }
.nav-cta { background: var(--ocean) !important; color: white !important; padding: .58rem 1.5rem; border-radius: 2rem; font-weight: 600 !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--ocean-d) !important; }

/* ─── HERO ─────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #062E35 0%, #0B5E6A 40%, #0E8A7A 100%);
}
@keyframes slowzoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,94,107,.55) 0%,
    rgba(9,94,107,.25) 40%,
    rgba(10,20,22,.75) 75%,
    rgba(10,20,22,.92) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 6rem 6.5rem; max-width: 900px;
  animation: fadeUp .9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.9); font-size: .73rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .44rem 1.1rem; border-radius: 2rem; margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.4vw, 5rem); font-weight: 700;
  color: white; line-height: 1.1; margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: #7DDDE8; }
.hero-sub {
  font-size: 1.07rem; color: rgba(255,255,255,.76);
  max-width: 555px; font-weight: 300; margin-bottom: 2.5rem; line-height: 1.82;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-w {
  background: white; color: var(--ocean-d);
  padding: .88rem 2.2rem; border-radius: 2rem;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s;
}
.btn-w:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.25); }
.btn-g {
  border: 2px solid rgba(255,255,255,.42); color: white;
  padding: .88rem 2.2rem; border-radius: 2rem;
  font-weight: 500; font-size: .95rem; text-decoration: none; transition: background .2s;
}
.btn-g:hover { background: rgba(255,255,255,.12); }
.scroll-hint {
  position: absolute; bottom: 2.2rem; right: 6rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: pulse 2.2s ease infinite; }
@keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: .12; } }

/* ─── INTRO BAND ───────────────────────── */
.intro-band { background: var(--ocean-d); padding: 3rem 6rem; display: flex; align-items: center; gap: 2.5rem; }
.ib-icon { width: 50px; height: 50px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.intro-band p { font-family: 'Cormorant Garamond', serif; font-size: 1.38rem; font-style: italic; color: rgba(255,255,255,.9); line-height: 1.62; }
.intro-band p strong { font-style: normal; color: #7DDDE8; }

/* ─── PHOTO STRIP ──────────────────────── */
.strip { display: grid; grid-template-columns: repeat(4,1fr); height: 360px; overflow: hidden; }
.strip-item { overflow: hidden; position: relative; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s; }
.strip-item:hover img { transform: scale(1.07); }
.strip-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .85rem 1.1rem;
  background: linear-gradient(transparent, rgba(9,94,107,.72));
  color: white; font-size: .76rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
}

/* ─── HELPERS ──────────────────────────── */
.sec { padding: 6rem; }
.lbl { font-size: .71rem; text-transform: uppercase; letter-spacing: .18em; color: var(--coral); font-weight: 600; margin-bottom: .8rem; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.1rem,3.3vw,3.1rem); font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 1.1rem; }
h2 em { font-style: italic; color: var(--ocean); font-family: 'Cormorant Garamond', serif; }
.lead { font-size: 1.03rem; color: var(--muted); font-weight: 300; line-height: 1.85; max-width: 560px; }

/* ─── MISSIE ───────────────────────────── */
.missie { display: grid; grid-template-columns: 1fr 1fr; }
.mv-left { padding: 6rem; background: var(--white); }
.mv-right { position: relative; overflow: hidden; min-height: 540px; }
.mv-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mv-right-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,122,138,.12), transparent); }
.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 2.8rem; }
.mvc { background: var(--sand); border-radius: 1.1rem; padding: 1.6rem; }
.mvc-icon { width: 36px; height: 36px; background: var(--ocean); border-radius: .6rem; display: flex; align-items: center; justify-content: center; margin-bottom: .85rem; }
.mvc h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--ocean-d); margin-bottom: .3rem; }
.mvc p { font-size: .83rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
.mvc.wide { grid-column: 1/-1; background: #EDF5F5; }
.mvc.wide p { font-size: .94rem; color: var(--text); line-height: 1.85; font-weight: 300; }

/* ─── DISCIPLINES ──────────────────────── */
.disc { background: var(--ocean-d); padding: 6rem; }
.disc .lbl { color: #7DDDE8; }
.disc h2 { color: white; }
.disc h2 em { color: #7DDDE8; }
.disc .lead { color: rgba(255,255,255,.6); max-width: 100%; }
.disc-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.disc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.dc {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem; padding: 1.9rem;
  transition: background .25s, transform .25s;
}
.dc:hover { background: rgba(255,255,255,.11); transform: translateY(-5px); }
.dc-no { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: rgba(125,221,232,.2); line-height: 1; margin-bottom: .85rem; }
.dc h4 { color: white; font-weight: 600; font-size: .97rem; margin-bottom: .4rem; }
.dc p  { color: rgba(255,255,255,.52); font-size: .85rem; font-weight: 300; line-height: 1.62; }
.dc-accent { background: rgba(217,90,53,.14); border-color: rgba(217,90,53,.3); }
.dc-accent .dc-no { color: rgba(232,116,79,.28); }
.dc-accent h4 { color: #F09E80; }

/* ─── WERKWIJZE ────────────────────────── */
.werk { background: var(--sand); padding: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(11,122,138,.12); }
.step:last-child { border-bottom: none; }
.snum { width: 36px; height: 36px; border-radius: 50%; background: var(--ocean); color: white; font-weight: 700; font-size: .82rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.step h4 { font-weight: 600; font-size: .97rem; color: var(--ocean-d); margin-bottom: .22rem; }
.step p  { font-size: .87rem; color: var(--muted); font-weight: 300; line-height: 1.62; }
.werk-img { position: relative; border-radius: 1.4rem; overflow: hidden; height: 520px; }
.werk-img img { width: 100%; height: 100%; object-fit: cover; }
.werk-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,94,107,.58) 0%, transparent 55%); }
.werk-tag {
  position: absolute; bottom: 1.8rem; left: 1.8rem;
  background: white; border-radius: .9rem; padding: .9rem 1.3rem;
  display: flex; align-items: center; gap: .85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
}
.wt-ic { width: 40px; height: 40px; background: var(--ocean); border-radius: .6rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wt-txt strong { display: block; font-size: .88rem; color: var(--text); }
.wt-txt span   { font-size: .76rem; color: var(--muted); font-weight: 300; }

/* ─── QUOTE ────────────────────────────── */
.quote-sec {
  background: var(--coral); padding: 5rem 6rem; text-align: center;
  position: relative; overflow: hidden;
}
.quote-sec::before {
  content: '\201C'; position: absolute; top: -4rem; left: 3rem;
  font-family: 'Cormorant Garamond', serif; font-size: 20rem; color: rgba(255,255,255,.07); line-height: 1;
}
.quote-sec blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.7vw, 2.6rem);
  font-style: italic; color: white;
  max-width: 820px; margin: 0 auto 1.3rem; line-height: 1.55;
  position: relative;
}
.quote-src { font-size: .78rem; color: rgba(255,255,255,.62); letter-spacing: .12em; text-transform: uppercase; }


/* ─── DISCIPLINE CLICK EXPAND ───────────── */
.dc-click { cursor: pointer; }
.dc-more {
  font-size: .83rem; color: rgba(255,255,255,.68); font-weight: 300;
  line-height: 1.65; margin-top: .8rem;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .35s ease;
  opacity: 0;
}
.dc-click.open .dc-more { max-height: 200px; opacity: 1; }
.dc-toggle {
  display: inline-block; margin-top: .6rem;
  font-size: .73rem; color: rgba(125,221,232,.7);
  font-weight: 600; letter-spacing: .06em;
  transition: color .2s;
}
.dc-click.open .dc-toggle { color: rgba(125,221,232,1); }

/* ─── BIO TOGGLE ───────────────────────── */
.bio-toggle {
  background: none; border: none; padding: 0;
  color: var(--ocean); font-size: .82rem; font-weight: 600;
  cursor: pointer; margin-top: .65rem; display: inline-block;
  font-family: 'Outfit', sans-serif;
  transition: color .2s;
}
.bio-toggle:hover { color: var(--ocean-d); }
.bio-extra {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}
.bio-extra.open {
  max-height: 600px; opacity: 1;
}
.bio-extra p { font-size: .83rem; color: var(--muted); font-weight: 300; line-height: 1.65; margin-top: .7rem; }

/* ─── PROFESSIONALS ────────────────────── */
.team { background: var(--white); padding: 6rem; }
.team-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.team-notice {
  background: var(--sand); border-left: 3px solid var(--ocean);
  padding: 1.2rem 1.5rem; border-radius: 0 .8rem .8rem 0;
  font-size: .87rem; color: var(--muted); font-style: italic; font-weight: 300; line-height: 1.72;
}
.prof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.prof-card { border-radius: 1.2rem; overflow: hidden; border: 1px solid var(--sand-d); transition: transform .25s, box-shadow .25s; }
.prof-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(11,122,138,.13); }
.prof-photo { aspect-ratio: 2 / 3; overflow: hidden; position: relative; background: var(--sand); }
.prof-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.prof-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.prof-body { padding: 1.4rem; }
.prof-role { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ocean); font-weight: 600; margin-bottom: .3rem; }
.prof-body h4 { font-weight: 600; font-size: 1rem; margin-bottom: .18rem; }
.prof-praktijk { font-size: .77rem; color: var(--muted); margin-bottom: .55rem; }
.prof-body p { font-size: .83rem; color: var(--muted); font-weight: 300; line-height: 1.55; }
.disclaimer { margin-top: 2.5rem; padding: 1.1rem 1.5rem; background: var(--sand); border-radius: .8rem; font-size: .79rem; color: var(--muted); font-style: italic; }

/* ─── EILAND ───────────────────────────── */
.eiland { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.eiland-img { position: relative; overflow: hidden; }
.eiland-img img { width: 100%; height: 100%; object-fit: cover; }
.eiland-img-ov { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(246,239,227,1) 100%); }
.eiland-txt { background: var(--sand); padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.eiland-txt .lead { max-width: 100%; }

/* ─── ACTIVITEITEN ─────────────────────── */
.act { background: var(--white); padding: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.act-list { display: flex; flex-direction: column; gap: 1rem; }
.act-card {
  background: var(--sand); border-radius: 1rem; padding: 1.4rem 1.6rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: transform .2s;
}
.act-card:hover { transform: translateX(5px); }
.act-ic { width: 44px; height: 44px; border-radius: .7rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.act-card h4 { font-size: .94rem; font-weight: 600; margin-bottom: .18rem; color: var(--text); }
.act-card p  { font-size: .83rem; color: var(--muted); font-weight: 300; line-height: 1.55; }
.act-card.soon { opacity: .58; }
.soon-badge { display: inline-block; font-size: .68rem; background: var(--sand-d); color: var(--muted); padding: .1rem .6rem; border-radius: 1rem; margin-left: .5rem; font-style: italic; }

/* ─── CONTACT ──────────────────────────── */
.contact { background: var(--sand); padding: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info p { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 2rem; }
.cd { display: flex; flex-direction: column; gap: .85rem; }
.cd-row { display: flex; align-items: center; gap: .85rem; font-size: .9rem; color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg label { display: block; font-size: .81rem; font-weight: 500; color: var(--text); margin-bottom: .38rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: .83rem 1rem;
  border: 1.5px solid var(--sand-d); border-radius: .62rem;
  font-family: 'Outfit', sans-serif; font-size: .92rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(11,122,138,.1);
}
.fg textarea { height: 130px; resize: vertical; }
.btn-send {
  background: var(--ocean); color: white;
  padding: .95rem 2.4rem; border: none; border-radius: 2rem;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s; align-self: flex-start;
}
.btn-send:hover { background: var(--ocean-d); transform: translateY(-2px); }
.btn-send:disabled { opacity: .6; cursor: progress; transform: none; }
/* Honeypot — visueel én voor screenreaders verborgen, blijft invulbaar voor bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin-top: .2rem; padding: .8rem 1.1rem; border-radius: .7rem;
  font-size: .88rem; font-weight: 500; line-height: 1.5;
}
.form-status.ok  { background: #E7F4EE; color: #1B6B47; border: 1px solid #BFE3CF; }
.form-status.err { background: #FBEAE5; color: #A23A1E; border: 1px solid #F2C9BC; }
.fg input.invalid, .fg textarea.invalid { border-color: var(--coral) !important; }

/* ─── FOOTER ───────────────────────────── */
footer { background: var(--text); padding: 4rem 6rem 2rem; }
.ft-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem; }
.ft-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: .9rem; }
.ft-brand p { font-size: .87rem; color: rgba(255,255,255,.46); font-weight: 300; line-height: 1.76; max-width: 320px; }
footer h5 { font-size: .73rem; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.38); margin-bottom: 1.1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
footer ul a { text-decoration: none; color: rgba(255,255,255,.56); font-size: .87rem; font-weight: 300; transition: color .2s; }
footer ul a:hover { color: white; }
.ft-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; font-size: .77rem; color: rgba(255,255,255,.28); }
.ft-disclaimer { max-width: 520px; font-style: italic; line-height: 1.6; }


/* ─── LANGUAGE SWITCHER ─────────────────── */
.lang-sw { display:flex; align-items:center; gap:.35rem; margin-left:1.5rem; }
.lang-btn {
  background:none; border:1.5px solid rgba(11,122,138,.25); color:var(--muted);
  font-family:'Outfit',sans-serif; font-size:.75rem; font-weight:600;
  padding:.28rem .65rem; border-radius:2rem; cursor:pointer;
  transition:background .2s, color .2s, border-color .2s;
  letter-spacing:.04em;
  display:inline-block; line-height:1; text-decoration:none;
}
.lang-btn:hover { background:var(--ocean); color:white; border-color:var(--ocean); }
.lang-btn.active { background:var(--ocean); color:white; border-color:var(--ocean); }

/* ─── HIDDEN SECTIONS PER LANG ──────────── */
[data-lang] { display:none; }
[data-lang].lang-visible { display:block; }
span[data-lang], a[data-lang] { display:none; }
span[data-lang].lang-visible, a[data-lang].lang-visible { display:inline; }

/* ─── ANIMATIONS ───────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE  —  toegevoegd (desktop ≥961px blijft ongewijzigd)
   ═══════════════════════════════════════════════════════════════════ */

/* Hamburger-knop (verborgen op desktop) */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; justify-content: center;
  gap: 5px; padding: 9px; margin-left: .4rem; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ocean-d);
  border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Tablet ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 1.6rem; }
  .hero-content { padding: 0 2.4rem 4rem; }
  .scroll-hint { right: 2.4rem; }
  .intro-band { padding: 2.6rem 2.4rem; }
  .sec, .disc, .team { padding: 4rem 2.4rem; }
  .mv-left { padding: 3.5rem 2.4rem; }
  .werk, .act, .contact { padding: 4rem 2.4rem; grid-template-columns: 1fr; gap: 3rem; }
  .missie, .eiland { grid-template-columns: 1fr; }
  .disc-top, .team-header { grid-template-columns: 1fr; gap: 2rem; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
  .werk-img { height: 380px; }
  .mv-right { min-height: 340px; }
  .eiland-img { height: 320px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ─── Mobiel ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Nav + hamburger */
  nav { padding: 0 1.1rem; }
  .nav-toggle { display: flex; }
  .logo-sub { display: none; }
  .logo-svg { width: 64px; height: 64px; }
  .logo-name { font-size: 1.15rem; }
  .lang-sw { margin-left: auto; gap: .3rem; }
  .nav-links {
    position: fixed; top: 84px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(253,250,246,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(11,122,138,.12);
    padding: .4rem 1.3rem 1.1rem;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .9rem .2rem; font-size: 1.02rem;
    border-bottom: 1px solid rgba(11,122,138,.08); }
  .nav-cta { display: inline-block; margin-top: .7rem; text-align: center; border-bottom: 0 !important; }

  /* Hero */
  .hero-content { padding: 0 1.4rem 3rem; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.9rem); }
  .hero-sub { font-size: 1rem; }
  .scroll-hint { display: none; }
  .hero-btns .btn-w, .hero-btns .btn-g { flex: 1 1 auto; text-align: center; }

  /* Secties / paddings */
  .intro-band { flex-direction: column; text-align: center; gap: 1.2rem; padding: 2.4rem 1.4rem; }
  .intro-band p { font-size: 1.18rem; }
  .sec, .disc, .team, .werk, .act, .contact { padding: 3rem 1.4rem; }
  .mv-left { padding: 3rem 1.4rem; }

  /* Grids → 1 kolom */
  .strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .strip-item { height: 230px; }
  .mv-cards { grid-template-columns: 1fr; }
  .disc-grid { grid-template-columns: 1fr; }
  .prof-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 2rem; }

  /* Beeldpanelen hoogte */
  .werk { gap: 2.5rem; }
  .werk-img { height: 320px; }
  .mv-right { min-height: 280px; }
  .eiland-img { height: 260px; }

  h2 { font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
}

/* Heel smal: alleen logo-icoon */
@media (max-width: 420px) {
  .logo-name { display: none; }
  .prof-grid { grid-template-columns: 1fr; }
}
