*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #CC1520;
  --red-dark: #a81018;
  --red-light: rgba(204,21,32,0.08);
  --charcoal: #1c1f21;
  --charcoal2: #2c3035;
  --gray: #f4f4f2;
  --gray2: #e8e8e5;
  --muted: #7a7a78;
  --text: #1c1f21;
  --white: #ffffff;
  --border: #e0e0de;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LOGO SVG ── */
.logo-svg { display: flex; align-items: center; gap: 0; }

/* ── NAV ── */
body > nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  /* Nav padding matches the .section-inner alignment used elsewhere on the
     page (e.g. Projecten section): content edge at (viewport - 1200)/2 on
     wide screens, 5vw on narrow. */
  padding-top: 0;
  padding-bottom: 0;
  padding-left: max(5vw, calc((100vw - 1200px) / 2));
  padding-right: max(5vw, calc((100vw - 1200px) / 2));
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}
.nav-logo-img { display: block; height: 44px; width: auto; }
.nav-logo-wbc {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 32px; letter-spacing: -0.01em;
  color: var(--red); line-height: 1;
}
.nav-logo-sports {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 32px; letter-spacing: -0.01em;
  color: var(--charcoal); line-height: 1;
}
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--red); text-transform: uppercase;
  display: block; margin-top: -3px; margin-left: 1px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--charcoal2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 10px 24px; border-radius: 3px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta::after { display: none !important; }

/* Overlay lives inside <nav> for stacking-context reasons. Hide it on
   desktop so it doesn't claim a flex slot and push .nav-links inward. */
.nav-overlay { display: none; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,31,33,0.3) 0%, rgba(28,31,33,0.65) 60%, rgba(28,31,33,0.95) 100%),
    linear-gradient(160deg, #0c2e10 0%, #1a5020 40%, #0e3814 70%, #081e08 100%);
  background-size: cover;
  background-position: center 55%;
}

/* Hero carousel — crossfade stack */
.hero-bg-stack {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0c2e10 0%, #1a5020 40%, #0e3814 70%, #081e08 100%);
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,31,33,0.35) 0%, rgba(28,31,33,0.6) 55%, rgba(28,31,33,0.97) 100%);
  pointer-events: none;
}
.hero-dots {
  /* Dots have invisible 44px tap area; offset bottom and remove gap so the
     visible dots stay tightly grouped at the bottom. */
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0; z-index: 4;
}
.hero-dot {
  /* Visible dot is 10x10, but the button itself is 44x44 for tap target */
  width: 44px; height: 44px;
  background: transparent; border: none; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-dot::before {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.32);
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.hero-dot:hover::before { background: rgba(255,255,255,0.6); }
.hero-dot.active::before {
  background: var(--red);
  width: 28px; border-radius: 6px;
}
.hero-dot:focus-visible {
  outline: 2px solid var(--red); outline-offset: 3px;
  border-radius: 50%;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 80px;
  /* Match .section-inner alignment: max-width 1200 centered, with 5vw of
     viewport breathing room on narrow screens. Content left edge ends up at
     (viewport - 1200)/2 on wide, or 5vw on narrow — same as <section> +
     .section-inner pattern (e.g. Projecten section). */
  width: min(1200px, calc(100% - 10vw));
  margin: 0 auto;
  align-items: flex-start;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease both;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(60px, 8.5vw, 120px);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -0.015em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-h1 em { color: rgba(204,21,32,0.92); font-style: normal; }
.hero-sub {
  font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.75);
  max-width: 500px; line-height: 1.65; margin-bottom: 44px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-red {
  background: var(--red); color: white;
  padding: 15px 36px; border-radius: 3px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Barlow Condensed', sans-serif;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 13px 36px; border-radius: 3px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
}
.btn-white:hover { border-color: white; background: rgba(255,255,255,0.08); }
.hero-stats {
  position: absolute;
  right: 0;
  bottom: 80px;          /* aligns with bottom of hero buttons */
  z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
  min-width: 200px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px; padding: 20px 24px; text-align: right;
  backdrop-filter: blur(8px);
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800; color: var(--red);
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; white-space: nowrap; }
.hero-stat-icon {
  display: inline-flex; align-items: center; justify-content: flex-end;
  height: 46px; color: var(--red);
}
.hero-stat-icon svg { display: block; }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--charcoal);
  padding: 52px 5vw;
  display: flex; justify-content: center;
}
.services-inner {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.service-item:last-child { border-right: none; }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 800; color: white;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.service-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── SECTION BASICS ── */
section { padding: 100px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-overline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-overline::before {
  content: ''; width: 28px; height: 2px; background: var(--red);
}
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900; line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-p {
  font-size: 16px; color: var(--muted);
  max-width: 520px; line-height: 1.75;
}

/* ── PROJECTS ── */
.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; flex-wrap: wrap; gap: 20px;
}
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  border: 1px solid var(--border); background: none;
  color: var(--muted); padding: 8px 18px; border-radius: 2px;
  font-size: 13px; font-weight: 500; font-family: 'Barlow', sans-serif;
  cursor: pointer; transition: all 0.18s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red);
  color: white;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.proj-card {
  border-radius: 3px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--gray);
  display: block;
}
/* Legacy 12-col mosaic spans — only apply inside .projects-grid (homepage) */
.projects-grid > .proj-card:nth-child(1) { grid-column: span 7; }
.projects-grid > .proj-card:nth-child(2) { grid-column: span 5; }
.projects-grid > .proj-card:nth-child(3) { grid-column: span 4; }
.projects-grid > .proj-card:nth-child(4) { grid-column: span 4; }
.projects-grid > .proj-card:nth-child(5) { grid-column: span 4; }
.projects-grid > .proj-card:nth-child(6) { grid-column: span 5; }
.projects-grid > .proj-card:nth-child(7) { grid-column: span 7; }
.projects-grid > .proj-card:nth-child(8) { grid-column: span 4; }
.projects-grid > .proj-card:nth-child(9) { grid-column: span 4; }
.projects-grid > .proj-card:nth-child(10) { grid-column: span 4; }
.projects-grid > .proj-card:nth-child(11) { grid-column: span 6; }
.projects-grid > .proj-card:nth-child(12) { grid-column: span 6; }

