/* GetaTable - landing/productpagina (B2B SaaS voor restaurants).
   Bouwt voort op de tokens in style.css. Eigen, ge-namespacede laag (.l-*).
   Visuele rode draad: afgeronde cards, zachte schaduwen, subtiele groene gradients,
   veel witruimte, oranje als spaarzaam accent. Mobile-first. ASCII-only comments. */

:root {
  --color-accent:       #f4742a;
  --color-accent-dark:  #e15f14;
  --color-accent-soft:  #fff2e9;
  --color-ink-2:        #2c3a33;

  --maxw-l:   min(1200px, 92vw);
  --maxw-mid: min(760px, 92vw);

  --text-5xl: clamp(2.4rem, 1.4rem + 4.4vw, 4.25rem);

  --grad-soft:  linear-gradient(180deg, #f5faf6 0%, #ffffff 60%);
  --grad-brand: linear-gradient(135deg, #1b5b2d 0%, #0f3d1d 100%);
  --grad-accent: linear-gradient(135deg, #f4742a 0%, #e15f14 100%);

  --ring: 0 0 0 1px rgba(27, 91, 45, .08);
  --section-pad: clamp(56px, 8vw, 116px);
}

/* == Layout helpers == */
section[id] { scroll-margin-top: 84px; } /* anker-links niet onder de sticky header */
.l-container { width: var(--maxw-l); margin-inline: auto; }
.l-section   { padding-block: var(--section-pad); }
.l-section--tight { padding-block: clamp(40px, 6vw, 80px); }

.l-section__head { max-width: var(--maxw-mid); margin-inline: auto; text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.l-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .02em;
  color: var(--color-accent-dark);
  background: var(--color-accent-soft);
  padding: 6px 14px; border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.l-eyebrow--brand { color: var(--color-brand); background: var(--color-brand-soft); }
.l-eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.l-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  line-height: 1.08; letter-spacing: -0.01em; color: var(--color-ink);
}
.l-lead {
  margin-top: var(--space-4);
  font-size: clamp(1rem, .96rem + .3vw, 1.2rem);
  color: var(--color-muted); line-height: 1.6;
}
.l-accent { color: var(--color-accent); }
.l-brandtext { color: var(--color-brand); }

/* == Buttons (vult style.css .btn aan) == */
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 8px 20px rgba(244,116,42,.28); }
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; }
.btn-white  { background: #fff; color: var(--color-brand); box-shadow: var(--shadow); }
.btn-white:hover { background: #fff; color: var(--color-brand-dark); }
.btn-lg { padding: 15px 30px; font-size: var(--text-lg); min-height: 54px; }
.btn-block { width: 100%; }
.btn .btn__ico { width: 18px; height: 18px; }

/* == Placeholder-blokken (overal waar later beeld komt) == */
.l-ph {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(27,91,45,.035) 0 12px, transparent 12px 24px),
    var(--color-brand-soft);
  border: 1.5px dashed var(--color-brand-line);
  border-radius: var(--radius-lg);
  color: var(--color-brand);
  padding: var(--space-6);
  min-height: 180px;
}
.l-ph::before {
  content: ""; width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad-accent); opacity: .9;
  -webkit-mask: var(--ph-ico) center / contain no-repeat;
          mask: var(--ph-ico) center / contain no-repeat;
}
.l-ph__label { font-weight: 600; font-size: var(--text-sm); letter-spacing: .04em; }
.l-ph__hint  { font-size: var(--text-xs); color: var(--color-muted); max-width: 32ch; }
.l-ph--photo { --ph-ico: none; }
.l-ph--photo::before {
  -webkit-mask: none; mask: none;
  background: var(--grad-brand);
}
.l-ph--wide  { aspect-ratio: 16 / 10; min-height: 0; }
.l-ph--shot  { aspect-ratio: 16 / 10; min-height: 0; }
.l-ph--square{ aspect-ratio: 1 / 1; min-height: 0; }

/* == Header == */
.l-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.l-header.is-scrolled { border-bottom-color: var(--color-line); box-shadow: 0 6px 24px rgba(16,40,24,.05); }
.l-header__inner {
  width: var(--maxw-l); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding-block: 14px;
}
.l-header .brand-svg { height: 30px; }
.l-nav { display: none; }
.l-nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); list-style: none; margin: 0; padding: 0; }
.l-nav__links a { color: var(--color-ink-soft); text-decoration: none; font-weight: 500; font-size: var(--text-sm); transition: color .15s ease; }
.l-nav__links a:hover { color: var(--color-brand); }
.l-header__cta { display: none; align-items: center; gap: var(--space-3); }
.l-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  background: #fff; color: var(--color-ink); cursor: pointer;
}
.l-burger svg { width: 22px; height: 22px; }

