:root {
  --navy: #0B1628;
  --navy-mid: #122040;
  --navy-light: #1A2E55;
  --gold: #BFA882;
  --gold-light: #D4BFA0;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --text: #E8E4D8;
  --muted: #8A9BB8;
  --border: rgba(201,168,76,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* NAV */
.ft-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(to bottom,
    rgba(11,22,40,1) 0%,
    rgba(11,22,40,0.95) 30%,
    rgba(11,22,40,0.6) 60%,
    rgba(11,22,40,0.1) 85%,
    transparent 100%);
  transition: all 0.3s;
  border: none;
  pointer-events: none;
}

.ft-nav > * {
  pointer-events: auto;
}

.nav-logo img { height: 100px; width: auto; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  padding: 6px 4px;
  display: inline-block;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  border: none;
  color: var(--navy);
  padding: 11px 24px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(191,168,130,0.3);
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(26,46,85,0.85) 0%, transparent 70%),
    var(--navy);
}

.hero-img {
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 600px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

h1 em { font-style: italic; color: var(--gold); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

h2 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 60px; right: 60px;
  display: flex;
  gap: 44px;
  z-index: 1;
}

.stat-item {
  text-align: right;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
}

.stat-label {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-ghost {
  color: var(--text);
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* GOLD LINE */
.gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.25;
}

/* INTRO STRIP */
.intro-strip {
  padding: 44px 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--navy-mid);
}

.intro-strip-item { display: flex; align-items: center; gap: 14px; flex: 1; }

.intro-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.intro-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.intro-text span { font-size: 12.5px; color: var(--muted); }

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

section { padding: 90px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* PAGE HERO SMALL */
.page-hero-small {
  padding: 140px 60px 80px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.page-hero-small::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.4;
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* DIENSTEN GRID */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.dienst-card {
  background: var(--navy);
  transition: background 0.3s;
  overflow: hidden;
}

.dienst-card:hover { background: var(--navy-mid); }

.dienst-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.dienst-card:hover .dienst-card-img { transform: scale(1.03); }

.dienst-card-body {
  padding: 28px 28px 36px;
}

.dienst-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.dienst-card:hover .dienst-num { color: rgba(201,168,76,0.25); }
.dienst-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.dienst-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* DIENSTEN PREVIEW */
.diensten-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
  overflow: hidden;
}

.dienst-preview-card {
  background: var(--navy);
  padding: 28px 24px;
  text-decoration: none;
  transition: background 0.2s;
  display: block;
}

.dienst-preview-card:hover { background: var(--navy-mid); }
.dienst-preview-card .dienst-num { font-size: 36px; margin-bottom: 12px; }
.dienst-preview-card .dienst-title { font-size: 14px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--navy-light);
}

.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* OVER ONS */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over-img-wrap { position: relative; }

.over-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.over-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.over-text p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}

.over-text p strong { color: var(--text); }

.over-founders {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.founder { display: flex; align-items: center; gap: 12px; }

.founder-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--gold);
}

.founder-info strong { display: block; font-size: 14px; color: var(--white); }
.founder-info span { font-size: 12px; color: var(--muted); }

/* WERKWIJZE */
.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.step {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--gold);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.step-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* CTA BANNER */
.cta-banner {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { margin-bottom: 10px; }
.cta-text p { color: var(--muted); font-size: 14px; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child { border-top: 1px solid var(--border); }

.contact-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-detail a, .contact-detail span {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--gold); }

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.ft-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo img { height: 40px; width: auto; }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::after { width: 100%; }

.footer-social { display: flex; gap: 20px; }

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(191,168,130,0.06);
  box-shadow: 0 0 12px rgba(191,168,130,0.2);
}

.footer-social { display: flex; gap: 12px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 60px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .ft-nav { padding: 16px 24px 40px; pointer-events: auto; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11,22,40,0.98); padding: 120px 40px 40px; gap: 8px; z-index: 99; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 22px; font-weight: 600; padding: 16px 0; text-align: left; color: white; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; z-index: 101; position: relative; pointer-events: auto; }
  .nav-logo img { height: 60px; }

  .hero { padding: 100px 24px 60px; }
  .hero-img { width: 100%; opacity: 0.12; }
  .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 40px; justify-content: flex-start; gap: 28px; }

  .intro-strip { padding: 0 24px; flex-direction: column; gap: 0; }
  .intro-strip-item { padding: 18px 0; border-bottom: 1px solid var(--border); width: 100%; display: flex; align-items: center; gap: 16px; }
  .intro-strip-item:last-child { border-bottom: none; }
  .intro-icon { flex-shrink: 0; }
  .intro-text { flex: 1; }
  .intro-text strong { font-size: 14px; }
  .intro-text span { font-size: 13px; white-space: normal; }
  .section-inner { padding: 0 24px; }
  section { padding: 60px 0; }
  .page-hero-small { padding: 100px 0 60px; }
  .page-hero-inner { padding: 0 24px; }

  .diensten-preview-grid { grid-template-columns: 1fr 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; gap: 40px; }
  .werkwijze-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-item { height: 180px; }
  .section-fixjejob .section-inner > div { grid-template-columns: 1fr !important; gap: 40px !important; }
  .cta-banner { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

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

/* BEL ICOON */
.bel-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(191,168,130,0.4);
  z-index: 9990;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: bel-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
}