.proj-img {
  width: 100%; min-height: 260px; height: 100%;
  display: block; position: relative;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
}
.proj-card:nth-child(1) .proj-img { min-height: 420px; }

.proj-card:hover .proj-img { transform: scale(1.04); }

.proj-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 22px,
    transparent 22px, transparent 44px
  );
}
.pitch-lines {
  position: absolute; inset: 6% 5%;
  border: 1.5px solid rgba(255,255,255,0.14);
}
.pitch-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 18%; padding-bottom: 18%;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.pitch-midline {
  position: absolute; top: 6%; bottom: 6%; left: 50%;
  width: 1.5px; background: rgba(255,255,255,0.1);
}

.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,31,33,0.88) 0%, rgba(28,31,33,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 26px;
  transition: opacity 0.3s;
}
.proj-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 6px; font-family: 'Barlow Condensed', sans-serif;
}
.proj-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  color: white; letter-spacing: 0.02em; line-height: 1.1;
}
.proj-card:nth-child(1) .proj-name { font-size: 30px; }
.proj-meta { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.proj-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
  color: var(--charcoal);
}
.proj-zoom svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.proj-card:hover .proj-zoom { opacity: 1; }

/* ── PROJECTS: HOME GRID OVERRIDE (5 cards) ── */
.projects-grid-home .proj-card:nth-child(1) { grid-column: span 7; }
.projects-grid-home .proj-card:nth-child(2) { grid-column: span 5; }
.projects-grid-home .proj-card:nth-child(3) { grid-column: span 4; }
.projects-grid-home .proj-card:nth-child(4) { grid-column: span 4; }
.projects-grid-home .proj-card:nth-child(5) { grid-column: span 4; }
.projects-grid-home .proj-card:nth-child(1) .proj-img { min-height: 480px; }
.projects-grid-home .proj-card:nth-child(1) .proj-name { font-size: 30px; }

