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

:root {
  --ink:       #0a1628;   /* donkerblauw — basis */
  --off-white: #f0f4fa;   /* lichtblauw-wit — achtergrond */
  --accent:    #ff5c00;   /* fel oranje — primaire actie */
  --accent2:   #ff5c00;   /* fel oranje — energie, signature pop */
  --mid:       #4a5a72;   /* blauwgrijs — subtekst */
  --border:    #d0d9e8;   /* lichtblauw — borders */
  --card-bg:   #ffffff;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1120px;
  --section-pad: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-pad) 0; }

/* ─── NAV ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border); box-shadow: 0 1px 0 rgba(10,22,40,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: white;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; }

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 24px;
  border: 1px solid rgba(255,92,0,0.5);
  padding: 4px 12px;
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent2);
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #cc4a00;
  transform: translateY(-1px);
}

.hero-stripe {
  position: absolute;
  right: -80px;
  top: 0;
  width: 480px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,92,0,0.12) 100%);
  pointer-events: none;
}

/* ─── INTRO ─────────────────────────────────────────── */
.intro { background: white; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.intro-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  letter-spacing: -0.02em;
}

.intro-text p {
  color: var(--mid);
  margin-bottom: 16px;
  font-weight: 300;
}

.intro-text p:last-child { margin-bottom: 0; }

/* ─── DIENSTEN ──────────────────────────────────────── */
.diensten { background: var(--off-white); }

.section-header { margin-bottom: 56px; }

.section-header.center { text-align: center; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  max-width: 580px;
  line-height: 1.65;
}

.section-header.center .section-intro { margin: 0 auto; }

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dienst-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.dienst-card:hover {
  border-color: var(--accent); box-shadow: 0 4px 16px rgba(255,92,0,0.10);
  transform: translateY(-3px);
}

.dienst-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
}

.dienst-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.dienst-card p {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.55;
}

/* ─── FULL CYCLE ────────────────────────────────────── */
.fullcycle {
  background: var(--ink);
  color: white;
}

.fullcycle-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.fullcycle-text .eyebrow { color: var(--accent2); }

.fullcycle-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.fullcycle-text p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  margin-bottom: 16px;
  line-height: 1.65;
  max-width: 520px;
}

.fullcycle-text p:last-child { margin-bottom: 0; }

.badge-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-ring span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent2);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ─── CONTACT ───────────────────────────────────────── */
.contact { background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.contact-block {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.contact-block h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.55;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .logo { color: white; }

.footer span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .fullcycle-inner { grid-template-columns: 1fr; }
  .fullcycle-badge { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 20px; }
  .hero { padding: 80px 0 72px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── CONTACT FORM ──────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block a {
  color: var(--accent);
  text-decoration: none;
}
.contact-block a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 4px 16px rgba(255,92,0,0.10);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-size: 15px;
}

.form-success,
.form-error {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 15px;
  margin-bottom: 8px;
}

.form-success {
  background: #e6f9f0;
  border: 1px solid #52c98a;
  color: #1a6e42;
}

.form-error {
  background: #fff0f0;
  border: 1px solid #f05555;
  color: #8b1a1a;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .contact-block { min-width: 140px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── TAALWISSEL ────────────────────────────────────── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 10px !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: border-color 0.2s, background 0.2s !important;
}

.lang-switch:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: white;
}
