/* ==========================================================================
   bij Elsha — stijlblad
   Mediterraan palet: zon, terracotta, olijf en gebroken wit.
   ========================================================================== */

:root {
  --creme:      #FBF7F1;
  --creme-diep: #F3EADD;
  --zand:       #E7D9C4;
  --terracotta: #B4552F;
  --terracotta-dp: #8E3F21;
  --olijf:      #5F6F4E;
  --inkt:       #2A2320;
  --inkt-zacht: #5A4F48;
  --lijn:       rgba(42, 35, 32, .12);
  --wit:        #FFFFFF;

  --radius:     14px;
  --radius-lg:  22px;
  --schaduw:    0 1px 2px rgba(42,35,32,.06), 0 12px 30px rgba(42,35,32,.08);
  --schaduw-lg: 0 2px 6px rgba(42,35,32,.08), 0 26px 60px rgba(42,35,32,.14);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1140px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--inkt);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, .brand-name, .prijs, .feit-getal {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
}

h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 0 0 .5rem; }
h3 { font-size: 1.1rem; margin: 0 0 .4rem; }
p  { margin: 0 0 1rem; }

a { color: var(--terracotta-dp); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--inkt); color: var(--creme); padding: .7rem 1.1rem;
}
.skip-link:focus { left: .5rem; top: .5rem; }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------- knoppen -------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.5rem;
  font: inherit; font-size: .95rem; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 6px 18px rgba(180,85,47,.28); }
.btn-primary:hover { background: var(--terracotta-dp); color: #fff; }

.btn-ghost { background: transparent; color: var(--inkt); border-color: var(--lijn); }
.btn-ghost:hover { background: rgba(42,35,32,.05); color: var(--inkt); }

.btn-block { width: 100%; }

/* ------------------------------ koptekst -------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,241,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.geplakt { border-bottom-color: var(--lijn); box-shadow: 0 6px 20px rgba(42,35,32,.06); }

.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .8rem 0; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--terracotta); color: #fff;
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: -.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 1.28rem; }
.brand-sub { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--inkt-zacht); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: var(--inkt); text-decoration: none; font-size: .95rem; }
.site-nav a:not(.btn) { position: relative; padding: .25rem 0; }
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--terracotta); transition: right .2s ease;
}
.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).actief::after { right: 0; }
.nav-cta { margin-left: .4rem; padding: .58rem 1.15rem; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--lijn); border-radius: 12px;
  background: transparent; cursor: pointer;
}
.bars, .bars::before, .bars::after {
  display: block; width: 20px; height: 2px; background: var(--inkt); margin-inline: auto;
  transition: transform .2s ease, opacity .2s ease;
}
.bars { position: relative; }
.bars::before, .bars::after { content: ""; position: absolute; left: 0; }
.bars::before { top: -6px; }
.bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------- hero --------------------------------- */

.hero { position: relative; padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(180,85,47,.20), transparent 62%),
    radial-gradient(760px 420px at 8% 108%, rgba(95,111,78,.20), transparent 60%),
    linear-gradient(180deg, var(--creme-diep), var(--creme) 72%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(42,35,32,.10) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 70%);
}
.hero-inner { position: relative; max-width: 780px; }

.hero-badge {
  display: inline-block; margin: 0 0 1.2rem;
  background: rgba(255,255,255,.75); border: 1px solid var(--lijn);
  border-radius: 999px; padding: .38rem 1rem;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--inkt-zacht);
}
.hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); margin: 0 0 1.1rem; }
.hero-text { font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: var(--inkt-zacht); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.9rem 0 1.6rem; }
.hero-meta { color: var(--inkt-zacht); font-size: .95rem; }
.hero-meta .dot { margin: 0 .5rem; }

/* --------------------------- balk op uitnodiging ------------------------ */

