/* ============================================================
   Ionut Barbershop — Main CSS
   Design: Dark charcoal + gold accent, Oswald headings
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --bg-light:     #111111;
  --bg-card:      #161616;
  --gold:         #c9a96e;
  --gold-light:   #d4b87a;
  --white:        #ffffff;
  --off-white:    #ede8df;
  --muted:        #888888;
  --border:       rgba(201,169,110,0.18);
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;
  --nav-h:        72px;
  --ease-out:     cubic-bezier(0.23,1,0.32,1);
  /* Noise texture as SVG data-URI */
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--white);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: #DB0D0D;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(219,13,13,0.3);
}
.btn-primary:hover {
  background: #b50b0b;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 6px 20px rgba(219,13,13,0.45);
}

/* Hero dividers (3 gold lines) */
.hero-dividers {
  display: flex;
  gap: 6px;
  margin-top: 1.5rem;
}
.hero-dividers span {
  display: block;
  height: 2px;
  background: var(--gold);
}
.hero-dividers span:nth-child(1) { width: 40px; }
.hero-dividers span:nth-child(2) { width: 24px; }
.hero-dividers span:nth-child(3) { width: 12px; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); }

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold); color: #0a0a0a; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: auto;
}
.nav-menu li {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-menu li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201,169,110,0.45);
  margin: 0 2px;
  flex-shrink: 0;
}
.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color 200ms;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 200ms var(--ease-out);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after { transform: scaleX(1); }
.nav-menu a.current-menu-item { color: var(--white); }

.nav-cta { margin-left: 1.5rem; }

/* ── Mobile nav ───────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 250ms var(--ease-out);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 200ms;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-sub {
  min-height: 60vh;
}
@media (max-width: 768px) {
  .hero { min-height: 60vh; }
}

.hero-kenburns {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  animation: kenburns 12s ease-in-out infinite alternate;
}
/* Slideshow: only hide/show when multiple slides exist */
.hero-kenburns.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation-play-state: paused;
}
.hero-kenburns.hero-slide.active {
  opacity: 1;
  animation-play-state: running;
  animation: kenburns 12s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1)    translate(0,    0); }
  to   { transform: scale(1.20) translate(-2%, -1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.05) 100%
  );
}
/* Subpagina hero's: 10% donkerder overlay */
.hero-sub .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.35) 65%,
    rgba(0,0,0,0.15) 100%
  );
}
/* Vignette on hero edges — removed to keep image brighter */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 0.5rem);
  padding-bottom: 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.52rem, 7.2vw, 5.76rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub .hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.hero-subtitle-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-icon {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.8;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  cursor: default;
}
.scroll-label {
  opacity: 0.8;
  transition: opacity 300ms;
}
.scroll-indicator:hover .scroll-label {
  opacity: 1;
}
.scroll-chevron {
  color: rgba(255,255,255,0.85);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color 300ms;
}
.scroll-indicator:hover .scroll-chevron {
  color: #ffffff;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.75; }
  40%       { transform: translateY(6px); opacity: 1; }
  65%       { transform: translateY(3px); opacity: 0.9; }
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section-alt {
  background: var(--bg-light);
  position: relative;
}
/* Subtle diagonal scratch lines on alt sections */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.section-alt > .container { position: relative; z-index: 1; }

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.gold-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.3));
  margin-bottom: 2rem;
  position: relative;
}
.gold-line::after {
  content: '';
  position: absolute;
  left: 44px;
  top: 0;
  width: 12px;
  height: 2px;
  background: rgba(201,169,110,0.25);
}

/* ── Two-column layout ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.col-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.col-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #111;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

.col-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ── Reviews section ──────────────────────────────────────── */
.reviews-section {
  background: var(--bg-light);
  padding: 5rem 0;
}
.reviews-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.reviews-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}

/* ── Tarieven ─────────────────────────────────────────────── */
.tarieven-list {
  max-width: 800px;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.tarief-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid transparent;
}
.tarief-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.tarief-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.tarief-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.tarief-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

/* ── Team slider ──────────────────────────────────────────── */
.team-slider-outer {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.team-slider {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  display: flex;
  gap: 1.5rem;
  transition: transform 400ms var(--ease-out);
}
.team-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 300ms;
}
.team-card:hover { border-color: var(--gold); }
.team-card-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 500ms var(--ease-out);
  aspect-ratio: unset;
}
.team-card:hover .team-card-img { transform: scale(1.03); }
.team-card-placeholder {
  width: 100%;
  height: 340px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--muted);
}
.team-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.team-card-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.team-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.team-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
.team-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.team-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-section {
  background: #0d0d0d;
  padding-top: 7rem;
  padding-bottom: 0;
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  grid-template-rows: 340px 440px;
  gap: 3px;
  width: 100%;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: #111;
  cursor: pointer;
}
/* Item 1: tall left column spanning 2 rows */
.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
}
/* Item 2: small top of col 2 */
.gallery-item:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}
/* Item 3: small top of col 3 */
.gallery-item:nth-child(3) {
  grid-row: 1;
  grid-column: 3;
}
/* Item 4: tall bottom of col 2 */
.gallery-item:nth-child(4) {
  grid-row: 2;
  grid-column: 2;
}
/* Item 5: tall bottom of col 3 */
.gallery-item:nth-child(5) {
  grid-row: 2;
  grid-column: 3;
}
/* Item 6: hidden on desktop */
.gallery-item:nth-child(6) {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}
/* Subtle dark overlay always present */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 400ms ease, box-shadow 400ms ease;
  pointer-events: none;
}
/* Gold border + deeper zoom on hover */
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover::after {
  background: rgba(0,0,0,0.0);
  box-shadow: inset 0 0 0 3px var(--gold);
}

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 7rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgba(201,169,110,0.025) 5px,
      rgba(201,169,110,0.025) 6px
    );
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section .section-title { margin-bottom: 1rem; }
.cta-section p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  color: var(--off-white);
  font-size: 0.95rem;
}
.contact-info-value a { color: var(--off-white); transition: color 200ms; }
.contact-info-value a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table td {
  padding: 0.85rem 0;
  font-size: 0.9rem;
  color: var(--off-white);
}
.hours-table td:last-child { text-align: right; color: var(--muted); }
.hours-table tr.closed td { color: var(--muted); opacity: 0.5; }

