/* ============================================================
   Blasters — Non-Ferro Natstralen
   3 stijlvarianten via body[data-style]:
     - modern     : strak, witruimte, foto-gericht
     - industrial : donker, metaal, robuust
     - warm       : ambacht, warme tinten, papier-textuur
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #2D4456;
  --navy-deep: #1f3140;
  --accent: #D69134;
  --accent-deep: #b8782a;
  --ink: #1a2530;
  --muted: #5a6b78;
  --line: #e5e9ec;
  --bg: #ffffff;
  --bg-soft: #f6f4ef;
  --bg-elev: #ffffff;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20,30,40,0.05), 0 2px 8px rgba(20,30,40,0.04);
  --shadow: 0 6px 20px rgba(20,30,40,0.08), 0 2px 6px rgba(20,30,40,0.04);
  --shadow-lg: 0 24px 60px rgba(20,30,40,0.14), 0 6px 18px rgba(20,30,40,0.06);

  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-display); margin: 0 0 .4em; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; text-wrap: pretty; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(214,145,52,0.35);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-large { padding: 16px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .2s ease, background .2s ease, border-color .2s ease;
}
.site-header.scrolled { padding-top: 10px; padding-bottom: 10px; border-bottom-color: var(--line); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 40px; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; }
.brand-tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; color: var(--accent); margin-top: 4px; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.site-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--accent); }

.menu-btn {
  display: none;
  background: transparent; border: 0; padding: 8px;
  flex-direction: column; gap: 5px;
}
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

@media (max-width: 980px) {
  .site-header { gap: 12px; }
  .brand-tag { display: none; }
  .site-nav {
    position: fixed; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 20px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(20,30,40,0.08);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .25s ease, visibility .25s;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); width: 100%; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .nav-cta {
    margin-top: 12px; text-align: center;
    background: var(--navy); color: #fff !important;
    padding: 14px 18px !important;
    border-radius: 999px;
    border-bottom: 0 !important;
  }
  .menu-btn { display: inline-flex; }
}
body[data-style="industrial"] .site-nav { background: rgba(20,32,42,0.98) !important; }
body[data-style="warm"] .site-nav { background: rgba(245,237,224,0.98) !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero-photo-real {
  position: relative;
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.hero-photo-real img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-real .ph-label {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 0.78rem; padding: 6px 12px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* ---------- Featured before/after (single split image) ---------- */
.feature-before-after {
  position: relative;
  margin: 0 0 clamp(48px, 6vw, 80px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.feature-before-after img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.ba-tag {
  position: absolute; top: 20px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  padding: 7px 14px; border-radius: 999px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.ba-tag-left { left: 20px; }
.ba-tag-right { right: 20px; background: var(--accent); }
.feature-before-after figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: #fff;
  display: flex; flex-direction: column; gap: 6px;
}
.feature-before-after figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  color: #fff;
}
.feature-before-after figcaption span {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* ---------- Work grid (finished products) ---------- */
.gallery-subhead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  display: flex; align-items: center; gap: 14px;
}
.gallery-subhead::after {
  content: ''; flex: 1; height: 1px;
  background: var(--line);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.work-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.work-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(0.2,0.7,0.3,1);
}
.work-item:hover img { transform: scale(1.04); }
.work-tall { grid-row: span 2; }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  color: #fff;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateY(8px);
  opacity: 0.95;
  transition: transform .35s ease, opacity .35s ease;
}
.work-item:hover figcaption { transform: translateY(0); opacity: 1; }
.work-cat {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.work-desc { font-size: 0.92rem; font-weight: 500; color: #fff; }

@media (max-width: 880px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .work-tall { grid-row: span 2; }
}
@media (max-width: 540px) {
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .work-item { aspect-ratio: 4/3; }
  .work-tall { grid-row: span 1; aspect-ratio: 3/4; }
}

/* ---------- Portrait (over) ---------- */
.ph-portrait-real {
  margin: 0;
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ph-portrait-real img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Werkplaats video ---------- */
.ph-video {
  margin: 0;
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  position: relative;
}
.ph-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ph-video .ph-label {
  position: absolute; left: 18px; top: 18px;
  right: auto; bottom: auto;
  width: auto; height: auto;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 0.78rem; padding: 6px 12px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 2;
}

/* ---------- Admin link ---------- */
.admin-link {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.admin-link:hover { color: var(--accent); text-decoration-color: var(--accent); }
.hero {
  position: relative;
  min-height: min(820px, 92vh);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 90% 20%, rgba(214,145,52,0.08), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(45,68,86,0.06), transparent 60%),
    var(--bg);
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.kicker::before {
  content: ''; width: 28px; height: 2px; background: var(--accent);
}
.hero-title { margin: 0 0 24px; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--accent); }
.hero-lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 52ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 540px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats span { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

.hero-art { position: relative; height: 100%; min-height: 420px; display: flex; align-items: center; }
.hero-photo {
  position: relative;
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(45,68,86,0.85), rgba(45,68,86,0.55)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px);
  background-color: var(--navy);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-photo:not(.hero-photo-real)::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(214,145,52,0.25), transparent 55%);
}
.hero-photo:not(.hero-photo-real)::after {
  content: '📷  Productfoto plaatsen';
  position: absolute; inset: 0; display: grid; place-items: center;
  font-weight: 600; color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.ph-label {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 0.78rem; padding: 6px 12px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { min-height: 320px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-lede { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.eyebrow-light { color: rgba(255,255,255,0.85); }
.eyebrow-light::before { background: var(--accent); }

.two-col {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Wat is natstralen ---------- */
.section-wat { background: var(--bg-soft); }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.feature-list .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); margin-top: 4px;
  position: relative;
}
.feature-list .dot::after {
  content: ''; position: absolute; inset: 5px;
  border-radius: 50%; background: #fff;
}
.feature-list strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 1.02rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.diagram {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 40px);
  box-shadow: var(--shadow);
}

/* ---------- Materialen ---------- */
.materials-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.mat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.mat-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--mat); opacity: 0;
  transition: opacity .25s ease;
}
.mat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.mat-card:hover::before { opacity: 1; }
.mat-swatch {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--mat);
  margin-bottom: 18px;
  box-shadow: inset 0 -8px 16px rgba(0,0,0,0.18), inset 0 8px 16px rgba(255,255,255,0.25);
  position: relative;
}
.mat-swatch::after {
  content: ''; position: absolute; top: 8px; left: 12px;
  width: 14px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); filter: blur(2px);
}
.mat-card h3 { color: var(--navy); margin: 0 0 6px; }
.mat-card p { color: var(--muted); margin: 0; font-size: 0.93rem; }

