:root {
  /* Voorkomt dat de browser bij OS dark mode formulieren/scrollbars "mee-verduistert". */
  color-scheme: only light;
  /*
   * Mini-Maxi: Tweakcn/shadcn-achtig (Slate + sportief blauw/groen).
   * Primary = blauw, secondary = groen; overige accenten functioneel.
   * Geen BOM; alleen ASCII + UTF-8 in comments/strings.
   */
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --link: #1d6fd8;
  --link-hover: #1e40af;
  --accent: #1d4ed8;
  --accent-2: #3b82f6;
  --accent-3: #1e40af;
  --accent-green: #15803d;
  --accent-green-2: #22c55e;
  --accent-violet: #6366f1;
  --accent-mid: #93c5fd;
  --accent-warm: #f59e0b;
  --primary-on: #ffffff;
  --glow-blue: rgba(59, 130, 246, 0.12);
  --glow-green: rgba(34, 197, 94, 0.08);
  --gradient-brand: linear-gradient(135deg, #1d4ed8 0%, #22c55e 100%);
  --gradient-hero: linear-gradient(
    165deg,
    #18181b 0%,
    #27272a 42%,
    #1e3a5f 78%,
    #14532d 100%
  );
  --focus-ring: 0 0 0 3px rgba(59, 130, 246, 0.15);
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, sans-serif;
  --site-thumb-height: 200px;
  --media-well: #f1f5f9;
}

html {
  background-color: var(--bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0.85;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

a.brand:visited {
  color: transparent;
}

a.brand:hover {
  opacity: 0.88;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-links > a {
  padding: 0.4rem 0.65rem;
  border-radius: 0.45rem;
  color: var(--body);
}

.nav-links > a.active,
.nav-links > a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-3);
}

.nav-links > a[aria-current="page"] {
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent-3);
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.45rem;
  color: var(--body);
  font-weight: 600;
}

.nav-dropdown__summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown__summary::after {
  content: " ▾";
  display: inline-block;
  font-size: 0.65em;
  opacity: 0.85;
  transition: transform 0.16s ease;
}

.nav-dropdown[open] .nav-dropdown__summary::after {
  transform: rotate(180deg);
}

.nav-dropdown__summary:hover {
  background: var(--media-well);
}

.nav-dropdown__summary--active {
  background: var(--media-well);
  color: var(--text);
}

.nav-dropdown__summary-label {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__current {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.48rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-dropdown__panel {
  margin-top: 0.35rem;
  padding: 0.45rem;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(24, 24, 27, 0.08);
}

/* Wedstrijdleiding: cockpit-tegels (zelfde taal als assets-tech) */
.nav-dropdown__panel--wl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  min-width: min(100%, 17.5rem);
  max-width: min(32.5rem, calc(100vw - 1.5rem));
}

@media (min-width: 480px) {
  .nav-dropdown__panel--wl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 22rem;
  }
}

.wl-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.wl-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 63, 70, 0.35);
  box-shadow: 0 10px 24px rgba(24, 24, 27, 0.08);
  background: var(--media-well);
  color: var(--text);
}

.wl-tile--current {
  border-color: rgba(63, 63, 70, 0.45);
  box-shadow: 0 0 0 1px rgba(24, 24, 27, 0.35);
}

.wl-tile__pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.wl-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.wl-tile__title {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--text);
}

.wl-tile__desc {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
}

.wl-tile:hover .wl-tile__desc {
  color: var(--body);
}

.wl-tile--hub .wl-tile__pill {
  background: rgba(37, 99, 235, 0.12);
  color: var(--link-hover);
}

.wl-tile--invoer .wl-tile__pill {
  background: rgba(59, 130, 246, 0.16);
  color: #1d4ed8;
}

.wl-tile--beheer .wl-tile__pill {
  background: rgba(79, 70, 229, 0.12);
  color: #4338ca;
}

.wl-tile--resultaat .wl-tile__pill {
  background: rgba(14, 165, 233, 0.14);
  color: #0369a1;
}

.wl-tile--plan .wl-tile__pill {
  background: rgba(52, 211, 153, 0.22);
  color: #047857;
}

.wl-tile--check .wl-tile__pill {
  background: rgba(248, 113, 113, 0.18);
  color: #b91c1c;
}

