:root {
  --gold: #ffb700;
  --gold-dark: #e5a500;
  --dark: #1a1a1a;
  --gray: #4a4a4a;
  --light: #f7f7f7;
  --white: #ffffff;
  --max: 1200px;
  --header-h: 72px;
  --font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: var(--font-family);
  --font-heading: var(--font-family);
  --form-radius-panel: 12px;
  --form-radius-field: 8px;
  --form-radius-btn: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header – zie assets/css/header.css */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 75vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.45)
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero .lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 1.75rem;
  font-weight: 500;
}

.hero-sm {
  min-height: clamp(320px, 62vh, 480px);
}

/* Sections */
section {
  padding: 4rem 0;
}

section.alt {
  background: var(--light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item.open button::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--gray);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Projects */
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.project:nth-child(even) {
  direction: rtl;
}

.project:nth-child(even) > * {
  direction: ltr;
}

.project img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #ddd;
}

.project h3 {
  font-family: var(--font-heading);
  margin: 0 0 1rem;
}

/* Service blocks */
.service-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eee;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 8px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
}

.form-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--light);
  padding: 2rem;
  border-radius: var(--form-radius-panel);
}

.form-panel {
  border-radius: var(--form-radius-panel);
}

.form-panel input,
.form-panel textarea,
.form-box input,
.form-box textarea {
  border-radius: var(--form-radius-field);
}

.form-panel .btn-submit,
.form-box .btn-primary {
  border-radius: var(--form-radius-btn);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--form-radius-field);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.form-feedback--success {
  color: #0d3d1f;
  background: #d4edda;
  border: 1px solid #28a745;
}

.form-feedback--error {
  color: #5c1a1a;
  background: #f8d7da;
  border: 1px solid #dc3545;
}

.form-panel .btn-submit:disabled,
.form-box .btn-primary:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Legal */
.legal h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.legal p,
.legal li {
  color: var(--gray);
}

/* Extra H1-tekst voor SEO (Plerdy 10–70 tekens) — alleen op pagina’s met korte titel; niet zichtbaar */
.h1-seo-extra {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 1px !important;
  line-height: 1 !important;
  color: transparent !important;
  text-shadow: none !important;
}

/* SEO-inhoud: visueel verborgen, wel in HTML voor crawlers */
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.seo-only h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.seo-only p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Footer – site-wide (zelfde als home) */
.site-footer {
  background: #000000;
  border-top: 1px solid #c4a052;
  padding: 3rem 0 1.5rem;
  color: #cccccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}

.site-footer p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #d4b56a;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.logo-img-footer {
  height: clamp(64px, 10vw, 88px);
  width: auto;
  max-width: min(100%, 340px);
  object-fit: contain;
  object-position: left center;
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #666666;
}

.footer-bottom a {
  color: #888888;
}

.footer-bottom a:hover {
  color: #d4b56a;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA band */
.cta-band {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem;
}

.cta-band h2 {
  font-family: var(--font-heading);
  margin: 0 0 1rem;
}

.cta-band .contact-line {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.cta-band a {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 2 * clamp(0.7rem, 3.2vw, 1rem), var(--max));
  }

  .page-home .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero .container {
    padding: 1.25rem clamp(0.65rem, 3vw, 0.85rem);
  }

  section {
    padding: clamp(2rem, 5.5vw, 2.5rem) 0;
  }

  .hero h1,
  .hero .lead {
    text-align: center;
    margin-inline: auto;
  }

  .project {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project:nth-child(even) {
    direction: ltr;
  }

  .project h3,
  .project p {
    text-align: center;
  }

  section {
    padding: clamp(2.5rem, 8vw, 3rem) 0;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: min(100%, 400px);
    margin-inline: auto;
  }

  .card {
    text-align: center;
  }

  .form-box {
    padding: clamp(1.25rem, 4vw, 1.75rem) clamp(1rem, 3.5vw, 1.25rem);
  }

  .faq-item button {
    font-size: clamp(0.9rem, 3.8vw, 1.05rem);
  }
}