/* ---------- Voordelen ---------- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit {
  background: #fff;
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .25s ease;
}
.benefit:hover { background: var(--bg-soft); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.18em;
  color: var(--accent);
}
.benefit h3 { color: var(--navy); margin: 0; }
.benefit p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ---------- Galerij ---------- */
.section-galerij { background: var(--bg-soft); }
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(28px, 3.5vw, 44px);
}
.ga-item h3 { color: var(--navy); margin: 18px 0 4px; }
.ga-item p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.ga-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.ph {
  position: relative;
  aspect-ratio: 1/1;
  background:
    linear-gradient(135deg, #cfd6db, #8a98a3);
  margin: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 8px, transparent 8px 16px);
}
.ph-after {
  background: linear-gradient(135deg, #e8e9eb, #b6bcc1);
}
.ph-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(45,68,86,0.92); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 5px 10px; border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}
.ph-after .ph-tag { background: var(--accent); }
.ph-caption {
  position: relative; z-index: 1;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(45,68,86,0.65);
}

/* ---------- Over ons ---------- */
.signature { display: flex; align-items: center; gap: 14px; margin-top: 18px; color: var(--muted); font-style: italic; }
.sig-line { width: 28px; height: 2px; background: var(--accent); }

.ph-portrait {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #d3dadf 0%, #aab4bb 100%);
  box-shadow: var(--shadow-lg);
}

