/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy:        #0B1F35;
  --navy-deep:   #08121E;
  --navy-mid:    #112844;
  --navy-card:   #0D2040;
  --yellow:      #FFD200;
  --yellow-dark: #D4AE00;
  --red:         #D62B2B;
  --white:       #FFFFFF;
  --gray-light:  #F4F7FA;
  --gray-mid:    #8FA3BB;
  --gray-muted:  #4A637D;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(255,210,0,0.22);
  --display:     'Barlow Condensed', sans-serif;
  --body:        'Inter', sans-serif;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--navy-deep);
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--border-gold);
  background: rgba(255,210,0,0.07);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.section-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 15px;
  color: var(--gray-mid);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 1rem;
}
.divider {
  width: 40px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 1rem 0 1.4rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 10px 28px rgba(255,210,0,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}
.btn-dark {
  background: var(--navy-deep);
  color: var(--yellow);
}
.btn-dark:hover {
  background: #0b1929;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
.arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   DISPATCH TICKER
   ============================================================ */
.dispatch-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 30px;
  z-index: 201;
  background: #060e18;
  border-bottom: 1px solid rgba(255,210,0,0.15);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--yellow);
  white-space: nowrap;
  border-right: 1px solid rgba(255,210,0,0.15);
  height: 100%;
  flex-shrink: 0;
}
.ticker-live-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: beacon 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
}
@keyframes ticker-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--gray-mid);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ticker-item .t-unit {
  font-weight: 700;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.ticker-item .t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-dot.green  { background: #22c55e; }
.t-dot.yellow { background: var(--yellow); }
.t-dot.red    { background: var(--red); }

/* ============================================================
   UNITS BADGE (hero)
   ============================================================ */
.units-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 1.4rem;
  width: fit-content;
}
.units-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: ticker-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(8, 18, 30, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.18;
  color: var(--white);
}
.logo-text span { color: var(--yellow); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-mid);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--yellow); }
.btn-portal {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  flex-shrink: 0;
}
.btn-portal:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}
.btn-portal svg { width: 14px; height: 14px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem 1.5rem;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--yellow); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-bg-layer.active { opacity: 1; }
.hero-bg-1 {
  background-image:
    linear-gradient(105deg, rgba(8,18,30,0.92) 0%, rgba(8,18,30,0.55) 50%, rgba(8,18,30,0.75) 100%),
    url('../images/nacht.webp');
}
.hero-bg-2 {
  background-image:
    linear-gradient(105deg, rgba(8,18,30,0.92) 0%, rgba(8,18,30,0.55) 50%, rgba(8,18,30,0.75) 100%),
    url('../images/background2.webp');
}
.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-accent::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 100%;
  height: 120%;
  background: linear-gradient(135deg,
    transparent 38%,
    rgba(255,210,0,0.04) 38%,
    rgba(255,210,0,0.04) 42%,
    transparent 42%,
    transparent 48%,
    rgba(255,210,0,0.025) 48%,
    rgba(255,210,0,0.025) 50%,
    transparent 50%
  );
}
.hero-accent::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(255,210,0,0.06) 0%, transparent 65%);
}
.hero-img-block {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  z-index: 1;
  overflow: hidden;
}
.hero-img-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy-deep) 0%, transparent 35%),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 25%);
  z-index: 2;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d2545 0%, #08121E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ambul-silhouette {
  position: relative;
  opacity: 0.18;
}
.ambul-silhouette svg {
  width: 420px;
  height: auto;
  fill: var(--yellow);
}
.hero-beacon {
  position: absolute;
  top: 30%; right: 30%;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: 3;
  animation: beacon 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,210,0,0.5);
}
@keyframes beacon {
  0%   { box-shadow: 0 0 0 0 rgba(255,210,0,0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(255,210,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,210,0,0); }
}
.hero-beacon.red {
  background: var(--red);
  top: 28%; right: 29%;
  animation-delay: 0.9s;
  animation-name: beacon-red;
  box-shadow: 0 0 0 0 rgba(214,43,43,0.5);
}
@keyframes beacon-red {
  0%   { box-shadow: 0 0 0 0 rgba(214,43,43,0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(214,43,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,43,43,0); }
}
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.6rem;
}
.hero-kicker-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: beacon 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,210,0,0.5);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-title .line-solid  { display: block; }
.hero-title .line-yellow { display: block; color: var(--yellow); }
.hero-title .line-stroke {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.4);
  color: transparent;
}
.hero-body {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 440px;
  line-height: 1.72;
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4rem;
  color: var(--gray-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 36px;
  height: 1px;
  background: var(--gray-muted);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.04) 28px,
    rgba(0,0,0,0.04) 30px
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,0.05); }
.stat-icon {
  width: 46px; height: 46px;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 22px; height: 22px;
  stroke: var(--navy-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-number {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(8,18,30,0.58);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten-section {
  background: var(--navy);
  padding: 90px 0;
}
.diensten-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dienst-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.22s, transform 0.22s;
}
.dienst-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.dienst-icon {
  width: 48px; height: 48px;
  background: rgba(255,210,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.dienst-icon svg {
  width: 24px; height: 24px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dienst-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.dienst-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.68;
}

/* ============================================================
   NEWS / KRANT
   ============================================================ */
.news-section {
  background: var(--navy-deep);
  padding: 90px 0;
}
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.news-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
}
.news-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.news-card-img {
  height: 188px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.news-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-1 { background: linear-gradient(135deg, #0d2a4a 0%, #112844 100%); }
.card-img-2 { background: linear-gradient(135deg, #1a1020 0%, #0d1f35 100%); }
.card-img-3 { background: linear-gradient(135deg, #0f1f10 0%, #091520 100%); }
.card-img-icon { opacity: 0.12; }
.card-img-icon svg {
  width: 100px; height: 100px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.news-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.cat-yellow { background: var(--yellow); color: var(--navy-deep); }
.cat-red    { background: var(--red);    color: var(--white); }
.cat-blue   { background: #1A4A7A;       color: var(--white); }
.news-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--gray-muted);
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}
.news-card-meta span {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gray-muted);
  border-radius: 50%;
}
.news-card-title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.news-card-excerpt {
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.66;
  flex: 1;
  margin-bottom: 1.2rem;
}
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap 0.18s;
}
.news-card:hover .news-card-link { gap: 10px; }
.news-card-link svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.edition-strip {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.edition-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.18;
  line-height: 1;
  flex-shrink: 0;
}
.edition-info { flex: 1; min-width: 220px; }
.edition-info h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.edition-info p {
  font-size: 13px;
  color: var(--gray-mid);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--navy);
  padding: 90px 0;
}
.gallery-header { margin-bottom: 2rem; }
.gallery-masonry {
  columns: 2;
  column-gap: 10px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--navy-card);
  display: block;
  transition: transform 0.25s;
}
.gal-item:hover { transform: scale(1.012); z-index: 2; }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,30,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.gal-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gal-label {
  position: absolute;
  bottom: 10px; left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
  background: var(--navy-deep);
  padding: 90px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.team-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s;
}
.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.team-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-card-info { padding: 1.25rem; }
.team-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #5865F2;
  background: rgba(88,101,242,0.1);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 6px;
  padding: 5px 10px;
  transition: background 0.18s, border-color 0.18s;
}
.team-discord:hover {
  background: rgba(88,101,242,0.2);
  border-color: rgba(88,101,242,0.5);
}
.team-discord svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ============================================================
   VACATURE STRIP
   ============================================================ */
.vacature-strip {
  background: var(--yellow);
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vacature-strip::before {
  content: 'TEDEAPOLIS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 200px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(0,0,0,0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.vacature-strip h2 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-deep);
  line-height: 0.9;
  margin-bottom: 1rem;
  position: relative;
}
.vacature-strip p {
  font-size: 16px;
  color: rgba(8,18,30,0.65);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.klacht-strip {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.klacht-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.klacht-strip-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-muted);
}
.klacht-strip-icon svg { width: 18px; height: 18px; }
.klacht-strip-text { flex: 1; }
.klacht-strip-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.klacht-strip-text p {
  font-size: 12.5px;
  color: var(--gray-muted);
}
.klacht-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}
.klacht-strip-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.klacht-strip-btn svg { width: 13px; height: 13px; }

@media (max-width: 600px) {
  .klacht-strip-inner { flex-wrap: wrap; }
  .klacht-strip-icon { display: none; }
  .klacht-strip-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-mark { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 13.5px;
  color: var(--gray-muted);
  line-height: 1.7;
  max-width: 270px;
  margin-top: 0.75rem;
}
.footer-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1rem;
  font-size: 11.5px;
  color: #d47070;
  background: rgba(214,43,43,0.1);
  border: 1px solid rgba(214,43,43,0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 500;
}
.footer-disclaimer svg {
  width: 14px; height: 14px;
  stroke: #d47070;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: var(--gray-muted);
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: var(--gray-muted); }
.footer-bottom a { color: var(--gray-muted); transition: color 0.18s; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 12.5px; }

/* ============================================================
   KLACHTENFORMULIER MODAL
   ============================================================ */
.klacht-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,10,18,0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.klacht-overlay.open { display: flex; }

.klacht-box {
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-mid) transparent;
}

.klacht-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-mid);
  transition: background 0.15s, color 0.15s;
}
.klacht-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.klacht-close svg { width: 16px; height: 16px; }

.klacht-header { margin-bottom: 1.75rem; padding-right: 2rem; }
.klacht-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,210,0,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 0.75rem;
}
.klacht-header h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.klacht-header p { font-size: 13.5px; color: var(--gray-mid); }

.klacht-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.klacht-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.klacht-row .klacht-field { margin-bottom: 0; }

.klacht-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-mid);
}
.klacht-field input,
.klacht-field textarea,
.klacht-field select {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--body);
  font-size: 13.5px;
  padding: 10px 13px;
  transition: border-color 0.15s;
  outline: none;
}
.klacht-field input::placeholder,
.klacht-field textarea::placeholder { color: var(--gray-muted); }
.klacht-field input:focus,
.klacht-field textarea:focus,
.klacht-field select:focus { border-color: var(--yellow); }
.klacht-field textarea { resize: vertical; min-height: 120px; }
.klacht-field select { appearance: none; cursor: pointer; }

