/* EBDB Beeldbank - huisstijl Economic Board Duin en Bollenstreek */
:root {
  --aubergine: #842156;
  --aubergine-dark: #5f1740;
  --petrol: #1186a7;
  --petrol-dark: #0c6480;
  --terracotta: #dc6d51;
  --groen: #6b9e83;
  --cyaan: #05b3c6;
  --lichtblauw: #82c0c7;

  --terracotta-dark: #b8492f;
  --ink: #16191c;
  --ink-2: #3a3f45;
  --muted: #6b7278;
  --line: #e3e5e8;
  --line-2: #eceef0;
  --bg: #ffffff;
  --bg-2: #f4f4f4;
  --bg-3: #eaeae7;

  --radius: 4px;
  --radius-lg: 6px;
  --headerh: 84px;
  --shadow: 0 1px 2px rgba(20, 24, 28, .05), 0 8px 24px rgba(20, 24, 28, .06);
  --shadow-lg: 0 24px 60px rgba(20, 24, 28, .18);
  --head: 'Funnel Display', Georgia, serif;
  --body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: var(--petrol-dark); }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 300; line-height: 1.04; margin: 0; letter-spacing: 0; color: var(--aubergine); }
h1 { font-size: clamp(2.3rem, 1.2rem + 4.2vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.4vw, 3.125rem); }
h2 { padding-bottom: 14px; }
h3 { font-size: 1.3rem; line-height: 1.15; padding-bottom: 6px; }
h4 { font-size: 1.05rem; }
.section-head h2 { padding-bottom: 4px; }
.hero h1 { padding-bottom: 0; }
.c-terracotta { color: var(--terracotta); }
.c-petrol { color: var(--petrol); }
.c-groen { color: var(--groen); }
.c-aubergine { color: var(--aubergine); }
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.tiny { font-size: .78rem; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 200; background: #fff; padding: 10px 16px; border-radius: 3px; box-shadow: var(--shadow); }
:focus-visible { outline: 3px solid var(--petrol); outline-offset: 2px; border-radius: 4px; }

/* ---------------------------------------------------------- logo + header */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.logo-img { width: 268px; height: auto; flex: none; }
.logo-tag {
  font-family: var(--head); font-weight: 400; font-size: 1.15rem; color: var(--petrol);
  padding-left: 14px; border-left: 1px solid var(--line); line-height: 1.1;
}

header.site {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}
.site-inner { display: flex; align-items: center; gap: 20px; height: var(--headerh); }
.site nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.site nav a {
  padding: 9px 13px; text-decoration: none; color: rgba(0, 0, 0, .6);
  font-family: var(--head); font-size: 1.02rem; font-weight: 400;
}
.site nav a:hover { color: var(--aubergine); }
.site nav a[aria-current="page"] { color: var(--aubergine); box-shadow: inset 0 -2px 0 var(--terracotta); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 3px; padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; }

@media (max-width: 900px) {
  .site nav {
    position: fixed; inset: var(--headerh) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 16px 16px;
    box-shadow: var(--shadow); display: none;
  }
  .site nav.open { display: flex; }
  .site nav a { padding: 13px 10px; border-bottom: 1px solid var(--line-2); font-size: 1.1rem; }
  .site nav a[aria-current="page"] { box-shadow: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 700px) {
  :root { --headerh: 72px; }
  .logo-img { width: 200px; }
  .logo-tag { font-size: 1rem; padding-left: 11px; gap: 11px; }
}
@media (max-width: 420px) {
  .logo-img { width: 168px; }
  .logo-tag { display: none; }
}

/* ---------------------------------------------------------------- knoppen */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 3px; border: 1px solid transparent;
  font-family: var(--head); font-weight: 400; font-size: 1.05rem; line-height: 1.3;
  cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .3s ease, color .3s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--aubergine); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; }