.wl-tile--grist .wl-tile__pill {
  background: rgba(99, 102, 241, 0.16);
  color: #4338ca;
}

@media (min-width: 941px) {
  .nav-dropdown__panel {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.2rem;
    z-index: 40;
    box-shadow: 0 14px 36px rgba(24, 24, 27, 0.12);
  }
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.06);
}

/* Eerste contentblok: kop + lede + sfeerbeeld(en) in een paneel (Fundagen, Informatie, …) */
.panel--intro-media .mood-banner {
  margin-top: 0.35rem;
}

.panel--intro-media .photo-strip--inline {
  margin-bottom: 0.35rem;
}

.panel--intro-media h2 {
  margin-top: 0.85rem;
}

.panel--intro-media > h1 + .lede {
  margin-bottom: 0;
}

h1,
h2,
h3,
.section-title,
.page-banner__title,
.gallery-title,
.visitor-path__title,
.footer-brand__title,
.speelronde-checklist__title,
.card--quick h3,
.slider-caption h3,
.card--visual h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.kpi {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.75rem;
  background: #f9f4ea;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.1);
}

.club-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 520px) {
  .club-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 740px) {
  .club-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.club-card {
  position: relative;
  overflow: hidden;
  --club-accent-rgb: 37, 99, 235;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.club-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.24rem;
  background: linear-gradient(90deg, rgba(var(--club-accent-rgb), 0.92), rgba(var(--club-accent-rgb), 0.12));
}

.club-card:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 63, 70, 0.24);
  box-shadow: 0 12px 28px rgba(24, 24, 27, 0.08);
}

.club-card__icon {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(var(--club-accent-rgb), 0.18);
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.98) 0 0.18rem, transparent 0.19rem),
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.92) 0 0.17rem, transparent 0.18rem),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.95) 0 0.2rem, transparent 0.21rem),
    linear-gradient(135deg, rgba(var(--club-accent-rgb), 0.18), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.club-card--blue {
  --club-accent-rgb: 37, 99, 235;
}

.club-card--violet {
  --club-accent-rgb: 124, 58, 237;
}

.club-card--green {
  --club-accent-rgb: 5, 150, 105;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem;
  text-align: left;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: var(--site-thumb-height);
  object-fit: contain;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: var(--media-well);
  display: block;
}

form {
  display: grid;
  gap: 0.8rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  border-radius: 0.375rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--accent-2);
  box-shadow: var(--focus-ring);
}

button {
  border: none;
  background-color: var(--accent);
  color: var(--primary-on);
  font-weight: 500;
  font-family: inherit;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
  background-color: var(--accent-3);
}

.section {
  padding: 1rem 0 3rem;
}

.page-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.grist-section {
  padding: 0 0 2.5rem;
}

.grist-section .panel {
  max-width: 100%;
}

.grist-frame-wrap {
  margin-top: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.grist-frame-wrap--padded {
  margin-top: 1.25rem;
}

.grist-home-frame {
  display: block;
  width: 100%;
  height: 78vh;
  min-height: 420px;
  border: 0;
}

.grist-actions {
  align-items: center;
}

.grist-actions .btn,
.grist-actions button.btn {
  font: inherit;
  cursor: pointer;
}

@media (max-width: 820px) {
  .grist-home-frame {
    height: 72vh;
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .grist-home-frame {
    height: 68vh;
    min-height: 320px;
  }
}

.embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.link-row a {
  padding: 0.45rem 0.75rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: var(--media-well);
}

.link-row a:hover {
  background: var(--line-strong);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line-strong);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--body);
  text-align: center;
  background: var(--surface);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  color: var(--text);
  background: var(--bg-soft);
  border-color: var(--line-strong);
}