.klacht-truth { justify-content: flex-end; }
.klacht-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--gray-mid);
  cursor: pointer;
  line-height: 1.5;
}
.klacht-checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--yellow);
  padding: 0;
  border-radius: 4px;
}

.klacht-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.klacht-disclaimer {
  font-size: 11.5px;
  color: var(--gray-muted);
  font-style: italic;
}
.klacht-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  transition: background 0.18s, opacity 0.18s;
  flex-shrink: 0;
}
.klacht-submit:hover { background: var(--yellow-dk); }
.klacht-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.klacht-submit svg { width: 14px; height: 14px; }

.klacht-success {
  margin-top: 1rem;
  padding: 12px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  font-size: 13.5px;
  color: #6ee7a0;
}
.klacht-error {
  margin-top: 1rem;
  padding: 12px 16px;
  background: rgba(214,43,43,0.1);
  border: 1px solid rgba(214,43,43,0.25);
  border-radius: 8px;
  font-size: 13.5px;
  color: #f87171;
}

@media (max-width: 600px) {
  .klacht-row { grid-template-columns: 1fr; }
  .klacht-box { padding: 1.25rem; }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, 0.85);
  backdrop-filter: blur(6px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-mid);
  transition: background 0.15s, color 0.15s;
  z-index: 2;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.modal-close svg { width: 15px; height: 15px; }