.projects-cta {
  display: flex; justify-content: center;
  margin-top: 56px;
}
.projects-header-link {
  align-self: flex-end;
}
.projects-link-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--red); transition: gap 0.2s, color 0.2s;
}
.projects-link-arrow:hover { color: var(--red-dark); }

/* ── PROJECTEN PAGE: full grid ── */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.projects-page-grid .proj-card {
  border-radius: 3px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--gray);
  display: block;
  grid-column: span 1;
}
.projects-page-grid .proj-card .proj-img {
  width: 100%; min-height: 280px; height: 100%;
  display: block; position: relative;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
}
.projects-page-grid .proj-card:hover .proj-img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .projects-page-grid { grid-template-columns: 1fr; }
}

.projects-year-divider {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  margin: 28px 0 4px;
}
.projects-year-divider:first-child { margin-top: 0; }
.projects-year-divider .year-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900; color: var(--charcoal);
  letter-spacing: 0.02em;
}
.projects-year-divider .year-line {
  flex: 1; height: 2px; background: var(--border);
}

/* ── ABOUT ── */
.about-section {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 3px; overflow: hidden;
  background-size: cover;
  background-position: center;
}
.about-img-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent, transparent 28px,
    rgba(255,255,255,0.025) 28px, rgba(255,255,255,0.025) 29px
  );
}
.about-img-pitch {
  position: absolute; inset: 8%;
  border: 1.5px solid rgba(255,255,255,0.13);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: white;
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(204,21,32,0.3);
}
.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900; line-height: 1;
}
.about-badge-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; margin-top: 2px; }

.values-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.value-item {
  padding: 16px 0 16px 20px;
  border-left: 3px solid var(--red);
}
.value-icon { display: none; }
.value-title { font-weight: 600; font-size: 16px; color: var(--text); margin-bottom: 4px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── VACATURES ── */
.vac-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.vac-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: background 0.15s;
  gap: 20px;
}
.vac-row:first-child { border-top: 1px solid var(--border); }
.vac-row:link, .vac-row:visited { color: var(--text); }
.vac-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.vac-meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.vac-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.vac-arrow {
  font-size: 20px; color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}
/* Hover only on devices with a real cursor — prevents stuck red on mobile tap */
@media (hover: hover) {
  .vac-row:hover .vac-title { color: var(--red); }
  .vac-row:hover .vac-arrow { transform: translateX(4px); color: var(--red); }
}

/* ── CONTACT CTA ── */
.cta-section {
  background: var(--charcoal);
  padding: 100px 5vw;
  position: relative; overflow: hidden;
}
.cta-bg-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    transparent, transparent 80px,
    rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px
  );
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; position: relative; z-index: 1;
}
.cta-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; color: white;
  margin-bottom: 16px;
}
.cta-h2 span { color: var(--red); }
.cta-p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 440px; }
.cta-right { flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: #111315;
  padding: 48px 5vw;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  background: transparent;
}
.footer-logo img {
  height: 36px; width: auto; display: block;
}
.footer-links {
  display: flex; gap: 28px;
  background: transparent !important;
  position: static !important;
  height: auto !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-box {
  max-width: 940px; width: 100%;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s;
}
.lightbox.open .lb-box { transform: none; }
.lb-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 3px 3px 0 0;
  position: relative; overflow: hidden;
  background-size: cover;
  background-position: center;
}
.lb-caption {
  background: var(--charcoal); border-radius: 0 0 3px 3px;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.lb-cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--red); text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; }
.lb-name { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: white; text-transform: uppercase; margin-top: 2px; }
.lb-btn {
  background: var(--red); color: white;
  padding: 10px 22px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s; flex-shrink: 0;
}
.lb-btn:hover { background: var(--red-dark); }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ── PAGE HEADER (subpages) ── */
.page-header {
  background: var(--charcoal);
  padding: 60px 5vw 50px;
  position: relative; overflow: hidden;
}
.page-header-inner {
  max-width: 1200px; margin: 0 auto;
}
.page-header .section-overline { color: var(--red); }
.page-header .section-overline::before { background: var(--red); }
.page-header .section-h2 { color: white; margin-bottom: 0; }
.page-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: white; }

