/* De Cock Projects — herontwerp 2026 */

:root {
  --accent: #b6793a;
  --accent-dark: #8a5a2b;
  --head: 'Space Grotesk', sans-serif;
  --dark: #1a1c1f;
  --light: #ecebe7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  font-family: 'Barlow', sans-serif;
  color: #22242a;
}
::selection { background: var(--accent); color: #fff; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.page { background: var(--light); overflow-x: hidden; }
.wrap { max-width: 1240px; margin: 0 auto; }

/* ===================== Header ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26, 28, 31, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #303338;
  padding: 0 32px;
}
.site-header .wrap {
  padding: 12px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo-plate {
  display: inline-block;
  background: #5f6062;
  padding: 8px 13px;
  border: 1px solid #717274;
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 1px 2px rgba(0, 0, 0, .4);
}
.logo-plate img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: #c9c7c1; transition: color .2s;
}
.nav-link:hover { color: #e8e6e0; }
.nav-cta {
  font-family: var(--head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #1a1c1f; background: var(--accent);
  padding: 11px 20px; border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark); }
.lang-switch {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--head);
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
}
.lang-switch a {
  display: flex; align-items: center; gap: 10px;
  color: #8a8880; transition: color .2s;
}
.lang-switch a svg {
  display: block; border-radius: 2px;
  outline: 1px solid rgba(255, 255, 255, .18); outline-offset: -1px;
  opacity: .55; transition: opacity .2s;
}
.lang-switch a:hover, .lang-switch a.active { color: #e8e6e0; }
.lang-switch a:hover svg, .lang-switch a.active svg { opacity: 1; }

/* Mobiel: taalkeuze als uitklapmenu (desktop toont .lang-switch) */
.lang-dropdown { display: none; position: relative; }
.lang-dropdown summary {
  list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--head);
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  color: #e8e6e0; cursor: pointer;
  padding: 8px 10px;
  border: 1px solid #45484d; border-radius: 2px;
  user-select: none; -webkit-user-select: none;
}
.lang-dropdown summary::-webkit-details-marker { display: none; }
.lang-dropdown summary .flag,
.lang-menu .flag {
  display: block; border-radius: 2px;
  outline: 1px solid rgba(255, 255, 255, .18); outline-offset: -1px;
}
.lang-dropdown summary .chev { transition: transform .15s; }
.lang-dropdown[open] summary .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 60;
  min-width: 100px;
  background: #232529;
  border: 1px solid #3a3d42; border-radius: 3px;
  padding: 6px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .5);
}
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 2px;
  font-family: var(--head);
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  color: #c9c7c1;
}
.lang-menu a:hover { background: #2c2f34; color: #e8e6e0; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  background: var(--dark); color: #eceae4;
  padding: 84px 32px 96px;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(182, 121, 58, .16), transparent 55%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.bars span { width: 4px; background: #6a6c70; }
.bars span.on { background: var(--accent); }
.eyebrow-label {
  font-family: var(--head);
  font-size: 13px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: #a9a7a1;
}
.hero h1 {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06; letter-spacing: -.015em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  font-size: 19px; line-height: 1.6; color: #b8b6b0;
  max-width: 520px; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.btn {
  font-family: var(--head);
  font-size: 15px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 2px;
  display: inline-block;
}
.btn-primary {
  color: #1a1c1f; background: var(--accent);
  transition: transform .2s, background .2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  color: #eceae4; background: transparent;
  border: 1px solid #45484d;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: #6a6c70; background: #232529; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid #303338; padding-top: 26px;
}
.stat-value {
  font-family: var(--head);
  font-size: 26px; font-weight: 600; color: #eceae4;
}
.stat-label {
  font-size: 13px; letter-spacing: .06em; color: #8a8880;
  text-transform: uppercase; margin-top: 2px;
}
.hero-photo { position: relative; }
.hero-photo-frame {
  position: relative;
  border: 1px solid #33363b; border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}
.hero-photo-frame img { width: 100%; height: 520px; object-fit: cover; }
.photo-caption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(20, 22, 25, .92), transparent);
  display: flex; align-items: center; gap: 12px;
}
.photo-caption .dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--accent); border-radius: 50%;
}
.photo-caption span:last-child {
  font-family: var(--head);
  font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: #d7d5cf;
}
.hero-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(95, 96, 98, .94);
  border: 1px solid #717274; border-radius: 2px;
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
  font-family: var(--head);
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #eceae4;
}