@media (min-width: 900px) {
  .l-nav { display: block; }
  .l-header__cta { display: inline-flex; }
  .l-burger { display: none; }
}

/* Mobiel menu (overlay) */
.l-mobile {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(15,40,24,.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
}
.l-mobile.is-open { opacity: 1; visibility: visible; }
.l-mobile__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2);
  transform: translateX(100%); transition: transform .26s cubic-bezier(.16,1,.3,1);
  box-shadow: -10px 0 40px rgba(16,40,24,.18);
}
.l-mobile.is-open .l-mobile__panel { transform: none; }
.l-mobile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.l-mobile__panel a { padding: 12px 8px; border-radius: var(--radius-sm); color: var(--color-ink); text-decoration: none; font-weight: 500; font-size: var(--text-lg); }
.l-mobile__panel a:hover { background: var(--color-bg-soft); }
.l-mobile__cta { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
@media (min-width: 900px) { .l-mobile { display: none; } }

/* == Hero == */
.l-hero { position: relative; overflow: hidden; background: var(--grad-soft); }
.l-hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(60% 80% at 70% 10%, rgba(244,116,42,.14), transparent 60%),
              radial-gradient(50% 70% at 15% 0%, rgba(27,91,45,.12), transparent 60%);
  pointer-events: none; z-index: 0;
}
.l-hero__inner {
  position: relative; z-index: 1;
  width: var(--maxw-l); margin-inline: auto;
  padding-block: clamp(48px, 8vw, 92px) clamp(40px, 6vw, 72px);
  display: grid; gap: clamp(32px, 5vw, 56px); align-items: center;
}
.l-hero__copy { text-align: center; max-width: 720px; margin-inline: auto; }
.l-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl); line-height: 1.04; letter-spacing: -0.015em;
  color: var(--color-ink); margin-bottom: var(--space-5);
}
.l-hero__sub { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: var(--color-ink-soft); line-height: 1.55; max-width: 46ch; margin-inline: auto; }
.l-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-7); }
.l-hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); justify-content: center; margin-top: var(--space-6); }
.l-hero__trust span { display: inline-flex; align-items: center; gap: 7px; font-size: var(--text-sm); color: var(--color-muted); }
.l-hero__trust svg { width: 16px; height: 16px; color: var(--color-brand); }

.l-hero__visual { position: relative; }
.l-hero__frame {
  position: relative; border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow-lg), var(--ring);
  padding: 10px;
}
.l-hero__frame .l-ph { min-height: 0; aspect-ratio: 16 / 10; }
.l-hero__badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: var(--text-sm); font-weight: 600; color: var(--color-ink);
}
.l-hero__badge svg { width: 20px; height: 20px; }
.l-hero__badge--tl { top: -18px; left: -10px; }
.l-hero__badge--br { bottom: -18px; right: -10px; }
.l-hero__badge .pos { color: var(--color-brand); }
.l-hero__badge small { display: block; font-weight: 500; color: var(--color-muted); font-size: var(--text-xs); }

@media (min-width: 940px) {
  .l-hero__inner { grid-template-columns: 1.05fr 1fr; }
  .l-hero__copy { text-align: left; margin-inline: 0; }
  .l-hero__sub  { margin-inline: 0; }
  .l-hero__ctas, .l-hero__trust { justify-content: flex-start; }
}

/* == Trust / logo strip == */
.l-logos { padding-block: clamp(28px, 4vw, 44px); }
.l-logos__title { text-align: center; font-size: var(--text-sm); color: var(--color-muted); letter-spacing: .04em; margin-bottom: var(--space-5); }
.l-logos__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); align-items: center; }
.l-logos__item {
  height: 44px; border-radius: var(--radius-sm);
  background: var(--color-bg-soft); border: 1px dashed var(--color-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted); font-size: var(--text-xs); letter-spacing: .08em; font-weight: 600;
}
@media (min-width: 640px) { .l-logos__row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .l-logos__row { grid-template-columns: repeat(6, 1fr); } }

/* == Wat is GetaTable: probleem vs. oplossing == */
.l-compare { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.l-compare__card { border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); }
.l-compare__card--bad { background: var(--color-bg-soft); border: 1px solid var(--color-line); }
.l-compare__card--good { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-lg); }
.l-compare__h { font-weight: 600; font-size: var(--text-lg); margin-bottom: var(--space-5); }
.l-compare__card--bad .l-compare__h { color: var(--color-ink); }
.l-compare__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.l-compare__list li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--text-base); line-height: 1.5; }
.l-compare__card--bad li { color: var(--color-muted); }
.l-compare__list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.l-compare__card--bad svg { color: var(--color-muted); }
.l-compare__card--good svg { color: var(--color-accent); }
@media (min-width: 760px) { .l-compare { grid-template-columns: 1fr 1fr; } }