@keyframes bel-in {
  to { transform: translateY(0); opacity: 1; }
}

.bel-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(191,168,130,0.5); }
.bel-btn:active { transform: scale(0.96); }

.bel-btn svg { width: 26px; height: 26px; fill: var(--navy); }

.bel-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.bel-btn:hover .bel-tooltip { opacity: 1; }

/* DIENSTEN FOTO GRID */
.diensten-foto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.dienst-foto-card {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.dienst-foto-card:hover { transform: scale(1.02); }
.dienst-foto-card:hover .dienst-foto-overlay { opacity: 0.5; }
.dienst-foto-card:hover .dienst-foto-num { color: var(--gold); }

.dienst-foto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.92) 0%, rgba(11,22,40,0.3) 60%, transparent 100%);
  transition: opacity 0.3s;
}

.dienst-foto-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dienst-foto-num {
  display: none;
}

.dienst-foto-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .diensten-foto-grid { grid-template-columns: repeat(2, 1fr); }
  .dienst-foto-card { height: 180px; }
}

/* DIENSTEN GRID NIEUW */
.diensten-grid-nieuw {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.dienst-leeg {
  background: var(--navy) !important;
  cursor: default !important;
  pointer-events: none;
}

.dienst-card-nieuw {
  background: var(--navy);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
}

.dienst-card-nieuw:hover { background: var(--navy-mid); }

.dienst-card-nieuw .dienst-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.dienst-card-nieuw:hover .dienst-card-img { transform: scale(1.03); }

.dienst-card-nieuw .dienst-card-body {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dienst-card-nieuw .dienst-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0;
  margin-right: 12px;
  flex-shrink: 0;
}

.dienst-card-nieuw .dienst-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.dienst-arrow {
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.dienst-card-nieuw.open .dienst-arrow { transform: rotate(45deg); }

.dienst-uitklap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dienst-uitklap p {
  padding: 0 28px 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .diensten-grid-nieuw { grid-template-columns: 1fr; }
  .dienst-center-1, .dienst-center-2 { grid-column: auto; }
  .dienst-card-nieuw .dienst-card-img { height: 160px; }
}

/* FIXJEJOB SECTIE */
.fixjejob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fixjejob-right {
  text-align: center;
}

.fixjejob-logo-img {
  max-width: 280px;
  width: 100%;
  border-radius: 4px;
}

.fixjejob-checks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.fixjejob-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.fixjejob-check span {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .fixjejob-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fixjejob-right {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
  }
  .fixjejob-logo-img {
    max-width: 100px;
    flex-shrink: 0;
  }
  .fixjejob-checks {
    margin-top: 0;
    gap: 10px;
  }
  .fixjejob-check {
    font-size: 13px;
  }
  .section-fixjejob {
    padding: 48px 0 !important;
  }
}


/* === Fast Tuinwerken: algemene voorwaarden pagina === */
.section-legal-page {
  background: var(--navy);
  min-height: 70vh;
  padding: 170px 20px 80px;
}

.legal-page-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
  color: var(--text);
  line-height: 1.8;
}

.legal-page-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 42px;
  text-align: left;
}

.legal-page-inner h2 {
  color: var(--gold-light);
  font-size: 24px;
  line-height: 1.3;
  margin: 42px 0 16px;
}

.legal-page-inner p,
.legal-page-inner li {
  color: var(--text);
  font-size: 16px;
}

.legal-page-inner p {
  margin: 0 0 18px;
}

.legal-page-inner ol,
.legal-page-inner ul {
  margin: 0 0 22px 24px;
  padding-left: 18px;
}

.legal-page-inner li {
  margin-bottom: 10px;
}

.legal-page-inner strong {
  color: var(--white);
  font-weight: 600;
}

/* Verberg busfoto alleen op desktop/laptop. Mobiel blijft 6 foto's. */
@media (min-width: 992px) {
  .section-gallery .gallery-grid .gallery-item:nth-child(6) {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .section-legal-page {
    padding: 135px 18px 60px;
  }

  .legal-page-inner h1 {
    font-size: 42px;
  }

  .legal-page-inner h2 {
    font-size: 21px;
  }
}