/* ---------- Contact ---------- */
.section-contact {
  background: var(--navy);
  color: #fff;
  border-top: 0;
}
.section-contact h2 { color: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-text .btn { margin-right: 8px; margin-top: 8px; }
.contact-lede { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 48ch; margin-bottom: 28px; }

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
  backdrop-filter: blur(8px);
}
.cc-row {
  display: grid; grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.cc-row:last-child { border-bottom: 0; }
.cc-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding-top: 2px;
}
.cc-value { color: #fff; font-weight: 500; }
a.cc-value:hover { color: var(--accent); }
.cc-sub { color: rgba(255,255,255,0.6); font-size: 0.9em; }
.cc-value .hours-row,
.hours-row { display: flex; justify-content: space-between; gap: 24px; padding: 2px 0; }
.cc-row .cc-value { display: block; }
.hours-row span:last-child { color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 36px 0;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand strong { font-family: var(--font-display); display: block; line-height: 1; }
.footer-brand .muted { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.muted { color: rgba(255,255,255,0.55); margin: 0; font-size: 0.9rem; }
.muted.small { font-size: 0.78rem; }


/* ============================================================
   STYLE 2 — INDUSTRIAL  (donker, robuust, metalen feel)
   ============================================================ */
body[data-style="industrial"] {
  --bg: #14202a;
  --bg-soft: #1a2935;
  --bg-elev: #1f2f3c;
  --ink: #e8eef2;
  --muted: #9aabb6;
  --line: rgba(255,255,255,0.08);
  --navy: #f3f6f8;
  color: var(--ink);
}
body[data-style="industrial"] h1,
body[data-style="industrial"] h2,
body[data-style="industrial"] h3 { color: #fff; }
body[data-style="industrial"] h1, body[data-style="industrial"] h2 {
  font-family: 'Bebas Neue', 'Manrope', sans-serif;
  letter-spacing: 0.005em;
  font-weight: 400;
}
body[data-style="industrial"] h1 { font-size: clamp(3rem, 7vw, 5.4rem); line-height: 0.95; }
body[data-style="industrial"] h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; }

body[data-style="industrial"] .site-header {
  background: rgba(20,32,42,0.85);
  border-bottom-color: rgba(255,255,255,0.06);
}
body[data-style="industrial"] .site-header.scrolled { border-bottom-color: rgba(255,255,255,0.1); }
body[data-style="industrial"] .brand-name { color: #fff; }
body[data-style="industrial"] .site-nav a { color: rgba(255,255,255,0.85); }
body[data-style="industrial"] .nav-cta { background: var(--accent); color: #14202a !important; }
body[data-style="industrial"] .nav-cta:hover { background: #fff; }
body[data-style="industrial"] .menu-btn span { background: #fff; }
body[data-style="industrial"] .site-nav { background: rgba(20,32,42,0.97); }

body[data-style="industrial"] .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
body[data-style="industrial"] .btn-ghost:hover { background: #fff; color: #14202a; border-color: #fff; }

body[data-style="industrial"] .hero-bg {
  background:
    radial-gradient(800px 600px at 80% 0%, rgba(214,145,52,0.15), transparent 60%),
    linear-gradient(180deg, #14202a 0%, #0e1820 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><rect width='40' height='40' fill='%23000'/><circle cx='1' cy='1' r='1' fill='%23ffffff10'/></svg>");
}
body[data-style="industrial"] .hero-photo:not(.hero-photo-real) {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 16px, transparent 16px 32px),
    linear-gradient(135deg, #2a3b48, #14202a);
  border: 1px solid rgba(255,255,255,0.08);
}
body[data-style="industrial"] .hero-photo:not(.hero-photo-real)::after { color: rgba(255,255,255,0.5); }
body[data-style="industrial"] .hero-stats { border-top-color: rgba(255,255,255,0.12); }
body[data-style="industrial"] .hero-stats strong { color: #fff; }
body[data-style="industrial"] .hero-stats span { color: var(--muted); }

body[data-style="industrial"] .section-wat { background: var(--bg-soft); }
body[data-style="industrial"] .section-galerij { background: var(--bg-soft); }
body[data-style="industrial"] .feature-list strong { color: #fff; }
body[data-style="industrial"] .feature-list .dot::after { background: var(--bg-soft); }
body[data-style="industrial"] .diagram { background: var(--bg-elev); border-color: rgba(255,255,255,0.08); }
body[data-style="industrial"] .diagram-svg text { fill: #fff !important; }
body[data-style="industrial"] .diagram-svg text[fill="#5a6b78"] { fill: rgba(255,255,255,0.6) !important; }
body[data-style="industrial"] .diagram-svg text[fill="#a8b0b8"] { fill: rgba(255,255,255,0.4) !important; }

body[data-style="industrial"] .mat-card { background: var(--bg-elev); border-color: rgba(255,255,255,0.08); }
body[data-style="industrial"] .mat-card h3 { color: #fff; }
body[data-style="industrial"] .mat-card:hover { background: #243441; }

body[data-style="industrial"] .benefits-grid { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); }
body[data-style="industrial"] .benefit { background: var(--bg-elev); }
body[data-style="industrial"] .benefit:hover { background: #253644; }

body[data-style="industrial"] .ph { background: linear-gradient(135deg, #2a3b48, #14202a); }
body[data-style="industrial"] .ph-after { background: linear-gradient(135deg, #3a4d5c, #243441); }
body[data-style="industrial"] .ph-caption { color: rgba(255,255,255,0.4); }
body[data-style="industrial"] .ph-tag { background: rgba(0,0,0,0.7); }

body[data-style="industrial"] .section-contact { background: #0e1820; }
body[data-style="industrial"] .contact-card { background: rgba(255,255,255,0.04); }
body[data-style="industrial"] .ph-portrait { background: linear-gradient(150deg, #2a3b48, #14202a); }
body[data-style="industrial"] .site-footer { background: #0a131a; }


/* ============================================================
   STYLE 3 — WARM  (ambacht, papier-textuur, warme tinten)
   ============================================================ */
body[data-style="warm"] {
  --bg: #f5ede0;
  --bg-soft: #ebe0cc;
  --bg-elev: #fbf6ec;
  --ink: #2a2218;
  --muted: #6b5d49;
  --line: rgba(60,40,20,0.12);
  --navy: #3a2b1a;
  --navy-deep: #2a1f12;
  --font-display: 'Fraunces', 'Manrope', serif;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(214,145,52,0.04), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(60,40,20,0.05), transparent 50%);
}
body[data-style="warm"] h1, body[data-style="warm"] h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em; }
body[data-style="warm"] h1 .accent, body[data-style="warm"] h2 .accent { font-style: italic; font-weight: 400; }
body[data-style="warm"] h2 em, body[data-style="warm"] h1 em { font-style: italic; font-weight: 400; }

body[data-style="warm"] .site-header { background: rgba(245,237,224,0.85); }
body[data-style="warm"] .brand-name { color: var(--navy); }
body[data-style="warm"] .nav-cta { background: var(--navy); }
body[data-style="warm"] .nav-cta:hover { background: var(--accent); color: #fff !important; }

body[data-style="warm"] .hero-bg {
  background:
    radial-gradient(900px 500px at 90% 20%, rgba(214,145,52,0.18), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(58,43,26,0.08), transparent 60%),
    var(--bg);
}
body[data-style="warm"] .hero-photo:not(.hero-photo-real) {
  background: linear-gradient(135deg, var(--accent), #a8651a);
  box-shadow: 0 30px 60px rgba(120,80,30,0.25);
}
body[data-style="warm"] .hero-photo:not(.hero-photo-real)::before { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 55%); }

body[data-style="warm"] .section-wat { background: var(--bg-soft); }
body[data-style="warm"] .section-galerij { background: var(--bg-soft); }

body[data-style="warm"] .diagram { background: var(--bg-elev); }
body[data-style="warm"] .mat-card { background: var(--bg-elev); border-color: var(--line); }
body[data-style="warm"] .mat-card h3 { color: var(--navy); }
body[data-style="warm"] .mat-card:hover { background: #fff; }

body[data-style="warm"] .benefits-grid { background: var(--line); border-color: var(--line); }
body[data-style="warm"] .benefit { background: var(--bg-elev); }
body[data-style="warm"] .benefit:hover { background: #fff; }
body[data-style="warm"] .benefit-num { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.2rem; letter-spacing: 0; }

body[data-style="warm"] .ph { background: linear-gradient(135deg, #d8c9a8, #b09c75); }
body[data-style="warm"] .ph-after { background: linear-gradient(135deg, #e8dcc1, #c9b890); }

body[data-style="warm"] .section-contact { background: var(--navy); }
body[data-style="warm"] .site-footer { background: var(--navy-deep); }


/* ============================================================
   Tweaks panel host wrapper (the panel itself comes from starter)
   ============================================================ */
#tweaks-root { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