.btn-petrol { background: var(--petrol); color: #fff; }
.btn-petrol:hover { background: var(--petrol-dark); }
.btn-groen { background: var(--groen); color: #fff; }
.btn-groen:hover { background: var(--terracotta-dark); }
.btn-ghost { background: #fff; color: var(--aubergine); border-color: #d8c0cd; }
.btn-ghost:hover { border-color: var(--aubergine); background: #f7eef3; }
.btn-lg { font-size: 1.25rem; padding: 14px 30px; background: var(--terracotta); color: #fff; }
.btn-lg:hover { background: var(--aubergine); color: #fff; }
.btn-sm { padding: 8px 15px; font-size: .95rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* -------------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; background: var(--bg-2); color: var(--ink); }
.hero-inner { position: relative; padding: 68px 20px 46px; }
.hero h1 { max-width: 20ch; }
.hero h1 { color: var(--aubergine); }
.hero h1.hero-line2 { max-width: 22ch; }
.hero h1.hero-line2 { color: var(--terracotta); font-size: clamp(1.6rem, .9rem + 2.7vw, 2.8rem); margin-top: .12em; }
.hero .kicker {
  display: inline-block; font-family: var(--head); font-size: .95rem; font-weight: 400;
  letter-spacing: .04em; color: var(--petrol); margin-bottom: 16px;
}
.hero p.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 54ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 34px; padding-top: 24px; border-top: 1px solid #dcdcda; }
.hero-stats div b { font-family: var(--head); font-weight: 300; font-size: 2.1rem; display: block; line-height: 1; color: var(--aubergine); }
.hero-stats div span { font-size: .82rem; color: var(--muted); letter-spacing: .03em; }
.hero-strip { position: relative; height: clamp(180px, 26vw, 330px); }
.hero-strip img { width: 100%; height: 100%; object-fit: cover; }
.hero .chip { background: #fff; color: var(--aubergine); border: 1px solid #e0d2da; }
.hero .chip:hover { background: #f7eef3; }

/* ------------------------------------------------------------------ zoeken */
.searchbar { display: flex; gap: 10px; background: #fff; border-radius: 3px; padding: 7px 7px 7px 20px; box-shadow: var(--shadow); }
.searchbar input {
  flex: 1; border: 0; font: inherit; font-size: 1rem; background: transparent; color: var(--ink); min-width: 0;
}
.searchbar input:focus { outline: none; }
.searchbar input::placeholder { color: #9aa1a7; }

.section { padding: 68px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--bg-2); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.section-head p { margin: 8px 0 0; color: var(--muted); max-width: 60ch; }
.eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--petrol); margin-bottom: 10px; }

/* ------------------------------------------------------------------ thema's */
.themes { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.theme {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: #fff; aspect-ratio: 4/3; background: #222;
}
.theme img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.theme:hover img { transform: scale(1.05); }
.theme::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75) 100%); }
.theme-label { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; }
.theme-label b { font-family: var(--head); font-size: 1.15rem; font-weight: 500; display: block; }
.theme-label span { font-size: .8rem; opacity: .85; }
.theme-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; z-index: 3; }

/* ------------------------------------------------------------------- cards */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.grid.dense { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

.card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; display: flex; flex-direction: column; transition: box-shadow .15s ease, border-color .15s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #d5d9dd; }
.card.selected { border-color: var(--aubergine); box-shadow: 0 0 0 2px var(--aubergine); }
.card-media { position: relative; aspect-ratio: 4/3; background: var(--bg-3); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media.contain { background: #fff; }
.card-media.contain img { object-fit: contain; padding: 18px; }
.card-open { position: absolute; inset: 0; border: 0; background: none; cursor: zoom-in; padding: 0; }
.card-body { padding: 12px 14px 14px; }
.card-body b { display: block; font-weight: 600; font-size: .93rem; line-height: 1.35; }
.card-meta { display: flex; gap: 8px; align-items: center; margin-top: 6px; color: var(--muted); font-size: .78rem; }
.card-check {
  position: absolute; top: 9px; left: 9px; z-index: 3; width: 26px; height: 26px; border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.85); background: rgba(20,24,28,.42); cursor: pointer;
  display: grid; place-items: center; color: #fff; backdrop-filter: blur(3px); padding: 0;
}
.card-check svg { opacity: 0; }
.card.selected .card-check { background: var(--aubergine); border-color: var(--aubergine); }
.card.selected .card-check svg { opacity: 1; }
.card-dl {
  position: absolute; top: 9px; right: 9px; z-index: 3; width: 30px; height: 30px; border-radius: 3px;
  border: 0; background: rgba(20,24,28,.5); color: #fff; cursor: pointer; display: grid; place-items: center;
  opacity: 0; transition: opacity .15s ease; backdrop-filter: blur(3px); padding: 0;
}
.card:hover .card-dl, .card-dl:focus-visible { opacity: 1; }
.card-dl:hover { background: var(--aubergine); }

.pill {
  display: inline-flex; align-items: center; gap: 5px; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; padding: 3px 8px; border-radius: 5px;
  background: var(--bg-3); color: var(--ink-2);
}
.pill-foto { background: #e7f1f5; color: #0c6480; }
.pill-pdf { background: #f9e9e4; color: #b04a2e; }
.pill-tekst { background: #eaf2ed; color: #3f6b53; }
.pill-video { background: #f3e8ef; color: var(--aubergine); }
.pill-logo { background: #eef0f2; color: var(--ink-2); }

/* --------------------------------------------------------------- bibliotheek */
.lib { display: grid; grid-template-columns: 268px 1fr; gap: 32px; align-items: start; }
.facets { position: sticky; top: 88px; }
.facet { border-bottom: 1px solid var(--line); padding: 16px 0; }
.facet:first-child { padding-top: 0; }
.facet h3 { font-family: var(--body); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.facet label { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; font-size: .92rem; }
.facet label:hover { color: var(--aubergine); }
.facet input { accent-color: var(--aubergine); width: 16px; height: 16px; }
.facet .count { margin-left: auto; color: var(--muted); font-size: .78rem; font-variant-numeric: tabular-nums; }
.facet-swatch { width: 9px; height: 9px; border-radius: 3px; flex: none; }

.lib-top { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.lib-search { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 3px; padding: 10px 18px; background: #fff; }
.lib-search input { border: 0; font: inherit; flex: 1; min-width: 0; background: transparent; }
.lib-search input:focus { outline: none; }
select.sort { font: inherit; font-size: .9rem; padding: 10px 14px; border-radius: 3px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: #f7eef3; color: var(--aubergine); border: 0; border-radius: 3px; padding: 5px 12px; font: inherit; font-size: .83rem; font-weight: 600; cursor: pointer; }
.chip:hover { background: #f0dfe8; }
.mobile-facets { display: none; }

@media (max-width: 900px) {
  .lib { grid-template-columns: 1fr; }
  .facets { position: static; display: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 16px 16px; }
  .facets.open { display: block; }
  .mobile-facets { display: inline-flex; }
}

/* ----------------------------------------------------------------- lightbox */
.overlay {
  position: fixed; inset: 0; z-index: 120; background: rgba(12, 15, 18, .82);
  backdrop-filter: blur(4px); display: none; padding: 24px; overflow: auto;
}
.overlay.open { display: block; }
.detail {
  max-width: 1140px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1.55fr 1fr;
}
.detail-media { background: #101418; display: grid; place-items: center; min-height: 340px; padding: 0; }
.detail-media img, .detail-media video { max-height: 78vh; width: 100%; object-fit: contain; }
.detail-media.pad { padding: 40px; }
.detail-side { padding: 26px 28px 30px; max-height: 84vh; overflow: auto; }
.detail-side h2 { font-size: 1.5rem; margin-bottom: 8px; }
.detail-close { position: fixed; top: 18px; right: 20px; z-index: 130; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 1.4rem; cursor: pointer; }
.detail-close:hover { background: rgba(255,255,255,.26); }
.meta-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .88rem; }
.meta-table th { text-align: left; font-weight: 500; color: var(--muted); padding: 7px 0; width: 40%; vertical-align: top; }
.meta-table td { padding: 7px 0; vertical-align: top; }
.dl-list { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 0; }
.dl-row { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 3px; padding: 10px 14px; background: #fff; font: inherit; text-align: left; cursor: pointer; width: 100%; }
.dl-row:hover { border-color: var(--aubergine); background: #fdf7fa; }
.dl-row b { font-size: .9rem; }
.dl-row .dl-sub { color: var(--muted); font-size: .78rem; }
.dl-row .dl-size { margin-left: auto; color: var(--muted); font-size: .8rem; font-variant-numeric: tabular-nums; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-2); border-radius: 3px; padding: 3px 11px; font-size: .78rem; cursor: pointer; }
.tag:hover { border-color: var(--aubergine); color: var(--aubergine); }
.tekst-preview { background: var(--bg-2); border-left: 3px solid var(--groen); border-radius: 0 4px 4px 0; padding: 16px 18px; font-size: .93rem; white-space: pre-wrap; max-height: 44vh; overflow: auto; }

@media (max-width: 900px) {
  .overlay { padding: 0; }
  .detail { grid-template-columns: 1fr; border-radius: 0; min-height: 100vh; }
  .detail-media img, .detail-media video { max-height: 46vh; }
  .detail-side { max-height: none; }
  .detail-close { top: 10px; right: 10px; background: rgba(12,15,18,.6); }
}

/* -------------------------------------------------------------- downloadmand */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--aubergine); color: #fff;
  transform: translateY(110%); transition: transform .25s cubic-bezier(.2, .8, .3, 1);
}
.cart-bar.show { transform: none; }
.cart-inner { display: flex; align-items: center; gap: 16px; padding: 13px 0; flex-wrap: wrap; }
.cart-inner .cart-count { font-family: var(--head); font-size: 1.25rem; }
.cart-inner .cart-sub { color: rgba(255,255,255,.78); font-size: .85rem; }
.cart-inner .spacer { flex: 1; }
.cart-thumbs { display: flex; gap: 5px; }
.cart-thumbs img { width: 38px; height: 38px; object-fit: cover; border-radius: 3px; border: 1px solid rgba(255,255,255,.25); }
.linkbtn { background: none; border: 0; color: rgba(255,255,255,.72); font: inherit; font-size: .87rem; text-decoration: underline; cursor: pointer; padding: 0; }
.linkbtn:hover { color: #fff; }
@media (max-width: 700px) { .cart-thumbs { display: none; } .cart-inner { gap: 10px; } }

/* --------------------------------------------------------------------- toast */
.toast {
  position: fixed; left: 50%; bottom: 92px; transform: translate(-50%, 20px); z-index: 140;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 3px; font-size: .9rem;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* --------------------------------------------------------------------- upload */
.dropzone {
  border: 2px dashed #c9ced3; border-radius: var(--radius-lg); padding: 52px 24px; text-align: center;
  background: var(--bg-2); transition: border-color .15s ease, background .15s ease;
}
.dropzone.drag { border-color: var(--aubergine); background: #fbf3f7; }
.dropzone h3 { font-size: 1.35rem; margin-bottom: 8px; }
.upload-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.upload-row { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 3px; padding: 12px 16px; }
.upload-row .thumb { width: 46px; height: 46px; border-radius: 3px; background: var(--bg-3); object-fit: cover; flex: none; display: grid; place-items: center; font-size: .68rem; font-weight: 700; color: var(--muted); }
.progress { height: 5px; background: var(--line-2); border-radius: 99px; overflow: hidden; margin-top: 7px; }
.progress i { display: block; height: 100%; background: var(--groen); width: 0; transition: width .2s linear; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .93rem; padding: 10px 13px; border: 1px solid var(--line); border-radius: 3px; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--petrol); outline-offset: 0; border-color: transparent; }
.field .hint { font-size: .76rem; color: var(--muted); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- code */
pre.code {
  background: #12161a; color: #e6edf3; padding: 18px 20px; border-radius: 4px; overflow: auto;
  font-family: 'SFMono-Regular', Consolas, monospace; font-size: .82rem; line-height: 1.6; margin: 0;
}
pre.code .c { color: #7d8a97; }
pre.code .t { color: #ffb59b; }
pre.code .a { color: #b6e3f5; }
pre.code .s { color: #b9e6c8; }
.codebox { position: relative; }
.codebox .copy { position: absolute; top: 10px; right: 10px; }

/* --------------------------------------------------------------------- steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.step { border-top: 3px solid var(--line); padding-top: 16px; }
.step b { font-family: var(--head); font-size: 1.05rem; font-weight: 500; display: block; margin-bottom: 6px; }
.step .n { font-size: .74rem; font-weight: 700; letter-spacing: .12em; color: var(--petrol); }
.step:nth-child(1) { border-color: var(--terracotta); }
.step:nth-child(2) { border-color: var(--aubergine); }
.step:nth-child(3) { border-color: var(--petrol); }
.step:nth-child(4) { border-color: var(--groen); }

.cols-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
@media (max-width: 900px) { .cols-2 { grid-template-columns: minmax(0, 1fr); gap: 26px; } }

.callout { border: 1px solid var(--line); border-left: 4px solid var(--petrol); border-radius: 0 4px 4px 0; padding: 18px 22px; background: var(--bg-2); }
.callout b { display: block; margin-bottom: 4px; }

.collection-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.collection-card .stack { display: flex; gap: 4px; margin-bottom: 4px; }
.collection-card .stack img { width: 52px; height: 52px; object-fit: cover; border-radius: 3px; }
.collection-card .stack .more { width: 52px; height: 52px; border-radius: 3px; background: var(--bg-3); display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: var(--muted); }

/* -------------------------------------------------------------------- footer */
footer.site {
  background: var(--aubergine); color: rgba(255,255,255,.86); padding: 76px 0 40px; margin-top: 60px;
  border-radius: 25px 25px 0 0;
}
footer.site a { color: #fff; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-grid h4 { font-family: var(--head); font-weight: 300; font-size: 1.5rem; color: #fff; margin-bottom: 14px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: .95rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.22); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.7); }
.logo-foot .logo-img { width: 300px; filter: brightness(0) invert(1); }
@media (max-width: 700px) { .logo-foot .logo-img { width: 230px; } }
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 26px; }
  .foot-grid > :first-child { grid-column: 1 / -1; }
  footer.site { padding: 52px 0 32px; border-radius: 18px 18px 0 0; }
}

.concept-note { background: var(--aubergine); color: #fff; text-align: center; font-size: .8rem; padding: 7px 16px; }
.concept-note a { color: #fff; }

.empty { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty b { display: block; font-family: var(--head); font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