.uitnodiging { background: var(--olijf); color: #F4F6F0; }
.uitnodiging-inner {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  padding: 1.1rem 0;
}
.uitnodiging-label {
  flex: none;
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: .3rem .9rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.uitnodiging p { margin: 0; font-size: .98rem; max-width: 78ch; }

/* ------------------------------- secties -------------------------------- */

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; scroll-margin-top: 84px; }
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.lead { font-size: 1.08rem; color: var(--inkt-zacht); }
.eyebrow {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracotta); margin: 0 0 .6rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* ------------------------------- over ons ------------------------------- */

.section-over { background: var(--wit); }
.over-visual { position: relative; min-height: 420px; }
.photo-placeholder {
  border-radius: var(--radius-lg);
  box-shadow: var(--schaduw-lg);
  background-size: cover; background-position: center;
}
.over-photo { position: absolute; }
.over-photo:first-child { inset: 0 18% 12% 0; }
.over-photo.small { width: 52%; height: 46%; right: 0; bottom: 0; border: 8px solid var(--wit); }

.pull-quote {
  margin: 1.8rem 0 0; padding: 1.1rem 0 1.1rem 1.4rem;
  border-left: 3px solid var(--terracotta);
}
.pull-quote p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; margin: 0 0 .5rem; }
.pull-quote cite { font-style: normal; font-size: .9rem; color: var(--inkt-zacht); }

.feiten {
  list-style: none; margin: clamp(2.5rem, 6vw, 4rem) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  border-top: 1px solid var(--lijn); padding-top: 2rem;
}
.feiten li { text-align: center; }
.feit-getal { display: block; font-size: 2.1rem; color: var(--terracotta); }
.feit-label { font-size: .88rem; color: var(--inkt-zacht); }

/* ------------------------------ menukaart ------------------------------- */

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.menu-cat {
  background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--schaduw);
}
.menu-cat h3 { font-size: 1.5rem; margin-bottom: .15rem; }
.menu-cat-sub { font-size: .88rem; color: var(--inkt-zacht); margin-bottom: 1.4rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem; padding: .85rem 0; border-top: 1px dashed var(--lijn); }
.menu-item:first-of-type { border-top: 0; padding-top: 0; }
.menu-item-naam { font-weight: 600; }
.menu-item-oms { grid-column: 1 / -1; font-size: .92rem; color: var(--inkt-zacht); margin: 0; }
.prijs { font-size: 1.05rem; color: var(--terracotta); white-space: nowrap; }
.prijs::before { content: "€ "; font-size: .85em; }
.prijs:empty { display: none; }
.prijs:empty::before { content: none; }
body.beheer .prijs:empty { display: inline-block; }
body.beheer .prijs:empty::after { content: "prijs"; font-size: .8em; }
.menu-note { margin-top: 2rem; font-size: .9rem; color: var(--inkt-zacht); text-align: center; }

/* --------------------------- openingstijden ----------------------------- */

.section-tijden { background: var(--inkt); color: var(--creme); }
.section-tijden h2 { color: var(--creme); }
.section-tijden .lead { color: rgba(251,247,241,.72); }
.tijden-grid { align-items: start; }

.tijden-tabel { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
.tijden-tabel td { padding: .78rem .2rem; border-bottom: 1px solid rgba(251,247,241,.14); }
.tijden-tabel td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.tijden-tabel tr.vandaag td { color: #fff; font-weight: 600; }
.tijden-tabel tr.vandaag td:first-child::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--terracotta); margin-right: .6rem; vertical-align: middle;
}
.tijden-tabel td.gesloten { color: rgba(251,247,241,.5); }