/* ── PROJECT DETAIL ── */
.project-detail { padding: 60px 5vw 100px; }
.project-detail-inner { max-width: 1200px; margin: 0 auto; }
.project-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-bottom: 48px;
}
.project-info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.project-info-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 4px;
}
.project-info-value {
  font-size: 18px; font-weight: 600; color: var(--text);
}
.project-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 48px;
  max-width: 900px;
}
.project-photo {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 3px; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--gray);
}
.project-photo:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.project-desc {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  max-width: 720px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--red); transition: gap 0.2s;
  margin-top: 40px;
}
.back-link:hover { gap: 12px; }

/* ── VACATURE DETAIL ── */
.vac-detail { padding: 60px 5vw 100px; }
.vac-detail-inner { max-width: 800px; margin: 0 auto; }
.vac-detail-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.vac-detail-meta-item { }
.vac-detail-meta-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 2px;
}
.vac-detail-meta-value {
  font-size: 15px; font-weight: 500; color: var(--text);
}
.vac-detail-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  margin: 32px 0 12px; color: var(--text);
}
.vac-detail-body ul {
  list-style: none; padding: 0;
}
.vac-detail-body li {
  padding: 6px 0 6px 20px; position: relative;
  font-size: 15px; color: var(--muted); line-height: 1.6;
}
.vac-detail-body li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-light);
}
.vac-detail-body p {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
}
.vac-apply {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── CONTACT FORM ── */
.contact-page { padding: 60px 5vw 100px; }
.contact-page-inner { max-width: 1200px; margin: 0 auto; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px; color: var(--text); line-height: 1.6;
}
.contact-info-value a {
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--red); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 3px; font-family: 'Barlow', sans-serif;
  font-size: 15px; color: var(--text);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  background: var(--red); color: white; border: none;
  padding: 15px 36px; border-radius: 3px;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  cursor: pointer; transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--red-dark); }

/* ── PLACEHOLDER IMAGE ── */
.placeholder-field {
  background: linear-gradient(155deg, #1a4d20 0%, #236628 40%, #163d18 100%);
  position: relative;
}
.placeholder-field::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 22px,
    transparent 22px, transparent 44px
  );
}

/* ── FOOTER DETAIL ── */
.footer-contact-info {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: white; }

/* ── VACATURE HERO ── */
.vac-hero-img {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center 60%;
}

/* ── DETAIL LIGHTBOX ── */
.project-photo { cursor: pointer; transition: transform 0.3s; position: relative; }
.project-photo:hover { transform: scale(1.02); }
.project-photo::after {
  content: '🔍'; position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.85); display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; opacity: 0; transition: opacity 0.25s;
  pointer-events: none;
}
.project-photo:hover::after { opacity: 1; }
.detail-lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s; cursor: pointer;
}
.detail-lightbox.open { opacity: 1; pointer-events: all; }
.detail-lightbox img {
  max-width: 92vw; max-height: 92vh;
  border-radius: 4px; object-fit: contain;
  transform: scale(0.95); transition: transform 0.3s;
}
.detail-lightbox.open img { transform: scale(1); }
.detail-lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 1000;
}
.detail-lb-close:hover { background: rgba(255,255,255,0.25); }

.detail-lb-prev, .detail-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 32px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
  z-index: 1000; padding: 0;
  font-family: 'Barlow Condensed', sans-serif;
}
.detail-lb-prev { left: 24px; }
.detail-lb-next { right: 24px; }
.detail-lb-prev:hover:not(:disabled),
.detail-lb-next:hover:not(:disabled) {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.05);
}
.detail-lb-prev:disabled, .detail-lb-next:disabled {
  opacity: 0.25; cursor: not-allowed;
}
.detail-lb-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px; border-radius: 999px;
  z-index: 1000;
}
@media (max-width: 600px) {
  .detail-lb-prev, .detail-lb-next {
    width: 44px; height: 44px; font-size: 26px;
  }
  .detail-lb-prev { left: 10px; }
  .detail-lb-next { right: 10px; }
  .detail-lb-counter { bottom: 20px; font-size: 12px; padding: 6px 14px; }
}