/* == Benefits / USP cards == */
.l-benefits { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.l-benefit {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.l-benefit__num { font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem); color: var(--color-brand); line-height: 1; }
.l-benefit__num .l-accent { color: var(--color-accent); }
.l-benefit__title { margin-top: var(--space-3); font-weight: 600; font-size: var(--text-lg); color: var(--color-ink); }
.l-benefit__text { margin-top: var(--space-2); color: var(--color-muted); font-size: var(--text-sm); line-height: 1.55; }
@media (min-width: 640px) { .l-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .l-benefits { grid-template-columns: repeat(4, 1fr); } }

/* == Features grid == */
.l-features { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.l-feature {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.l-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--color-brand-line); }
.l-feature__icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--color-brand-soft); color: var(--color-brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.l-feature__icon svg { width: 24px; height: 24px; }
.l-feature--accent .l-feature__icon { background: var(--color-accent-soft); color: var(--color-accent-dark); }
.l-feature__title { font-weight: 600; font-size: var(--text-lg); color: var(--color-ink); }
.l-feature__text { margin-top: var(--space-2); color: var(--color-muted); font-size: var(--text-sm); line-height: 1.55; }
@media (min-width: 640px) { .l-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .l-features { grid-template-columns: repeat(3, 1fr); } }

/* == Product preview (alternerende rijen) == */
.l-preview__row { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.l-preview__row + .l-preview__row { margin-top: clamp(48px, 7vw, 96px); }
.l-preview__title { font-family: var(--font-display); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); color: var(--color-ink); line-height: 1.12; }
.l-preview__text { margin-top: var(--space-3); color: var(--color-muted); line-height: 1.6; }
.l-preview__list { margin: var(--space-4) 0 0; padding: 0; list-style: none; display: grid; gap: var(--space-2); }
.l-preview__list li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); color: var(--color-ink-soft); }
.l-preview__list svg { width: 18px; height: 18px; color: var(--color-brand); flex-shrink: 0; margin-top: 2px; }
.l-preview__frame { border-radius: var(--radius-lg); background: #fff; padding: 8px; box-shadow: var(--shadow-lg), var(--ring); }
.l-preview__frame .l-ph { min-height: 0; }
@media (min-width: 900px) {
  .l-preview__row { grid-template-columns: 1fr 1fr; }
  .l-preview__row--flip .l-preview__media { order: -1; }
}

/* == Hoe het werkt == */
.l-steps { display: grid; grid-template-columns: 1fr; gap: var(--space-4); counter-reset: step; }
.l-step {
  position: relative; background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.l-step__num {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-xl); color: #fff; background: var(--grad-brand);
  margin-bottom: var(--space-4);
}
.l-step__title { font-weight: 600; font-size: var(--text-lg); color: var(--color-ink); }
.l-step__text { margin-top: var(--space-2); color: var(--color-muted); font-size: var(--text-sm); line-height: 1.55; }
@media (min-width: 820px) { .l-steps { grid-template-columns: repeat(3, 1fr); } }

/* == Use cases == */
.l-usecases { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.l-usecase {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.l-usecase__media .l-ph { border: none; border-radius: 0; }
.l-usecase__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.l-usecase__tag { font-size: var(--text-xs); font-weight: 600; letter-spacing: .06em; color: var(--color-accent-dark); }
.l-usecase__title { font-weight: 600; font-size: var(--text-lg); color: var(--color-ink); }
.l-usecase__prob, .l-usecase__sol { font-size: var(--text-sm); line-height: 1.55; }
.l-usecase__prob { color: var(--color-muted); }
.l-usecase__sol { color: var(--color-ink-soft); display: flex; gap: 8px; }
.l-usecase__sol svg { width: 18px; height: 18px; color: var(--color-brand); flex-shrink: 0; margin-top: 2px; }
@media (min-width: 720px) { .l-usecases { grid-template-columns: repeat(3, 1fr); } }

/* == Social proof == */
.l-proof { background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); }
.l-statbar { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.l-statbar__n { font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); line-height: 1; }
.l-statbar__l { margin-top: var(--space-2); font-size: var(--text-sm); color: rgba(255,255,255,.78); }
.l-testis { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.l-testi { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: var(--space-6); backdrop-filter: blur(4px); }
.l-testi__stars { color: var(--color-accent); letter-spacing: 2px; font-size: var(--text-sm); }
.l-testi__quote { margin-top: var(--space-3); font-size: var(--text-base); line-height: 1.6; }
.l-testi__who { margin-top: var(--space-4); display: flex; align-items: center; gap: 12px; }
.l-testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1px dashed rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; font-size: 9px; color: rgba(255,255,255,.7); text-align: center; line-height: 1.1; }
.l-testi__name { font-weight: 600; font-size: var(--text-sm); }
.l-testi__role { font-size: var(--text-xs); color: rgba(255,255,255,.7); }
@media (min-width: 640px) { .l-statbar { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 880px) { .l-testis { grid-template-columns: repeat(3, 1fr); } }

/* == Pricing == */
.l-pricing { display: grid; grid-template-columns: 1fr; gap: var(--space-4); align-items: stretch; }
.l-plan {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: var(--space-6); display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.l-plan--featured { border-color: var(--color-brand); box-shadow: var(--shadow-lg); position: relative; }
.l-plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-accent); color: #fff; font-size: var(--text-xs); font-weight: 600; padding: 5px 14px; border-radius: var(--radius-full); letter-spacing: .03em; }
.l-plan__name { font-weight: 600; font-size: var(--text-lg); color: var(--color-ink); }
.l-plan__desc { margin-top: var(--space-1); font-size: var(--text-sm); color: var(--color-muted); min-height: 2.6em; }
.l-plan__price { margin-top: var(--space-4); font-family: var(--font-display); font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem); color: var(--color-ink); line-height: 1; }
.l-plan__price small { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500; color: var(--color-muted); }
.l-plan__list { list-style: none; margin: var(--space-5) 0; padding: 0; display: grid; gap: var(--space-3); flex: 1; }
.l-plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); color: var(--color-ink-soft); }
.l-plan__list svg { width: 18px; height: 18px; color: var(--color-brand); flex-shrink: 0; margin-top: 1px; }
.l-pricing__note { text-align: center; margin-top: var(--space-5); font-size: var(--text-sm); color: var(--color-muted); }
@media (min-width: 880px) { .l-pricing { grid-template-columns: repeat(3, 1fr); } }