/* ===================== Sectie-koppen ===================== */
.section { padding: 96px 32px; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: #eceae4; }
.kicker {
  font-family: var(--head);
  font-size: 13px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-light .kicker { color: var(--accent-dark); }
.section-dark .kicker { color: var(--accent); }
.section-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05; letter-spacing: -.01em;
}
.section-light .section-title { color: #22242a; }

/* ===================== Diensten ===================== */
.diensten-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 52px;
}
.diensten-head .section-title { max-width: 560px; }
.diensten-intro {
  font-size: 16px; line-height: 1.6; color: #5f5e58;
  max-width: 360px; font-weight: 300;
}
.diensten-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: #d8d6d0;
  border: 1px solid #d8d6d0; border-radius: 3px;
  overflow: hidden;
}
.dienst {
  background: #f5f4f0;
  padding: 34px 28px 38px;
  transition: background .25s;
}
.dienst:hover { background: #fbfaf7; }
.dienst-nr {
  font-family: var(--head);
  font-size: 15px; font-weight: 600;
  color: var(--accent); letter-spacing: .1em;
  margin-bottom: 22px;
}
.dienst h3 {
  font-family: var(--head);
  font-weight: 600; font-size: 23px;
  color: #22242a; margin-bottom: 12px; letter-spacing: .01em;
}
.dienst p { font-size: 15px; line-height: 1.6; color: #5f5e58; font-weight: 300; }

/* ===================== Ons werk ===================== */
.werk-head { text-align: center; margin-bottom: 44px; }
.werk-head .section-title { font-size: clamp(30px, 3.8vw, 48px); }
.werk-feature {
  position: relative;
  border: 1px solid #33363b; border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .7);
}
.werk-feature img {
  width: 100%; height: min(56vw, 540px);
  object-fit: cover; object-position: center 88%;
}
.werk-feature .photo-caption { padding: 24px 26px; }
.werk-feature .photo-caption span:last-child { font-size: 14px; color: #e6e4de; }
.werk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 20px;
}
.werk-grid figure {
  border: 1px solid #33363b; border-radius: 4px;
  overflow: hidden;
}
.werk-grid img { width: 100%; height: 220px; object-fit: cover; }
.werk-grid figcaption {
  padding: 15px 18px; background: #202226;
  font-family: var(--head);
  font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: #a9a7a1;
}
.werk-note {
  text-align: center; font-size: 16px; color: #8a8880;
  margin: 26px auto 0; font-weight: 300; max-width: 640px;
}

/* ===================== Aanpak ===================== */
.aanpak-head { margin-bottom: 52px; max-width: 600px; }
.aanpak-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stap {
  background: #fff; border: 1px solid #e0ded8;
  border-radius: 4px; overflow: hidden;
}
.stap > img { width: 100%; height: 180px; object-fit: cover; }
.stap-body { padding: 22px 22px 26px; }
.stap-nr {
  font-family: var(--head);
  font-size: 14px; font-weight: 600;
  color: var(--accent); letter-spacing: .14em;
  margin-bottom: 10px;
}
.stap h3 {
  font-family: var(--head);
  font-weight: 600; font-size: 20px;
  color: #22242a; margin-bottom: 8px;
}
.stap p { font-size: 14px; line-height: 1.55; color: #5f5e58; font-weight: 300; }

/* ===================== Divider ===================== */
.divider {
  position: relative; height: 280px;
  overflow: hidden; background: var(--dark);
}
.divider > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 88%; opacity: .5;
}
.divider-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20, 22, 25, .86), rgba(20, 22, 25, .35));
}
.divider .wrap {
  position: relative; height: 100%;
  display: flex; align-items: center;
  padding: 0 32px;
}
.divider .bars { margin-bottom: 18px; }
.divider .bars span { width: 5px; background: #8a8880; }
.divider .bars span.on { background: var(--accent); }
.divider-quote {
  font-family: var(--head);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  color: #eceae4; line-height: 1.15;
  max-width: 640px; letter-spacing: -.01em;
}

/* ===================== Contact ===================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.contact-info .section-title { margin-bottom: 22px; }
.contact-intro {
  font-size: 17px; line-height: 1.6; color: #5f5e58;
  font-weight: 300; margin-bottom: 38px; max-width: 440px;
}
.contact-rows { display: flex; flex-direction: column; gap: 2px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-top: 1px solid #d8d6d0;
  transition: color .2s;
}
.contact-rows > :last-child { border-bottom: 1px solid #d8d6d0; }
a.contact-row:hover .contact-row-value { color: var(--accent-dark); }
.contact-row-label {
  font-family: var(--head);
  font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: #8a8880;
  width: 76px; flex-shrink: 0;
}
.contact-row-value {
  font-family: var(--head);
  font-size: 22px; font-weight: 600; color: #22242a;
  transition: color .2s;
}
.offerte-card {
  background: var(--dark); border-radius: 4px; padding: 40px;
}
.offerte-card h3 {
  font-family: var(--head);
  font-weight: 600; font-size: 22px;
  color: #eceae4; margin-bottom: 24px;
}
.offerte-form { display: flex; flex-direction: column; gap: 16px; }
.offerte-form input,
.offerte-form textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; color: #eceae4;
  background: #232529;
  border: 1px solid #3a3d42; border-radius: 2px;
  padding: 14px 16px; outline: none;
  width: 100%;
}
.offerte-form input::placeholder,
.offerte-form textarea::placeholder { color: #8a8880; }
.offerte-form input:focus,
.offerte-form textarea:focus { border-color: var(--accent); }
.offerte-form textarea { resize: vertical; }
.offerte-form button {
  font-family: var(--head);
  font-size: 15px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: #1a1c1f; background: var(--accent);
  border: none; border-radius: 2px;
  padding: 15px; cursor: pointer;
  transition: background .2s;
}
.offerte-form button:hover { background: var(--accent-dark); }
.offerte-note {
  font-size: 13px; color: #6f6e69;
  margin-top: 16px; line-height: 1.5;
}
.offerte-note strong { color: #b8b6b0; font-weight: 400; }

/* ===================== Footer ===================== */
.site-footer { background: #141619; padding: 56px 32px 40px; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer-logo-plate {
  display: inline-block;
  background: #5f6062;
  padding: 14px 18px;
  border: 1px solid #717274; border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.footer-logo-plate img { height: 96px; width: auto; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col-title {
  font-family: var(--head);
  font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: #6f6e69;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-links span { font-size: 15px; color: #b8b6b0; transition: color .2s; }
.footer-links a:hover { color: #eceae4; }
.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid #262a2e;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: 13px; color: #5c5b57; }

/* ===================== Verstuurd-pagina ===================== */
.verstuurd {
  min-height: calc(100vh - 63px);
  background: var(--dark); color: #eceae4;
  display: flex; align-items: center; justify-content: center;
  padding: 96px 32px; text-align: center;
}
.verstuurd-inner { max-width: 520px; }
.verstuurd-check {
  width: 64px; height: 64px; margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--accent); color: #1a1c1f;
  display: flex; align-items: center; justify-content: center;
}
.verstuurd h1 {
  font-family: var(--head);
  font-weight: 700; font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.01em; margin-bottom: 16px;
}
.verstuurd p {
  font-size: 17px; line-height: 1.6; color: #b8b6b0;
  font-weight: 300; margin-bottom: 36px;
}

/* ===================== Responsief ===================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo-frame img { height: 420px; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .aanpak-grid { grid-template-columns: repeat(2, 1fr); }
  .werk-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 0 20px; }
  .site-header .wrap { gap: 12px; }
  .site-header .wrap > a:first-child { flex-shrink: 0; }
  .site-nav { gap: 12px; }
  .site-nav .nav-link { display: none; }
  .lang-switch { display: none; }
  .lang-dropdown { display: block; }
  .logo-plate { padding: 7px 11px; }
  .logo-plate img { height: 30px; }
  .nav-cta { padding: 9px 12px; font-size: 12px; letter-spacing: .06em; }
  .section, .hero { padding-left: 20px; padding-right: 20px; }
  .werk-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .site-header { padding: 0 14px; }
  .site-header .wrap { gap: 10px; }
  .site-nav { gap: 8px; }
  .logo-plate { padding: 6px 9px; }
  .logo-plate img { height: 26px; }
  .nav-cta { padding: 8px 10px; font-size: 11px; }
  .lang-dropdown summary { padding: 7px 8px; gap: 6px; }
}

@media (max-width: 560px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .aanpak-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; padding-bottom: 64px; }
  .hero-photo-frame img { height: 320px; }
  .hero-stats { gap: 24px; }
  .offerte-card { padding: 28px 22px; }
  .contact-row-value { font-size: 18px; }
  .divider .wrap { padding: 0 20px; }
}