/* ── ABOUT PAGE ── */
.about-hero {
  width: 100%; height: 480px;
  background-size: cover; background-position: center 40%;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,31,33,0.5) 0%, rgba(28,31,33,0.75) 100%);
}
.about-hero-title {
  position: relative; z-index: 2; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900; text-transform: uppercase;
  color: white; letter-spacing: -0.02em; line-height: 0.95;
}
.about-hero-title span { color: var(--red); }
.about-body {
  padding: 80px 5vw;
}
.about-body-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr; gap: 80px;
}
.about-sidebar-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; font-style: italic;
  color: var(--red); line-height: 1.25;
  border-left: 4px solid var(--red);
  padding-left: 24px; margin-bottom: 40px;
}
.about-sidebar-stats {
  display: flex; flex-direction: column; gap: 16px;
}
.about-sidebar-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.about-sidebar-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 900; color: var(--red); line-height: 1;
}
.about-sidebar-stat-label {
  font-size: 13px; color: var(--muted); margin-top: 2px;
}
.about-sidebar-stat-icon {
  display: flex; align-items: center; height: 42px;
}
.about-sidebar-stat-icon svg { display: block; }
.about-text p {
  font-size: 16px; line-height: 1.8; color: var(--muted);
  margin-bottom: 20px;
}
.about-red-bar {
  width: 100%; height: 4px; background: var(--red);
}
.about-kracht {
  background: var(--charcoal); padding: 80px 5vw;
}
.about-kracht-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.about-kracht-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900; text-transform: uppercase;
  color: white; margin-bottom: 12px;
}
.about-kracht-sub {
  font-size: 18px; color: rgba(255,255,255,0.55);
  max-width: 600px; margin: 0 auto 56px;
}
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: left;
}
.about-values-grid > div {
  padding-left: 20px;
  border-left: 3px solid var(--red);
}
.about-value-dot { display: none; }
.about-value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; color: white;
  text-transform: uppercase; margin-bottom: 8px;
}
.about-value-desc {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65;
}
.about-stats-bar {
  background: var(--gray); padding: 56px 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: center;
}
.about-stat-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; color: var(--red); line-height: 1;
}
.about-stat-big-icon {
  display: flex; align-items: center; justify-content: center; height: 56px;
}
.about-stat-big-icon svg { display: block; }
.about-stat-label {
  font-size: 14px; color: var(--muted); margin-top: 4px;
}

/* ── SOLLICITEREN PAGE ── */
.apply-hero {
  position: relative; height: 380px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.apply-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  filter: brightness(0.35);
}
.apply-hero-content {
  position: relative; z-index: 2;
  padding: 0 5vw 48px; max-width: 1200px; width: 100%; margin: 0 auto;
}
.apply-hero-badge {
  display: inline-block;
  background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px;
  margin-bottom: 16px;
}
.apply-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 0.95; text-transform: uppercase;
  color: white; margin-bottom: 16px;
}
.apply-hero-title span { color: var(--red); }
.apply-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 480px; line-height: 1.5;
}

.apply-section {
  padding: 64px 5vw 80px;
}
.apply-inner {
  max-width: 720px; margin: 0 auto;
}
.apply-intro {
  margin-bottom: 32px;
}
.apply-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 900; text-transform: uppercase;
  margin-bottom: 8px;
}
.apply-intro p {
  font-size: 15px; color: var(--muted); line-height: 1.6;
}

.apply-form-card {
  background: var(--charcoal); border-radius: 6px;
  padding: 40px; color: white;
}
.apply-form-row { margin-bottom: 20px; }
.apply-form-row.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.apply-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7); margin-bottom: 6px;
  font-family: 'Barlow', sans-serif;
}
.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; color: white;
  font-family: 'Barlow', sans-serif; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.apply-field input::placeholder,