.modal-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  position: relative;
  flex-shrink: 0;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.modal-body { padding: 1.75rem 2rem 2rem; }

.modal-title {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.modal-text p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.modal-text strong { color: var(--white); }

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.modal-highlight {
  background: rgba(255,210,0,0.07);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.6;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .modal-body { padding: 1.25rem 1.25rem 1.5rem; }
  .modal-img { height: 180px; }
}

/* ============================================================
   WOORDZOEKER
   ============================================================ */
.wordsearch-section {
  background: var(--navy);
  padding: 90px 0;
}
.wordsearch-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ws-grid-wrap {
  flex-shrink: 0;
}
.ws-grid {
  display: grid;
  grid-template-columns: repeat(16, 36px);
  grid-template-rows: repeat(16, 36px);
  gap: 2px;
  user-select: none;
}
.ws-cell {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray-mid);
  border-radius: 5px;
  cursor: pointer;
  background: var(--navy-card);
  border: 1px solid var(--border);
  transition: background 0.1s, color 0.1s;
}
.ws-cell:hover { background: var(--navy-mid); color: var(--white); }
.ws-cell.selecting { background: rgba(255,210,0,0.25); color: var(--yellow); border-color: var(--border-gold); }
.ws-cell.found { background: rgba(255,210,0,0.15); color: var(--yellow); border-color: var(--border-gold); }
.ws-cell.found-red { background: rgba(214,43,43,0.15); color: #E85555; border-color: rgba(214,43,43,0.3); }
.ws-cell.found-blue { background: rgba(26,74,138,0.3); color: #5B9FD4; border-color: rgba(91,159,212,0.3); }

.ws-sidebar {
  flex: 1;
  min-width: 200px;
}
.ws-wordlist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.ws-word {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.ws-word::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-muted);
  flex-shrink: 0;
  transition: background 0.2s;
}
.ws-word.found {
  color: var(--yellow);
  text-decoration: line-through;
  text-decoration-color: rgba(255,210,0,0.5);
}
.ws-word.found::before { background: var(--yellow); }

.ws-reset {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray-mid);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.ws-reset:hover { background: rgba(255,255,255,0.05); color: var(--white); border-color: rgba(255,255,255,0.15); }

.ws-congrats {
  display: none;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.ws-congrats.show { display: block; }

@media (max-width: 768px) {
  .wordsearch-section { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .news-grid       { grid-template-columns: 1fr 1fr; }
  .diensten-grid   { grid-template-columns: 1fr 1fr; }
  .footer-main     { flex-wrap: wrap; gap: 2rem; }
  .footer-brand    { max-width: 100%; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .btn-portal { display: none; }
  .nav-hamburger { display: flex; }

  /* Container smaller padding */
  .container { padding: 0 1.1rem; }

  /* Hero */
  .hero { min-height: 85vh; padding-top: 68px; }
  .hero-inner { padding: 44px 1.1rem 48px; }
  .hero-img-block { display: none; }
  .hero-title { font-size: clamp(44px, 13vw, 68px); margin-bottom: 1.2rem; }
  .hero-title .line-stroke { -webkit-text-stroke: 1.5px rgba(255,255,255,0.4); }
  .hero-body { font-size: 14px; margin-bottom: 1.8rem; }
  .hero-scroll-cue { display: none; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { font-size: 14px; padding: 11px 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 18px 16px; gap: 10px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.1); }
  .stat-number { font-size: 30px; }
  .stat-icon { width: 38px; height: 38px; }

  /* Sections */
  .diensten-section,
  .news-section,
  .gallery-section,
  .team-section { padding: 48px 0; }
  .section-title { font-size: clamp(30px, 8vw, 46px); }

  /* Diensten */
  .diensten-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .diensten-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .diensten-header .btn-outline { display: none; }
  .dienst-card { padding: 1.25rem; }

  /* News */
  .news-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .news-header .btn-outline { display: none; }
  .news-card-img { height: 150px; }
  .news-card-body { padding: 1.1rem 1.1rem 1.2rem; }
  .edition-strip { padding: 1.2rem; gap: 0.75rem; }
  .edition-num { font-size: 38px; }

  /* Gallery */
  .gallery-masonry { columns: 2; column-gap: 6px; }
  .gal-item { margin-bottom: 6px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .team-card-img { height: 160px; }
  .team-card-info { padding: 0.9rem; }
  .team-card-name { font-size: 0.95rem; }

  /* Vacature */
  .vacature-strip { padding: 52px 1.5rem; }
  .vacature-strip::before { font-size: 100px; }

  /* Footer */
  /* Footer mobiel compact */
  footer { padding: 36px 0 20px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-brand .nav-logo { margin-bottom: 0; }
  .footer-brand p { display: none; }
  .footer-brand .footer-disclaimer { margin-top: 0; font-size: 10.5px; }
  .footer-col h4 { margin-bottom: 0.75rem; }
  .footer-col ul li { margin-bottom: 6px; }
  .footer-col ul li a { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .footer-bottom p { font-size: 11.5px; }
  .footer-bottom-links a { font-size: 11.5px; }
  footer { padding: 44px 0 24px; }
}

@media (max-width: 480px) {
  /* Stats: 2 kolommen blijven maar kleiner */
  .stat-item { padding: 14px 12px; }
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 10px; }
  .stat-icon { display: none; }

  /* Gallery: 1 kolom */
  .gallery-masonry { columns: 1; }

  /* Team: 1 kolom */
  .team-grid { grid-template-columns: 1fr; }
  .team-card-img { height: 200px; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* Diensten: compacter */
  .dienst-card { padding: 1rem; }
  .dienst-card h3 { font-size: 17px; }
  .dienst-card p { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