.map-embed {
  margin-top: 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  filter: grayscale(0.3) contrast(1.1);
}

/* ── Vacature page ────────────────────────────────────────── */
.vacature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.solliciteer-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.solliciteer-box .section-eyebrow { justify-content: center; }
.solliciteer-box h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0.75rem;
}
.solliciteer-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ── Over Ons team grid ───────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-grid-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.team-grid-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-grid-card-body {
  padding: 1.5rem;
}
.team-grid-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}
.team-grid-card-role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.25rem 0 1rem;
}
.team-grid-card-bio {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Boek page steps ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo-text span { color: var(--gold); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 200ms;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 200ms;
}
.footer-links a:hover { color: var(--white); }

.footer-flexx {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.75;
  transition: opacity 250ms;
  text-decoration: none;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.footer-flexx:hover { opacity: 1; }
.footer-flexx-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.footer-flexx-logo {
  height: 22px;
  width: auto;
  display: block;
}

.footer-contact-item {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.footer-contact-item a { color: var(--muted); transition: color 200ms; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-award {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── Animations ───────────────────────────────────────────── */
.fade-in, .slide-left, .slide-right {
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.slide-left  { transform: translateX(-40px); }
.slide-right { transform: translateX(40px); }
.fade-in     { transform: translateY(24px); }

.fade-in.visible, .slide-left.visible, .slide-right.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .slide-left, .slide-right { transition: none; opacity: 1; transform: none; }
  .hero-kenburns { animation: none; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 0; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 1rem; }
  .contact-grid, .vacature-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-item { height: 260px; }
  .team-card { flex: 0 0 calc(100% - 0); }
  .team-card-img,
  .team-card-placeholder { height: 280px !important; aspect-ratio: unset !important; }
  .two-col .col-img img { height: 320px; }
  .hero-content { padding-top: calc(var(--nav-h) + 4rem) !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 3rem; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 0.75rem 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Boek page layout ─────────────────────────────────────── */
.boek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.boek-steps-block { }
.boek-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--off-white);
  line-height: 1.6;
}
.boek-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.boek-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.boek-step:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.boek-step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.boek-step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.boek-step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.boek-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.boek-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.boek-info-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.boek-info-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.boek-info-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.boek-info-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.boek-info-text a { color: var(--muted); transition: color 200ms; }
.boek-info-text a:hover { color: var(--gold); }

/* ── Vacature col ─────────────────────────────────────────── */
.vacature-col { }

/* ── Map height fix on contact page ──────────────────────── */
.map-embed iframe { height: 450px; }

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 768px) {
  .boek-grid { grid-template-columns: 1fr; gap: 3rem; }
}


/* ── Certificaten Page ────────────────────────────────────── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.cert-img-wrap {
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4/3;
}
.cert-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.cert-info {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cert-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cert-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Erkend Leerbedrijf section ───────────────────────────── */
.leerbedrijf-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.leerbedrijf-badge {
  flex-shrink: 0;
}
.leerbedrijf-badge img {
  width: 220px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ── Footer SBB badge ─────────────────────────────────────── */
.footer-sbb {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-sbb img {
  width: 80px;
  height: auto;
  border-radius: 3px;
  opacity: 0.9;
  transition: opacity 200ms;
}

.footer-sbb-label {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Responsive: Certificaten ─────────────────────────────── */
@media (max-width: 768px) {
  .certs-grid { grid-template-columns: 1fr; }
  .leerbedrijf-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .leerbedrijf-badge { display: flex; justify-content: center; }
  .leerbedrijf-badge img { width: 160px; }
}

/* ── Nav Dropdown (sub-menu) ──────────────────────────────── */
.nav-menu .menu-item-has-children {
  position: relative;
}
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;
  padding: 8px 0 0.5rem 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu {
  display: block;
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 150ms, background 150ms;
  white-space: nowrap;
}
.nav-menu .sub-menu li a:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.07);
}

/* ── Mobile nav: Certificaten link ───────────────────────── */
.mobile-nav .mobile-sub-link {
  padding-left: 2.5rem;
  font-size: 1.2rem;
  opacity: 0.7;
  position: relative;
}
.mobile-nav .mobile-sub-link::before {
  content: '↳';
  position: absolute;
  left: 0.75rem;
  color: var(--gold);
  font-size: 1rem;
}

/* ── Gallery Lightbox ─────────────────────────────────── */
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 250ms var(--ease-out);
}
.gallery-zoom-icon {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 300;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.45);
}
.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transition: opacity 200ms var(--ease-out);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 150ms;
  z-index: 1;
}
.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
  z-index: 1;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}
.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.2;
  cursor: default;
}
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev,
  .lightbox-next { font-size: 1.8rem; padding: 0.4rem 0.7rem; }
}