.btn.primary {
  border: none;
  background-color: var(--accent);
  color: var(--primary-on);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn.primary:hover {
  color: var(--primary-on);
  background-color: var(--accent-3);
  filter: none;
}

.btn.ghost {
  background: transparent;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.section-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  letter-spacing: -0.03em;
}

.home-quick-intro {
  margin: 0 0 1rem;
}

.home-quick-more {
  margin: 1.25rem 0 0;
}

.card--quick {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.2rem;
  height: 100%;
}

.card--quick h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card--quick p {
  margin: 0;
  flex: 1;
  color: var(--body);
  font-size: 0.95rem;
}

.card--quick .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.competitie-quick-links {
  margin: 0 0 1.25rem;
  flex-wrap: wrap;
}

.speelronde-checklist {
  margin: 1.25rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.08));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.speelronde-checklist__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.speelronde-checklist__lead {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.speelronde-checklist__list {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.45rem;
}

.speelronde-checklist__list li {
  padding-left: 0.15rem;
  line-height: 1.45;
}

.section--visitor {
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, var(--glow-blue), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 100%, var(--glow-green), transparent 50%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}

.visitor-guide-lead {
  margin: 0 0 1.25rem;
  max-width: 52ch;
}

.visitor-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .visitor-paths {
    grid-template-columns: repeat(4, 1fr);
  }
}

.visitor-path {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.visitor-path:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
}

.visitor-path--play {
  border-top: 4px solid #0ea5e9;
}

.visitor-path--mini {
  border-top: 4px solid #22c55e;
}

.visitor-path--data {
  border-top: 4px solid #6366f1;
}

.visitor-path--help {
  border-top: 4px solid #f59e0b;
}

.visitor-path__title {
  margin: 0;
  font-size: 1.05rem;
}

.visitor-path__text {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--body);
}

.visitor-path__actions {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.related-links {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line);
}

.related-links__heading {
  margin: 0 0 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.related-links__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.grist-wl-details summary {
  cursor: pointer;
  font-weight: 600;
}

.spond-sunset--panel {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px dashed rgba(245, 158, 11, 0.55);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
}

.spond-sunset__eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.spond-sunset__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.spond-sunset__note {
  margin-bottom: 0;
}

.contact-channel--site {
  border-top: 3px solid #6366f1;
}

.lede {
  font-size: 1.08rem;
  color: var(--body);
  max-width: 65ch;
  margin: 0 0 0.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent-3);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.section.alt {
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(255, 255, 255, 0.92) 45%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.list {
  margin: 0;
  padding-left: 1.25rem;
}

.list li {
  margin: 0.35rem 0;
}

.narrow {
  width: min(760px, 92vw);
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-note {
  font-size: 0.9rem;
  margin: 0;
}

.gallery-title {
  margin-bottom: 1rem;
}

/* Fotoalbums + slider (fotos.php -> assets-site) */
.fotos-quick {
  margin-top: 0.75rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.album-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(24, 24, 27, 0.04);
}

.album-card__head {
  margin-bottom: 0.75rem;
}

.album-card__type {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.album-card__title {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}

.album-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--site-thumb-height);
  height: var(--site-thumb-height);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-well);
}

.album-card__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.album-card__cta {
  margin: 0.85rem 0 0;
}

.atmosphere-slider-wrap {
  padding-top: 0.5rem;
}

.atmosphere-slider {
  position: relative;
}

.slider-viewport {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-well);
}

.slider-track {
  min-height: 22rem;
}

.slider-item {
  display: none;
  position: relative;
  min-height: 22rem;
}

.slider-item.is-active {
  display: block;
  animation: fadeInSlide 0.4s ease;
}

.slider-item img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
}