/* == FAQ == */
.l-faq { max-width: var(--maxw-mid); margin-inline: auto; display: grid; gap: var(--space-3); }
.l-faq__item { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; }
.l-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5); background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-size: var(--text-base); font-weight: 600; color: var(--color-ink); min-height: 44px;
}
.l-faq__q svg { width: 20px; height: 20px; color: var(--color-muted); flex-shrink: 0; transition: transform .2s ease; }
.l-faq__q[aria-expanded="true"] svg { transform: rotate(180deg); }
.l-faq__a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.l-faq__a-inner { padding: 0 var(--space-5) var(--space-5); color: var(--color-muted); font-size: var(--text-sm); line-height: 1.6; }
.l-faq__q[aria-expanded="true"] + .l-faq__a { max-height: 320px; }

/* == Slot-CTA band == */
.l-cta { position: relative; overflow: hidden; background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 84px) clamp(24px, 4vw, 56px); text-align: center; }
.l-cta::before { content: ""; position: absolute; inset: auto -10% -40% -10%; height: 80%; background: radial-gradient(50% 80% at 50% 100%, rgba(244,116,42,.35), transparent 60%); pointer-events: none; }
.l-cta__inner { position: relative; max-width: 640px; margin-inline: auto; }
.l-cta__title { font-family: var(--font-display); font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.8rem); line-height: 1.1; }
.l-cta__sub { margin-top: var(--space-4); color: rgba(255,255,255,.82); font-size: var(--text-lg); line-height: 1.55; }
.l-cta__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-7); }

/* == Footer == */
.l-footer { background: #0e2c18; color: rgba(255,255,255,.72); padding-block: clamp(48px, 6vw, 80px) var(--space-8); }
.l-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.l-footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.l-footer__logo svg { width: 34px; height: 34px; }
.l-footer__logo span { font-family: var(--font-display); font-size: var(--text-xl); color: #fff; }
.l-footer__tag { margin-top: var(--space-4); font-size: var(--text-sm); line-height: 1.6; max-width: 32ch; }
.l-footer__col h4 { color: #fff; font-size: var(--text-sm); letter-spacing: .04em; margin-bottom: var(--space-4); }
.l-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.l-footer__col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: var(--text-sm); }
.l-footer__col a:hover { color: #fff; }
.l-footer__bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; font-size: var(--text-xs); }
.l-footer__bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.l-footer__bottom a:hover { color: #fff; }
@media (min-width: 720px) { .l-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

/* == Scroll-reveal (eigen attribuut, los van de oude shell) == */
@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
  html.js [data-reveal].is-in { opacity: 1; transform: none; }
  html.js [data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
  html.js [data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
  html.js [data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
}