.apply-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.12);
}
.apply-field select option { color: var(--charcoal); background: white; }
.apply-field textarea { resize: vertical; min-height: 100px; }
.apply-field input[type="file"] {
  padding: 10px 16px; cursor: pointer;
}
.apply-field input[type="file"]::file-selector-button {
  background: var(--red); color: white; border: none;
  padding: 6px 16px; border-radius: 3px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; margin-right: 12px;
  transition: background 0.2s;
}
.apply-field input[type="file"]::file-selector-button:hover {
  background: var(--red-dark);
}

.apply-submit {
  width: 100%; padding: 16px;
  background: var(--red); color: white; border: none;
  border-radius: 4px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.apply-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

.apply-privacy {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-align: center; margin-top: 16px; line-height: 1.5;
}

/* Perks */
.apply-perks {
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--border);
}
.apply-perks-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900; text-transform: uppercase;
  margin-bottom: 24px;
}
.apply-perks-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.apply-perk {
  padding: 24px; background: var(--gray);
  border-radius: 4px; border: 1px solid var(--border);
}
.apply-perk-icon { font-size: 28px; margin-bottom: 10px; }
.apply-perk-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 4px;
}
.apply-perk-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── HAMBURGER MENU ── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 210;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--charcoal);
  margin: 6px auto; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── RESPONSIVE: TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .services-inner { grid-template-columns: 1fr; }
  .service-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 400px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-p { margin: 0 auto; }
  .about-body-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-bar-inner { gap: 24px; }
}

/* ── RESPONSIVE: MOBILE NAV (max 768px) ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-logo-img { height: 36px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: white; flex-direction: column; gap: 0;
    padding: 80px 32px 32px; z-index: 205;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 0; font-size: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 16px; text-align: center;
    display: block !important; padding: 14px 24px !important;
  }
  .nav-overlay {
    display: block;
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 204; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }
}

/* ── RESPONSIVE: MOBILE (max 768px) ── */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-h1 { font-size: clamp(42px, 12vw, 70px); }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-content { padding: 0 5vw 50px; }

  section { padding: 60px 5vw; }

  .projects-grid { grid-template-columns: 1fr 1fr; }
  .proj-card { grid-column: span 1 !important; }
  .proj-card:nth-child(1) .proj-img { min-height: 220px; }
  .proj-name { font-size: 18px !important; }
  .filter-tabs { gap: 6px; }
  .filter-btn { padding: 10px 14px; font-size: 13px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }

  .vac-title { font-size: 18px; }
  .vac-row { padding: 20px 0; }

  .cta-h2 { font-size: clamp(32px, 8vw, 48px); }
  .section-h2 { font-size: clamp(30px, 7vw, 50px); }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* Subpages */
  .page-header { padding: 40px 5vw 32px; }
  .project-detail { padding: 40px 5vw 60px; }
  .project-photos { grid-template-columns: 1fr; max-width: 100%; }
  .project-photo:first-child { grid-column: span 1; }
  .project-info-grid { grid-template-columns: 1fr; gap: 0; }

  .vac-detail { padding: 40px 5vw 60px; }
  .vac-hero-img { height: 180px; }
  .vac-detail-meta { flex-direction: column; gap: 12px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-page { padding: 40px 5vw 60px; }

  .about-hero { height: 260px; }
  .about-hero-title { font-size: clamp(36px, 10vw, 60px); }
  .about-body { padding: 48px 5vw; }
  .about-kracht { padding: 48px 5vw; }
  .about-values-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-stats-bar { padding: 40px 5vw; }
  .about-stats-bar-inner { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .about-stat-big { font-size: 36px; }
  .about-sidebar-quote { font-size: 22px; }

  .apply-hero { height: 280px; }
  .apply-hero-content { padding: 0 5vw 32px; }
  .apply-section { padding: 40px 5vw 60px; }
  .apply-form-card { padding: 24px; }
  .apply-form-row.two-col { grid-template-columns: 1fr; }
  .apply-perks-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .hero-h1 { font-size: 38px; }
  .hero-actions { flex-direction: column; }
  .btn-red, .btn-white { text-align: center; width: 100%; }

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

  .vac-row { flex-direction: column; align-items: flex-start; gap: 8px; }

  .about-stats-bar-inner { grid-template-columns: 1fr; }
}
