/* ============================================
   SUPPCO BV — Gedeelde stylesheet
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --glass: #c8dfe8;
  --glass-light: #e8f3f8;
  --glass-dark: #4a7a92;
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --ink-soft: #7a7a7a;
  --white: #fafafa;
  --accent: #8b1a1a;
  --accent-light: #a82020;
  --border: rgba(139,26,26,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(180deg, #fdfeff 0%, #f0f7fa 100%);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250,252,254,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo img { height: 36px; width: auto; display: block; }
.logo svg { display: block; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
  color: var(--ink-muted); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); font-weight: 500; }

/* Taalwissel NL/EN */
.nav-links a.lang-switch {
  border: 1px solid var(--glass);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--glass-dark);
}
.nav-links a.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

.nav-cta {
  background: var(--accent); color: white;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-light); }

/* ---------- HAMBURGER / MOBIEL MENU ---------- */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: all 0.3s ease; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: rgba(250,250,250,0.97); backdrop-filter: blur(12px);
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; color: var(--ink-muted); text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta {
  background: var(--accent); color: white; text-align: center;
  padding: 0.85rem; border-radius: 2px; margin-top: 0.5rem;
  border-bottom: none;
}

/* ---------- ALGEMENE ELEMENTEN ---------- */
.section-tag {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
}
.section-tag.on-dark { color: var(--glass); }
.section-tag.on-dark::before { background: var(--glass); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  margin-bottom: 1.5rem; max-width: 560px; line-height: 1.2;
}
.section-title strong { font-weight: 600; color: var(--accent); }
.section-intro {
  font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8;
  max-width: 620px; margin-bottom: 3rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent); color: white;
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 1px solid var(--accent); color: var(--accent);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--glass-light); transform: translateY(-1px); }