.slider-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(120deg, rgba(7, 13, 24, 0.95) 0%, rgba(18, 28, 51, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.slider-caption__meta {
  display: block;
  font-size: 0.75rem;
  color: #93c5fd;
  margin-bottom: 0.35rem;
}

.slider-caption h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 38, 0.65);
  color: #fff;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}

.slider-control:hover {
  background: rgba(24, 24, 27, 0.85);
  border-color: rgba(255, 255, 255, 0.55);
}

.slider-control span {
  font-size: 1.75rem;
  vertical-align: middle;
}

.slider-control.prev {
  left: 0.75rem;
}

.slider-control.next {
  right: 0.75rem;
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.slider-dot {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--body);
  border-radius: 999px;
  font-size: 0.68rem;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  max-width: 100%;
}

.slider-dot.is-active {
  background: rgba(63, 63, 70, 0.12);
  border-color: rgba(63, 63, 70, 0.45);
  color: var(--text);
}

.slider-dot span {
  pointer-events: none;
  display: inline-block;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

@keyframes fadeInSlide {
  from {
    opacity: 0.5;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .slider-track,
  .slider-item,
  .slider-item img {
    min-height: 18rem;
  }
}

code {
  font-size: 0.88em;
  font-family: ui-monospace, "Cascadia Code", monospace;
  background: var(--media-well);
  padding: 0.12em 0.4em;
  border-radius: 0.3rem;
}

.site-footer {
  margin-top: 2.5rem;
  padding: 0;
  color: #e4e4e7;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(34, 197, 94, 0.12), transparent 50%),
    linear-gradient(165deg, #18181b 0%, #27272a 48%, #1e293b 100%);
  border-top: 3px solid #3b82f6;
}

.site-footer a {
  color: #93c5fd;
}

.site-footer a:hover {
  color: #dbeafe;
}

.footer-shell {
  padding: 2rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer-brand__site {
  margin: 0 0 0.2rem;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-brand__site a {
  color: #f4f4f5;
  text-decoration: none;
}

.footer-brand__site a:hover {
  color: #fff;
}

.footer-brand__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fafafa;
}

.footer-brand__tag {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #a1a1aa;
  max-width: 28ch;
}

.footer-updated {
  margin: 0;
  font-size: 0.82rem;
  color: #71717a;
}

.footer-updated time {
  font-variant-numeric: tabular-nums;
}

.footer-nav__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a1a1aa;
}

.footer-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.75rem;
}

.footer-nav__list a {
  display: block;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #e4e4e7;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.footer-nav__list a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-tech-card {
  position: relative;
  display: block;
  padding: 1rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: #f4f4f5;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.footer-tech-card:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-tech-card__glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
  pointer-events: none;
}

.footer-tech-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.footer-tech-card__kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a1a1aa;
  font-weight: 700;
}

.footer-tech-card__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-tech-card__url {
  font-size: 0.88rem;
  color: #93c5fd;
  word-break: break-all;
}

.footer-tech-card__hint {
  font-size: 0.8rem;
  color: #a1a1aa;
  line-height: 1.35;
}

.footer-spond-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 1.35rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.footer-spond-banner__badge {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(245, 158, 11, 0.35);
  color: #fef3c7;
}

.footer-spond-banner__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #e4e4e7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #71717a;
}

.footer-bottom__copy,
.footer-bottom__credit {
  margin: 0;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-nav__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .grid-2,
  .cards,
  .gallery,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .kpis {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.open .nav-dropdown__panel {
    position: static;
    box-shadow: none;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .nav-links.open .nav-dropdown__panel--wl {
    grid-template-columns: 1fr;
  }

  .nav-dropdown__summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown__current {
    max-width: min(58vw, 16rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }
}

/* -- Site-beeldmateriaal (images/) - compact en rustig -- */

.hero.hero--split {
  color: #e4e4e7;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(34, 197, 94, 0.22), transparent 50%),
    var(--gradient-hero);
  border-bottom: 3px solid #3b82f6;
  padding: 4rem 0 3.25rem;
}

.hero.hero--split h1 {
  color: #fafafa;
}

.hero.hero--split .lede {
  color: #d4d4d8;
}

.hero.hero--split .eyebrow {
  color: #93c5fd;
}

.hero.hero--split .updated {
  color: #a1a1aa;
}

.hero.hero--split .btn.primary {
  background-color: var(--accent-2);
  border: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.hero.hero--split .btn.primary:hover {
  background-color: #60a5fa;
}

.hero.hero--split .btn:not(.primary) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f4f4f5;
}

.hero.hero--split .btn:not(.primary):hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero.hero--split .hero-collage__frame {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.hero--split {
  padding-bottom: 2rem;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.72fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.hero-copy .eyebrow {
  margin-top: 0;
}

.hero-visual {
  position: relative;
  opacity: 0.97;
}

.hero-collage {
  position: relative;
  min-height: 140px;
  max-width: min(300px, 88vw);
  margin: 0 auto;
}

.hero-collage__frame {
  margin: 0;
  border-radius: 0.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(24, 24, 27, 0.08);
  background: var(--media-well);
}

.hero-collage__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-collage--count-3 .hero-collage__frame--1 {
  position: relative;
  z-index: 3;
  width: 72%;
  margin-left: 8%;
  transform: rotate(-1.5deg);
}

.hero-collage--count-3 .hero-collage__frame--2 {
  position: absolute;
  top: 6%;
  right: -4%;
  width: 58%;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-collage--count-3 .hero-collage__frame--3 {
  position: absolute;
  bottom: 0;
  left: -6%;
  width: 52%;
  transform: rotate(-3deg);
  z-index: 1;
}

.hero-collage--count-2 .hero-collage__frame--1 {
  position: relative;
  z-index: 2;
  width: 74%;
  margin-left: 0;
  transform: rotate(-1.25deg);
}

.hero-collage--count-2 .hero-collage__frame--2 {
  position: absolute;
  top: 10%;
  right: -1%;
  width: 58%;
  transform: rotate(3.5deg);
  z-index: 1;
}

.hero-collage--count-2 .hero-collage__frame--3 {
  display: none;
}

.hero-collage--count-1 .hero-collage__frame--1 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  transform: none;
}

.hero-collage--count-1 .hero-collage__frame--2,
.hero-collage--count-1 .hero-collage__frame--3 {
  display: none;
}

.photo-rail-section {
  padding-top: 0;
  padding-bottom: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(238, 244, 255, 0.65) 45%, transparent 100%);
}

.photo-rail-section--subtle .photo-rail {
  opacity: 0.98;
}

.photo-rail__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-3);
}

.photo-rail__title {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.photo-rail__sub {
  color: var(--muted);
  margin: 0 0 0.35rem;
  max-width: 60ch;
  font-size: 0.88rem;
  line-height: 1.45;
}

.photo-rail__hint {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Een horizontale sfeerstrip (geen grid); scroll op smalle/viewports met veel beelden */
.photo-rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(0.45rem, 1.2vw, 0.65rem);
  margin: 0;
  padding: 0.15rem 0 0.7rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.photo-rail:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

.photo-rail::-webkit-scrollbar {
  height: 7px;
}

.photo-rail::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.photo-rail::-webkit-scrollbar-track {
  background: transparent;
}

.photo-rail__cell {
  flex: 0 0 auto;
  width: clamp(7.25rem, 26vw, 10.75rem);
  height: clamp(5.25rem, 20vw, var(--site-thumb-height));
  margin: 0;
  scroll-snap-align: start;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-well);
}

.photo-rail__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card--visual {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--site-thumb-height);
  height: var(--site-thumb-height);
  padding: 0.2rem 0.35rem;
  background: var(--media-well);
  border-bottom: 1px solid rgba(63, 63, 70, 0.85);
}

.card-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.card--visual .card-body {
  padding: 1rem;
}

.card--visual h3 {
  margin-top: 0;
}

.mood-banner {
  margin: 0 0 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-well);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--site-thumb-height);
  height: var(--site-thumb-height);
}

.mood-banner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.photo-strip--inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.photo-strip--inline figure {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-well);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--site-thumb-height);
  height: var(--site-thumb-height);
}