.mededeling {
  background: rgba(180,85,47,.22); border-left: 3px solid var(--terracotta);
  padding: .8rem 1rem; border-radius: 0 8px 8px 0; font-size: .95rem;
}
.nu-open { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; margin-top: .5rem; }
.nu-open .stip { width: 9px; height: 9px; border-radius: 50%; background: #7FB069; box-shadow: 0 0 0 4px rgba(127,176,105,.22); }
.nu-open.dicht .stip { background: #C96A5C; box-shadow: 0 0 0 4px rgba(201,106,92,.22); }
.nu-open.straks .stip { background: #E9B872; box-shadow: 0 0 0 4px rgba(233,184,114,.22); }
.nu-open.straks { color: #F3D9AE; font-weight: 600; }

/* ------------------------------- galerij -------------------------------- */

.galerij-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.galerij-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); }
.galerij-item .foto { aspect-ratio: 4 / 3; background-size: cover; background-position: center; transition: transform .5s ease; }
.galerij-item:hover .foto { transform: scale(1.04); }
.galerij-bijschrift {
  position: absolute; inset: auto 0 0 0; margin: 0; padding: 2.2rem .9rem .8rem;
  color: #fff; font-size: .88rem;
  background: linear-gradient(180deg, transparent, rgba(24,18,15,.78));
}

/* ----------------------------- onze aanpak ------------------------------ */

.section-aanpak { background: var(--creme-diep); }
.aanpak-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.aanpak-kaart {
  position: relative;
  background: var(--wit); border-radius: var(--radius-lg); padding: 1.8rem;
  box-shadow: var(--schaduw); display: flex; flex-direction: column;
}
.aanpak-icoon { font-size: 1.9rem; line-height: 1; margin: 0 0 .9rem; }
.aanpak-kaart h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.aanpak-tekst { color: var(--inkt-zacht); font-size: .97rem; margin: 0; }

/* --------------------------- contact & aanmelden ------------------------ */

.aanmelden-grid { align-items: start; }
.tel-groot a { font-family: var(--serif); font-size: 1.7rem; text-decoration: none; }
.contactformulier {
  background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--schaduw);
}
.veld { margin-bottom: 1rem; }
.veld-rij { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.veld label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: .35rem; }
.veld input, .veld textarea, .veld select {
  width: 100%; font: inherit; font-size: .98rem; color: var(--inkt);
  background: var(--creme); border: 1px solid var(--lijn); border-radius: 10px;
  padding: .7rem .85rem;
}
.veld input:focus, .veld textarea:focus, .veld select:focus { background: var(--wit); border-color: var(--terracotta); outline: none; }
.veld textarea { resize: vertical; }
.veld input:user-invalid { border-color: #C96A5C; }
.form-status { margin: 1rem 0 0; font-size: .92rem; min-height: 1.4em; }
.form-status.ok { color: var(--olijf); }
.form-status.fout { color: #A8402F; }

/* -------------------------------- contact ------------------------------- */

.section-contact { background: var(--wit); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.contact-kaart { background: var(--creme); border-radius: var(--radius-lg); padding: 1.6rem; }
.contact-kaart h3 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--inkt-zacht); font-family: var(--sans); }
.contact-kaart h3.mt { margin-top: 1.4rem; }
.contact-kaart address { font-style: normal; font-size: 1.1rem; margin-bottom: .8rem; }
.contact-kaart p { margin: 0 0 .3rem; }
.link-pijl { font-weight: 600; text-decoration: none; }
.link-pijl::after { content: " →"; transition: margin .15s ease; }
.link-pijl:hover::after { margin-left: .2rem; }
.socials { display: flex; gap: 1rem; }

.kaart-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--schaduw); border: 1px solid var(--lijn); }
.kaart-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(.9); }

/* ------------------------------- voettekst ------------------------------ */

.site-footer { background: var(--inkt); color: rgba(251,247,241,.74); padding: 3rem 0 2rem; font-size: .93rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-naam { font-family: var(--serif); font-size: 1.5rem; color: var(--creme); margin-bottom: .4rem; }
.site-footer a { color: var(--creme); }
.footer-kolom p { margin: 0 0 .35rem; }
.footer-meta { text-align: right; }
.beheer-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: rgba(251,247,241,.45); font: inherit; font-size: .85rem; text-decoration: underline;
}
.beheer-link:hover { color: var(--creme); }

/* ================================ BEHEER ================================= */

.modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: rgba(24,18,15,.55); backdrop-filter: blur(3px);
  padding: 1.5rem;
}
.modal-card {
  background: var(--creme); border-radius: var(--radius-lg); padding: 2rem;
  width: min(420px, 100%); box-shadow: var(--schaduw-lg);
}
.modal-card h2 { font-size: 1.6rem; }
.modal-uitleg { color: var(--inkt-zacht); font-size: .95rem; }
.modal-card label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: .35rem; }
.modal-card input {
  width: 100%; font: inherit; padding: .7rem .85rem; border-radius: 10px;
  border: 1px solid var(--lijn); background: var(--wit); margin-bottom: .8rem;
}
.modal-acties { display: flex; justify-content: flex-end; gap: .6rem; margin-top: .5rem; }
.fout { color: #A8402F; font-size: .9rem; margin: -.4rem 0 .6rem; }

.adminbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  background: var(--inkt); color: var(--creme);
  box-shadow: 0 -10px 30px rgba(42,35,32,.28);
}
.adminbar-inner {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  width: min(1300px, 100% - 2rem); margin-inline: auto; padding: .7rem 0;
}
.adminbar-titel { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; }
.adminbar-titel .stip { width: 9px; height: 9px; border-radius: 50%; background: #7FB069; box-shadow: 0 0 0 4px rgba(127,176,105,.2); }
.adminbar-hint { font-size: .85rem; color: rgba(251,247,241,.6); }
.adminbar-status { font-size: .85rem; color: #E9B872; margin-left: auto; }
.adminbar-knoppen { display: flex; gap: .45rem; flex-wrap: wrap; }
.btn-mini {
  padding: .42rem .8rem; font-size: .82rem; border-radius: 8px;
  background: rgba(251,247,241,.10); color: var(--creme); border: 1px solid rgba(251,247,241,.18);
}
.btn-mini:hover { background: rgba(251,247,241,.2); color: #fff; }
.btn-mini.btn-primary { background: var(--terracotta); border-color: var(--terracotta); box-shadow: none; }
.btn-uit { background: transparent; }

body.beheer { padding-bottom: 90px; }

body.beheer [data-path] {
  outline: 1px dashed rgba(180,85,47,.55);
  outline-offset: 3px;
  border-radius: 3px;
  cursor: text;
  transition: background-color .15s ease;
  min-width: 2ch; min-height: 1em; display: inline-block;
}
body.beheer p[data-path],
body.beheer h1[data-path],
body.beheer h2[data-path],
body.beheer address [data-path] { display: block; }
body.beheer [data-path]:hover { background: rgba(233,184,114,.18); }
body.beheer [data-path]:focus {
  outline: 2px solid var(--terracotta); background: rgba(255,255,255,.85); color: var(--inkt);
}
body.beheer .section-tijden [data-path]:focus,
body.beheer .site-footer [data-path]:focus { color: var(--inkt); }
body.beheer [data-path]:empty::after { content: "Lege tekst — klik om te vullen"; color: var(--inkt-zacht); font-size: .85em; font-style: italic; }
body.beheer .mededeling[hidden] { display: block !important; }

/* bewerkgereedschap bij lijsten */
.rij-gereedschap { display: none; gap: .3rem; }
body.beheer .rij-gereedschap { display: inline-flex; }
.mini-knop {
  width: 26px; height: 26px; line-height: 1; padding: 0;
  border-radius: 7px; border: 1px solid var(--lijn); background: var(--wit); color: var(--inkt-zacht);
  cursor: pointer; font-size: .85rem;
}
.mini-knop:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.beeld-knop { display: none; position: absolute; top: .7rem; right: .7rem; z-index: 3; width: auto; height: auto; padding: .32rem .6rem; }
body.beheer .beeld-knop { display: inline-block; }
.hero-inner .beeld-knop { position: static; margin-top: 1rem; }

.toevoeg-knop {
  display: none; margin-top: 1rem;
  border: 1px dashed var(--terracotta); background: rgba(180,85,47,.06); color: var(--terracotta-dp);
  border-radius: 10px; padding: .5rem 1rem; font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
}
body.beheer .toevoeg-knop { display: inline-block; }
.menu-item { position: relative; }
.item-gereedschap { position: absolute; top: .45rem; right: -.2rem; }
.galerij-item .item-gereedschap, .aanpak-kaart .item-gereedschap { position: absolute; top: .6rem; right: .6rem; z-index: 2; }
.galerij-item .mini-knop, .aanpak-kaart .mini-knop { box-shadow: var(--schaduw); }

.toast {
  position: fixed; left: 50%; bottom: 96px; transform: translateX(-50%);
  background: var(--inkt); color: var(--creme); padding: .75rem 1.3rem;
  border-radius: 999px; box-shadow: var(--schaduw-lg); z-index: 400; font-size: .92rem;
  animation: toastIn .25s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 8px); } }

/* -------------------------- verschijn-animatie -------------------------- */

.onthul { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.onthul.zichtbaar { opacity: 1; transform: none; }

/* ------------------------------ responsive ------------------------------ */

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--creme); border-bottom: 1px solid var(--lijn);
    padding: .5rem 1.25rem 1.25rem; box-shadow: var(--schaduw-lg);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--lijn); }
  .nav-cta { margin: .9rem 0 0; justify-content: center; }

  .grid-2 { grid-template-columns: 1fr; }
  .over-visual { min-height: 300px; order: 2; }
  .menu-grid { grid-template-columns: 1fr; }
  .galerij-grid { grid-template-columns: repeat(2, 1fr); }
  .aanpak-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .feiten { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .galerij-grid { grid-template-columns: 1fr; }
  .aanpak-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .adminbar-inner { padding: .6rem 0; }
  .adminbar-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .onthul { opacity: 1; transform: none; }
}

@media print {
  .site-header, .adminbar, .hero-actions, .contactformulier, .kaart-embed, .beheer-link { display: none !important; }
  body { background: #fff; }
  .section { padding: 1.5rem 0; }
}