/* ---------- SUBPAGINA HEADER ---------- */
.page-hero {
  padding: 10rem 4rem 4rem;
  background: linear-gradient(180deg, var(--glass-light) 0%, #fbfdfe 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.15;
  max-width: 700px;
}
.page-hero h1 strong { font-weight: 600; color: var(--accent); }
.page-hero p {
  margin-top: 1.2rem; font-size: 1rem; color: var(--ink-muted);
  line-height: 1.8; max-width: 560px;
}

/* ---------- HOME HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 4fr 1fr;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef6fa 100%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 4rem 4rem;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-tag::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.8rem;
}
.hero-title strong { font-weight: 600; color: var(--accent); display: block; }
.hero-sub {
  font-size: 1rem; line-height: 1.7; color: var(--ink-muted);
  max-width: 420px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-label {
  position: absolute; bottom: 0.9rem; left: 1rem;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  white-space: nowrap;
}

/* ---------- FEATURES (donker) ---------- */
.features { padding: 7rem 4rem; background: var(--ink); }
.features .section-title { color: white; margin-bottom: 4rem; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.08);
}
.feature-card { background: var(--ink); padding: 2.5rem 2rem; transition: background 0.3s; }
.feature-card:hover { background: #1a2f40; }
.feature-icon {
  width: 40px; height: 40px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--glass); fill: none; stroke-width: 1.5; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; color: white; margin-bottom: 0.8rem;
}
.feature-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- GALERIJ ---------- */
.gallery {
  padding: 0 4rem 5rem; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.gallery .g-item { overflow: hidden; border-radius: 2px; height: 280px; }
.gallery .g-item.wide { grid-column: span 4; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery img:hover { transform: scale(1.05); }

/* ---------- LUMON SECTIE ---------- */
.lumon {
  padding: 7rem 4rem;
  background: linear-gradient(180deg, #fbfdfe 0%, #eef6fa 50%, #fbfdfe 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.lumon-visual {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 6px; height: 480px; border-radius: 2px; overflow: hidden;
}
.lumon-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.lumon-visual img:hover { transform: scale(1.03); }
.lumon-visual .img-main { grid-row: 1 / 3; height: 100%; }
.lumon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
  line-height: 1.2; margin-bottom: 1.5rem; color: var(--ink);
}
.lumon-title strong { font-weight: 600; color: var(--accent); }
.lumon-desc { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 2rem; }
.lumon-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.lumon-list li {
  font-size: 0.9rem; color: var(--ink-muted);
  display: flex; align-items: center; gap: 0.8rem;
}
.lumon-list li::before {
  content: ''; width: 18px; height: 1px; background: var(--accent); flex-shrink: 0;
}

/* ---------- STATS ---------- */
.stats {
  background: #ffffff;
  padding: 5rem 4rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { text-align: center; padding: 1rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--accent); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- TEASERS (home) ---------- */
.teasers {
  padding: 7rem 4rem;
  background: linear-gradient(180deg, #fbfdfe 0%, var(--glass-light) 100%);
}
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.teaser-card {
  border: 1px solid var(--border); border-left: 5px solid var(--accent); border-radius: 2px;
  padding: 2.2rem 1.8rem; text-decoration: none;
  background: linear-gradient(165deg, #ffffff 0%, #f2f8fb 70%, #e8f3f8 100%);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(139,26,26,0.12); }
.teaser-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--glass-dark); font-weight: 300;
}
.teaser-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--ink);
}
.teaser-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; flex-grow: 1; }
.teaser-link {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}

/* ---------- TAKKEN / DIVISIES ---------- */
.divisions {
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  scroll-margin-top: 70px;
  background: linear-gradient(180deg, #f2f8fb 0%, #fdfeff 100%);
}
/* kleurbaan op de homepagina */
#takken {
  background: linear-gradient(180deg, #f2f8fb 0%, #fdfeff 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
/* accentrand per tak, in de eigen takkleur */
.divisions a.division-card:nth-of-type(1) { border-top: 5px solid #4a7a92; }
.divisions a.division-card:nth-of-type(2) { border-top: 5px solid #5a5a5a; }
.divisions a.division-card:nth-of-type(3) { border-top: 5px solid #37474f; }
.divisions a.division-card:nth-of-type(4) { border-top: 5px solid #3e8a74; }
.divisions-head { grid-column: 1 / -1; margin-bottom: 0.5rem; }
.division-card {
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f2f8fb 70%, #e8f3f8 100%);
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.division-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26,26,26,0.10); }
.division-img { height: 200px; overflow: hidden; }
.division-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.division-card:hover .division-img img { transform: scale(1.04); }
.division-body { padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; flex-grow: 1; }
.division-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 500; color: var(--ink); line-height: 1.15;
}
.division-body h2 strong { font-weight: 600; color: var(--accent); }
.division-body p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; }
.division-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin: 0.3rem 0 0.6rem; flex-grow: 1; }
.division-list li {
  font-size: 0.87rem; color: var(--ink-muted);
  display: flex; align-items: center; gap: 0.7rem;
}
.division-list li::before {
  content: ''; width: 16px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.page-hero-logo { margin-bottom: 1.2rem; animation: fadeUp 0.6s ease both; }
.page-hero-logo svg { display: block; max-width: 100%; height: auto; }
.division-body > svg { display: block; margin: 0.2rem 0 0.3rem -6px; max-width: 100%; height: auto; }
/* bij oneven aantal kaarten: laatste kaart over volle breedte */
.divisions a.division-card:last-of-type:nth-of-type(odd) { grid-column: 1 / -1; }
.divisions a.division-card:last-of-type:nth-of-type(odd) .division-img { height: 240px; }
.division-nav {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.division-nav span { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.teaser-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- WERKZAAMHEDEN ---------- */
.services {
  padding: 5rem 4rem;
  background: linear-gradient(180deg, #fdfeff 0%, #f2f8fb 100%);
}
.services-chapter {
  padding: 2.5rem 0 0.5rem;
  scroll-margin-top: 90px;
}
.services-chapter:first-child { padding-top: 0; }
.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 300; line-height: 1.2;
  margin-bottom: 1rem;
}
.chapter-title strong { font-weight: 600; color: var(--accent); }
.chapter-intro {
  font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8;
  max-width: 640px; padding-bottom: 1rem; border-bottom: 2px solid var(--accent);
}

/* ---------- BOUW BAND (home) ---------- */
.bouw-band {
  padding: 7rem 4rem;
  background: var(--glass-light);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center;
}
.bouw-band-list { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
.bouw-band-list div {
  background: white; border: 1px solid var(--border); border-radius: 2px;
  padding: 0.75rem 1.2rem; font-size: 0.9rem; color: var(--ink-muted);
  display: flex; gap: 0.8rem; align-items: center;
}
.bouw-band-list div::before {
  content: ''; width: 16px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.service-block {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
  padding: 3.5rem 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 500; line-height: 1.25; margin-bottom: 0.8rem;
}
.service-head .service-sub { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.service-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  border-radius: 2px; margin-top: 1.2rem;
  transition: transform 0.4s ease;
}
.service-img:hover { transform: scale(1.02); }
.service-body p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.4rem; }

.work-list { list-style: none; display: flex; flex-direction: column; }
.work-list li {
  display: flex; gap: 1rem; align-items: baseline;
  padding: 0.8rem 0; border-bottom: 1px dashed rgba(26,26,26,0.12);
  font-size: 0.92rem; color: var(--ink-muted); line-height: 1.6;
}
.work-list li:last-child { border-bottom: none; }
.work-list li::before {
  content: '—'; color: var(--accent); flex-shrink: 0;
}
.work-list li strong { color: var(--ink); font-weight: 500; }

.included {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 2px; padding: 2.5rem; margin-top: 4rem;
}
.included h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; margin-bottom: 1.5rem;
}
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 3rem; }
.included-grid div {
  font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7;
  display: flex; gap: 0.7rem; align-items: baseline;
}
.included-grid div::before { content: '✓'; color: var(--accent); font-weight: 600; }

/* ---------- PROJECTEN ---------- */
.projects {
  padding: 5rem 4rem; display: flex; flex-direction: column; gap: 5rem;
  background: linear-gradient(180deg, #fdfeff 0%, #f2f8fb 100%);
}
.project {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
}
.project:nth-child(even) .project-img { order: 2; }
.project-img .pi-main { overflow: hidden; border-radius: 2px; height: 380px; }
.project-img .pi-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease, opacity 0.25s ease;
}
.project-img .pi-main img:hover { transform: scale(1.04); }
.project-thumbs { display: flex; gap: 6px; margin-top: 6px; }
.project-thumbs img {
  flex: 1 1 0; min-width: 0; height: 72px; object-fit: cover; display: block;
  border-radius: 2px; cursor: pointer; opacity: 0.65;
  border: 2px solid transparent; transition: opacity 0.2s, border-color 0.2s;
}
.project-thumbs img:hover { opacity: 1; }
.project-thumbs img.active { opacity: 1; border-color: var(--accent); }
.project-cat {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--glass-dark); margin-bottom: 0.8rem;
}
.project h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 500; margin-bottom: 1rem; line-height: 1.25;
}
.project p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.4rem; }
.project-specs { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.project-specs li {
  font-size: 0.88rem; color: var(--ink-muted);
  display: flex; gap: 0.8rem; align-items: center;
}
.project-specs li::before {
  content: ''; width: 18px; height: 1px; background: var(--accent); flex-shrink: 0;
}

/* ---------- WERKWIJZE ---------- */
.steps { padding: 5rem 4rem; max-width: 900px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 2.5rem;
  position: relative; padding-bottom: 3.5rem;
}
.step:not(:last-child)::before {
  content: ''; position: absolute; left: 44px; top: 90px; bottom: 0;
  width: 1px; background: var(--border);
}
.step-num {
  width: 90px; height: 90px; border: 1px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
  color: var(--accent); background: var(--white); flex-shrink: 0;
}
.step h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 500; margin-bottom: 0.7rem; padding-top: 0.8rem;
}
.step p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; }

/* ---------- FAQ ---------- */
.faq { padding: 5rem 4rem; max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 1.6rem 0; text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .faq-icon {
  font-family: 'DM Sans', sans-serif; font-size: 1.4rem; font-weight: 300;
  color: var(--accent); transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-a p {
  font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8;
  padding: 0 3rem 1.6rem 0;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--ink); padding: 5rem 4rem; text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: white;
  margin-bottom: 1rem;
}
.cta-band h2 strong { font-weight: 600; color: var(--glass); }
.cta-band p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 2rem; }

/* ---------- CONTACT ---------- */
.contact {
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  background: linear-gradient(180deg, #fdfeff 0%, #f2f8fb 100%);
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.contact-desc { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 32px; height: 32px; background: var(--glass-light);
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.contact-detail-text { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.6; }
.contact-detail-text strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 0.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border); background: white; border-radius: 2px;
  padding: 0.75rem 1rem; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--accent); color: white; border: none; cursor: pointer;
  padding: 0.9rem 2rem; border-radius: 2px; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s; align-self: flex-start;
}
.form-submit:hover { background: var(--accent-light); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink); padding: 3.5rem 4rem 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col .footer-logo {
  margin-bottom: 1rem; display: inline-block;
  background: white; padding: 10px 14px 6px; border-radius: 2px;
}
.footer-col .footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer-col p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.8; }
.footer-col h4 {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--glass); margin-bottom: 1rem; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.85rem; color: var(--ink-soft); text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--glass); }
.footer-col ul li { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.footer-text { font-size: 0.8rem; color: var(--ink-soft); }
.footer-partner { font-size: 0.75rem; color: var(--ink-soft); text-align: right; }
.footer-partner strong { color: var(--glass); display: block; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12,12,14,0.93);
  display: none; align-items: center; justify-content: center;
  padding: 2.5rem; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 94vw; max-height: 90vh; object-fit: contain;
  border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.pi-main img, .service-img, .gallery .g-item img { cursor: zoom-in; }

/* ---------- ANIMATIES ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag { animation: fadeUp 0.6s ease both; }
.hero-title { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-btns { animation: fadeUp 0.6s 0.3s ease both; }
.page-hero h1 { animation: fadeUp 0.6s ease both; }
.page-hero p { animation: fadeUp 0.6s 0.15s ease both; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 7rem 1.5rem 2.5rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 260px; order: -1; }
  .hero-left { padding: 2rem 1.5rem 3rem; }
  .hero-title { font-size: 2.4rem; }

  .features { padding: 3rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 0; }
  .feature-card { padding: 1.8rem 1.5rem; }

  .gallery { padding: 0 1.5rem 3rem; grid-template-columns: 1fr 1fr; }
  .gallery .g-item { height: 180px; }
  .gallery .g-item.wide { grid-column: span 2; }

  .lumon { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .lumon-visual { height: 240px; grid-template-columns: 1fr 1fr; }
  .lumon-visual .img-main { grid-row: 1; grid-column: 1 / 3; height: 160px; }

  .stats { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; gap: 0; }
  .stat { padding: 1.5rem 0.5rem; }
  .stat-num { font-size: 2.5rem; }

  .teasers { padding: 3rem 1.5rem; }
  .teaser-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .services { padding: 2.5rem 1.5rem; }
  .bouw-band { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .divisions { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 1rem; }
  .division-img { height: 160px; }
  .teaser-grid-3 { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 1.2rem; padding: 2.5rem 0; }
  .included { padding: 1.8rem 1.5rem; }
  .included-grid { grid-template-columns: 1fr; }

  .projects { padding: 2.5rem 1.5rem; gap: 3rem; }
  .project { grid-template-columns: 1fr; gap: 1.5rem; }
  .project:nth-child(even) .project-img { order: 0; }
  .project-img .pi-main { height: 220px; }
  .project-thumbs img { height: 52px; }

  .steps { padding: 2.5rem 1.5rem; }
  .step { grid-template-columns: 56px 1fr; gap: 1.2rem; padding-bottom: 2.5rem; }
  .step-num { width: 56px; height: 56px; font-size: 1.5rem; }
  .step:not(:last-child)::before { left: 27px; top: 56px; }

  .faq { padding: 2.5rem 1.5rem; }
  .faq-q { font-size: 1.15rem; padding: 1.2rem 0; }

  .cta-band { padding: 3rem 1.5rem; }

  .contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-partner { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.4rem; font-size: 0.8rem; }
  .stat-num { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .lumon-title { font-size: 1.8rem; }
  .contact-title { font-size: 1.8rem; }
  .teaser-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-item.wide { grid-column: span 1; }
}