.photo-strip--inline img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 200px);
  gap: 1rem;
  align-items: start;
}

.contact-hero__text {
  min-width: 0;
}

.contact-hero__visual {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-well);
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--site-thumb-height);
  height: var(--site-thumb-height);
}

.contact-hero__visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    max-width: 260px;
    margin-top: 0.25rem;
  }
}

@media (max-width: 640px) {
  .photo-strip--inline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero__visual {
    order: -1;
    max-width: min(280px, 100%);
    margin: 0 auto;
  }
}

.contact-flash {
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  margin: 0 0 1.25rem;
  border: 1px solid var(--line);
}

.contact-flash--ok {
  background: rgba(220, 252, 231, 0.95);
  border-color: rgba(74, 222, 128, 0.55);
  color: #14532d;
}

.contact-flash--err {
  background: rgba(254, 226, 226, 0.95);
  border-color: rgba(248, 113, 113, 0.45);
  color: #7f1d1d;
}

.contact-flash__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.contact-flash__list {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  min-width: 0;
  box-shadow: 0 6px 18px rgba(24, 24, 27, 0.04);
}

.contact-channel--mail {
  border-color: rgba(63, 63, 70, 0.55);
  box-shadow: 0 0 0 1px rgba(51, 65, 85, 0.25) inset;
}

.contact-channel__label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.contact-channel__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.contact-channel__text {
  margin: 0 0 0.75rem;
  color: var(--body);
  font-size: 0.95rem;
}

.contact-channel__cta {
  margin: 0;
}

.contact-mail-panel__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.contact-mail-form label > span {
  display: block;
  font-size: 0.88rem;
  color: var(--body);
  margin-bottom: 0.25rem;
}

.contact-captcha-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 0.25rem;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-captcha-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Layout utilities (voorheen inline style= op pagina's) ---------- */
.u-text-center {
  text-align: center;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mt-025 {
  margin-top: 0.25rem;
}

.u-mt-035 {
  margin-top: 0.35rem;
}

.u-mt-1 {
  margin-top: 1rem;
}

.u-mb-05 {
  margin-bottom: 0.5rem;
}

.u-mb-09 {
  margin-bottom: 0.9rem;
}

.u-mb-1 {
  margin-bottom: 1rem;
}

.u-mb-125 {
  margin-bottom: 1.25rem;
}

.u-m-0 {
  margin: 0;
}

.u-fs-088 {
  font-size: 0.88rem;
}

.panel--offset-top {
  margin-top: 2rem;
}

.gallery-title--spaced-top {
  margin-top: 2.5rem;
}

.page-tech .cockpit-public__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-tech .card > h2:first-child {
  margin-top: 0;
}

.page-tech.beheer-page .stat-value--compact {
  font-size: 1rem;
}

.page-tech .placeholder__intro {
  margin-bottom: 0.9rem;
}

/* ---------- Paginabanners (binnenpagina's, footervibe) ---------- */

.page-banner {
  color: #e4e4e7;
  padding: clamp(2.25rem, 5vw, 3rem) 0 clamp(1.85rem, 4vw, 2.5rem);
  border-bottom: 3px solid var(--accent-2);
  background:
    radial-gradient(ellipse 75% 55% at 12% 0%, rgba(59, 130, 246, 0.32), transparent 52%),
    radial-gradient(ellipse 65% 48% at 92% 100%, rgba(34, 197, 94, 0.2), transparent 48%),
    var(--gradient-hero);
}

.page-banner__inner {
  position: relative;
}

.page-banner__eyebrow {
  margin: 0 0 0.45rem;
  color: #93c5fd;
}

.page-banner__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  line-height: 1.12;
  color: #fafafa;
  letter-spacing: -0.02em;
}

.page-banner__lede {
  margin: 0;
  max-width: 42rem;
  color: #d4d4d8;
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-banner__lede a {
  color: #bfdbfe;
  font-weight: 600;
}

.page-banner__lede a:hover {
  color: #fff;
}

.page-banner--blue {
  border-bottom-color: #3b82f6;
}

.page-banner--blue .page-banner__eyebrow {
  color: #93c5fd;
}

.page-banner--green {
  border-bottom-color: #22c55e;
}

.page-banner--green .page-banner__eyebrow {
  color: #86efac;
}

.page-banner--violet {
  border-bottom-color: #818cf8;
}

.page-banner--violet .page-banner__eyebrow {
  color: #c4b5fd;
}

.page-banner--amber {
  border-bottom-color: #f59e0b;
}

.page-banner--amber .page-banner__eyebrow {
  color: #fcd34d;
}

.page-banner--teal {
  border-bottom-color: #2dd4bf;
}

.page-banner--teal .page-banner__eyebrow {
  color: #5eead4;
}

.section--after-banner {
  padding-top: clamp(1.35rem, 3vw, 1.85rem);
}

.grist-section.section--after-banner {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.panel--punch {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(37, 99, 235, 0.08),
    0 4px 14px rgba(15, 23, 42, 0.05);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.panel--punch > h2,
.container.narrow > .panel > h2,
.container.narrow .panel h2:first-of-type {
  position: relative;
  padding-left: 0.85rem;
  border-left: 4px solid transparent;
  border-image: var(--gradient-brand) 1;
}

.gallery-title {
  position: relative;
  padding-left: 0.75rem;
  border-left: 4px solid transparent;
  border-image: var(--gradient-brand) 1;
}
