/* ═══════════════════════════════════════════════════════════
   BOGAARD – Premium redesign
   Kleurpalet: warm donker · goud · warm wit
   Typografie: Outfit (licht gewicht)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&display=swap');

/* ─── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:        #c8a876;
  --gold-dk:     #a8875a;
  --gold-lt:     #e8d4b0;
  --dark:        #0e0c09;
  --surface:     #1a1610;
  --surface-2:   #28231a;
  --surface-3:   #332d22;
  --warm-white:  #f5f0e8;
  --warm-gray:   #e8e2d8;
  --text:        #f0ebe2;
  --text-dim:    #9e9180;
  --text-dark:   #1a1610;
  --radius:      0px;
  --radius-sm:   2px;
  --shadow:      0 8px 60px rgba(0,0,0,.4);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--dark);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Skip-to-content (accessibility) ───────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 20px; z-index: 9999;
  background: var(--gold); color: var(--dark);
  padding: 10px 20px; font-size: 13px; font-weight: 600; letter-spacing: .05em;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ─── Focus ring (accessibility + goud) ─────────────────── */
:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
}
/* Anchor + button: geen standaard ring, wel zichtbare ring */
a:focus-visible,
button:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 4px;
}

/* ─── Scroll offset voor sticky header ──────────────────── */
[id] { scroll-margin-top: 96px; }

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; }

/* ─── Top bar ────────────────────────────────────────────── */
.topbar {
  background: var(--dark); color: var(--text-dim); font-size: 12px;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 8px 48px; border-bottom: 1px solid rgba(200,168,118,.12);
  letter-spacing: 0.08em;
}
.topbar-left { display: none; } /* Verborgen – te druk voor premium feel */
.topbar-right { display: flex; gap: 28px; }
.topbar-right a { color: var(--text-dim); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; transition: color .25s; }
.topbar-right a:hover { color: var(--gold); }
.topbar-right a.active,
.topbar-right a[style*="color:#00A3E0"],
.topbar-right a[style*="color: #00A3E0"] { color: var(--gold) !important; font-weight: 400; }

/* ─── Header / Nav ───────────────────────────────────────── */
header {
  background: var(--surface); position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(200,168,118,.1);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 90px; max-width: 100%;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 68px; width: auto; flex-shrink: 0;
  transition: opacity .25s;
}
.logo:hover .logo-img { opacity: .85; }

/* ─── Hamburger (altijd zichtbaar – desktop & mobile) ───── */
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 10;
  flex-shrink: 0;
}
/* Drie streepjes via pseudo-elements */
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 24px; height: 1.5px;
  background: var(--warm-white);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, top 0.35s cubic-bezier(.4,0,.2,1);
  position: absolute; left: 50%; translate: -50% 0;
}
.nav-toggle span::before { content: ''; top: -8px; }
.nav-toggle span::after  { content: ''; top: 8px; }
/* Open-state → kruisje */
.nav-toggle.is-open span          { background: transparent; }
.nav-toggle.is-open span::before  { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after   { top: 0; transform: rotate(-45deg); }

/* ─── Nav side panel ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  z-index: 150;
  background: var(--surface);
  border-left: 1px solid rgba(200,168,118,.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 48px 80px;
  gap: 0;
  overflow-y: auto;
  /* Slide-in van rechts */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1),
              box-shadow 0.4s;
  box-shadow: none;
}
nav.nav-open {
  transform: translateX(0);
  box-shadow: -24px 0 80px rgba(0,0,0,.45);
}

/* Backdrop achter het panel */
body.nav-overlay-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 149;
  animation: backdropIn .35s ease forwards;
}
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.nav-overlay-open { overflow: hidden; }

/* Nav items */
.nav-item { position: relative; width: 100%; }
.nav-item > a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  transition: color .2s;
  border-bottom: 1px solid rgba(200,168,118,.07);
  white-space: nowrap;
}
.nav-item:last-child > a { border-bottom: none; }
.nav-item > a:hover,
.nav-item > a.active { color: var(--warm-white); }
.nav-item > a .chevron {
  font-size: 9px; opacity: .35; margin-left: auto;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-item.open > a .chevron { transform: rotate(180deg); opacity: .7; }

/* Dropdown in het panel – inline */
.dropdown {
  display: none;
  position: static;
  background: none; box-shadow: none; border: none;
  padding: 4px 0 8px 16px;
  min-width: unset;
}
.nav-item.open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 7px 0;
  font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); transition: color .2s;
  border: none;
}
.dropdown a:hover { color: var(--gold); }
.dropdown a.active { color: var(--gold); }
.dd-section {
  padding: 10px 0 3px; font-size: 9px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.2em; color: rgba(200,168,118,.3);
  border-top: 1px solid rgba(200,168,118,.08); margin-top: 6px;
}
.dd-section:first-child { border-top: none; margin-top: 0; }

/* CTA in panel */
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  font-size: 11px !important;
  padding: 13px 28px !important; margin: 24px 0 0 0 !important;
  font-weight: 500 !important; letter-spacing: 0.14em !important;
  transition: background .25s !important;
  display: inline-flex !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; }

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--surface); padding: 14px 48px;
  font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(200,168,118,.08);
}
.breadcrumb a { color: var(--text-dim); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .3; }
.breadcrumb .current { color: var(--gold); }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  position: relative; height: 520px; min-height: 360px;
  background: var(--surface); display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .5;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,9,.9) 0%, rgba(14,12,9,.3) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 1; color: var(--text);
  padding: 0 48px 64px; max-width: 800px;
}
.page-hero-content .hero-label {
  font-size: 11px; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block;
}
.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 64px); font-weight: 200;
  letter-spacing: 0.03em; line-height: 1.05; margin-bottom: 20px;
  color: var(--warm-white);
}
.page-hero-content p {
  font-size: 16px; opacity: .7; line-height: 1.75; margin-bottom: 32px; font-weight: 300;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; transition: .25s;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dk); }
.btn-outline { background: transparent; color: var(--warm-white); border: 1px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border: 1px solid rgba(0,0,0,.25); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: var(--warm-white); color: var(--dark); }
.btn-white:hover { background: var(--gold); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
/* Tactiel press-gevoel op alle buttons */
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active,
.btn-outline-white:active,
.btn-outline-dark:active,
.btn-cross:active {
  transform: scale(0.97);
  transition-duration: .08s;
}

/* Alias classes */
.btn-primary.btn { background: var(--gold); color: var(--dark); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; background: transparent; color: var(--gold); border: 1px solid rgba(200,168,118,.5); transition: .25s; }
.btn-secondary:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ─── USP bar ────────────────────────────────────────────── */
.usp-bar {
  background: var(--surface-2); color: var(--text-dim);
  display: flex; justify-content: center; align-items: center;
  gap: 0; padding: 0; flex-wrap: wrap;
  border-bottom: 1px solid rgba(200,168,118,.1);
}
.usp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 18px 32px; border-right: 1px solid rgba(200,168,118,.1);
  transition: color .2s;
}
.usp-item::before {
  content: '—'; color: var(--gold); font-size: 10px; opacity: .6; flex-shrink: 0;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { color: var(--gold); }
.usp-icon { display: none; } /* emoji verwijderd – CSS marker gebruikt */

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 100px 48px; }
.section-gray,
.section-light { background: var(--warm-white); color: var(--text-dark); }
.section-white { background: var(--warm-white); color: var(--text-dark); }
.section-dark { background: var(--surface); color: var(--text); }
.section-darker { background: var(--dark); color: var(--text); }

/* Text color adjustments for light sections */
.section-white .section-title,
.section-gray .section-title,
.section-light .section-title { color: var(--text-dark); }
.section-white .section-sub,
.section-gray .section-sub,
.section-light .section-sub { color: #6a5e50; }
.section-white p, .section-gray p, .section-light p { color: #5a5040; }

.section-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 200;
  letter-spacing: 0.03em; color: var(--warm-white); line-height: 1.1; margin-bottom: 20px;
}
.section-sub, .section-subtitle {
  font-size: 15px; color: var(--text-dim); line-height: 1.8; max-width: 580px; font-weight: 300;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub,
.section-header.center .section-subtitle { margin: 0 auto; }

/* Section title on dark background */
.section-dark .section-title { color: var(--warm-white); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-sub { color: var(--text-dim); }

/* ─── Cards grid ─────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.card {
  background: var(--surface-2); overflow: hidden;
  transition: transform .35s, background .25s, box-shadow .35s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--surface-3);
  box-shadow: 0 0 0 1px rgba(200,168,118,.18), 0 24px 48px rgba(0,0,0,.3);
}
.card-img {
  height: 240px; background: var(--surface-3);
  background-size: cover; background-position: center; position: relative; overflow: hidden;
}
.card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,9,.5) 0%, transparent 60%);
}
.card-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 1;
  background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 500; padding: 5px 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.card-body { padding: 28px 28px 32px; }
.card-body h3 { font-size: 17px; font-weight: 400; margin-bottom: 10px; color: var(--warm-white); letter-spacing: 0.04em; }
.card-body p { font-size: 14px; color: var(--text-dim); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 400; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; transition: gap .2s;
}
.card-link:hover { gap: 14px; }

/* Cards on light background */
.section-white .card,
.section-gray .card,
.section-light .card {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.section-white .card:hover,
.section-gray .card:hover,
.section-light .card:hover { background: #f8f3ec; }
.section-white .card-body h3,
.section-gray .card-body h3,
.section-light .card-body h3 { color: var(--text-dark); }
.section-white .card-body p,
.section-gray .card-body p,
.section-light .card-body p { color: #6a5e50; }
.section-white .card-link,
.section-gray .card-link,
.section-light .card-link { color: var(--gold-dk); }

/* ─── Split layout ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse .split-text { order: 2; }
.split.reverse .split-media { order: 1; }
.split-text h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 200; letter-spacing: 0.03em; margin-bottom: 20px; line-height: 1.1; }
.split-text p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.split-text ul { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.split-text ul li { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--text-dim); font-weight: 300; }
.split-text ul li::before {
  content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 300; margin-top: 1px;
}
.split-media {
  overflow: hidden;
  height: 500px; background: var(--surface-2);
  background-size: cover; background-position: center; position: relative;
}
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,168,118,.06) 0%, transparent 60%);
}

/* Light section overrides for split */
.section-white .split-text h2,
.section-gray .split-text h2,
.section-light .split-text h2 { color: var(--text-dark); }
.section-white .split-text p,
.section-gray .split-text p,
.section-light .split-text p { color: #5a5040; }
.section-white .split-text ul li,
.section-gray .split-text ul li,
.section-light .split-text ul li { color: #5a5040; }

/* Checklist (alias) */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--text-dim); font-weight: 300; }
.checklist li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 300; }
.section-white .checklist li,
.section-gray .checklist li { color: #5a5040; }

/* ─── Portfolio grid (homepage widget) ──────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.portfolio-item {
  overflow: hidden; position: relative;
  aspect-ratio: 1; background: var(--surface-2);
  background-size: cover; background-position: center; cursor: pointer;
}
.portfolio-item:first-child { grid-column: span 2; grid-row: span 2; }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(14,12,9,.6);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: var(--warm-white); font-weight: 300; font-size: 13px; letter-spacing: 0.08em; }

/* ─── Portfolio grid large (portfolio pagina) ───────────── */
.portfolio-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item-large {
  overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: var(--surface-2);
  background-size: cover; background-position: center; cursor: pointer;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.portfolio-item-featured {
  grid-column: span 2; grid-row: span 2;
  aspect-ratio: auto;
}
.portfolio-item-large:hover { transform: scale(1.02); }
.portfolio-item-large .portfolio-overlay {
  opacity: 0; transition: opacity .3s;
}
.portfolio-item-large:hover .portfolio-overlay { opacity: 1; }

/* ─── Steps ──────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; background: transparent; color: var(--gold);
  border: 1px solid rgba(200,168,118,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; margin: 0 auto 24px; letter-spacing: 0.05em;
}
.step h3 { font-size: 14px; font-weight: 400; margin-bottom: 10px; color: var(--warm-white); letter-spacing: 0.08em; text-transform: uppercase; }
.step p { font-size: 13px; color: var(--text-dim); line-height: 1.75; font-weight: 300; }

/* Steps on light backgrounds */
.section-white .step h3,
.section-gray .step h3,
.section-light .step h3 { color: var(--text-dark); }
.section-white .step p,
.section-gray .step p,
.section-light .step p { color: #6a5e50; }

/* ─── Cross-link panels ──────────────────────────────────── */
.cross-link-section { display: grid; grid-template-columns: 1fr 1fr; }
.cross-link-panel {
  position: relative; height: 420px;
  display: flex; align-items: flex-end; padding: 48px;
  overflow: hidden; background-size: cover; background-position: center;
}
.cross-link-panel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,9,.85) 0%, rgba(14,12,9,.2) 60%, transparent 100%);
}
.cross-link-content { position: relative; z-index: 1; color: var(--text); }
.cross-link-content h3 { font-size: 28px; font-weight: 200; margin-bottom: 10px; letter-spacing: 0.03em; }
.cross-link-content p { font-size: 14px; opacity: .7; margin-bottom: 24px; font-weight: 300; }
.btn-cross {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,168,118,.5); color: var(--gold);
  padding: 12px 24px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; transition: .25s;
}
.btn-cross:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ─── Feature cards (inner stijlpagina's) ───────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px; margin-top: 48px;
}
.feature-card { background: var(--surface-2); padding: 40px 32px; }
.feature-icon { width: 28px; height: 1px; background: var(--gold); opacity: .55; margin-bottom: 28px; }
.feature-card h3 { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 12px; }
.feature-card p { font-size: 13px; color: var(--text-dim); line-height: 1.75; font-weight: 300; }
.section-white .feature-card,
.section-gray .feature-card { background: var(--surface); }

/* ─── Related cards ──────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.related-card {
  position: relative; height: 300px;
  display: flex; align-items: flex-end; overflow: hidden; text-decoration: none;
  cursor: pointer;
  transition: box-shadow .3s;
}
.related-card:hover {
  box-shadow: 0 0 0 1px rgba(200,168,118,.2), 0 20px 48px rgba(0,0,0,.4);
}
.related-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,9,.88) 0%, rgba(14,12,9,.2) 60%, transparent 100%);
  z-index: 1; transition: opacity .3s;
}
.related-card:hover::before { opacity: .65; }
.related-card-content { position: relative; z-index: 2; padding: 32px; }
.related-card-content h3 { font-size: 20px; font-weight: 200; color: var(--warm-white); margin-bottom: 8px; letter-spacing: 0.03em; }
.related-card-content p { font-size: 13px; color: rgba(245,240,232,.55); margin-bottom: 14px; font-weight: 300; line-height: 1.65; }
.related-link { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-block; }

/* ─── Cross-sell band ────────────────────────────────────── */
.cross-sell {
  background: var(--surface-2);
  border-top: 1px solid rgba(200,168,118,.1);
  border-bottom: 1px solid rgba(200,168,118,.1);
  padding: 40px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cross-sell-text p { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 400; }
.cross-sell-text h3 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 200; color: var(--warm-white); letter-spacing: 0.03em; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--surface-2);
  border-top: 1px solid rgba(200,168,118,.15);
  border-bottom: 1px solid rgba(200,168,118,.15);
  color: var(--text); text-align: center; padding: 100px 48px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,118,.05) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 52px); font-weight: 200; letter-spacing: 0.03em; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 15px; opacity: .6; margin-bottom: 40px; font-weight: 300; line-height: 1.8; position: relative; }
.cta-btns,
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── Also-grid (cross-promo cards on homepages) ─────────── */
.also-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2px; }
.also-card { position: relative; height: 280px; display: flex; align-items: flex-end; overflow: hidden; }
.also-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,12,9,.98) 0%, rgba(14,12,9,.92) 40%, rgba(14,12,9,.55) 65%, rgba(14,12,9,.15) 100%); z-index: 1; }
.also-card-body { position: relative; z-index: 2; color: var(--text); padding: 32px; }
.also-card-body h3 { font-size: 20px; font-weight: 300; margin-bottom: 8px; letter-spacing: 0.04em; }
.also-card-body p { font-size: 13px; opacity: .9; margin-bottom: 18px; font-weight: 300; line-height: 1.7; }
.also-card-body a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(200,168,118,.5); color: var(--gold);
  padding: 10px 20px; font-size: 10px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; transition: .25s;
}
.also-card-body a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
/* Color variants for keukens also-cards */
.also-card.inst { background: linear-gradient(135deg, #1a1a1a, #0e0c09); }

/* ─── Brands ─────────────────────────────────────────────── */
.brands-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px;
}
.brand-pill {
  background: var(--surface-2); padding: 12px 24px;
  font-size: 12px; font-weight: 400; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase; transition: .2s;
}
.brand-pill:hover { background: var(--surface-3); color: var(--gold); }

/* ─── Reviews ────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; }
.review-card {
  background: var(--surface-2); padding: 36px;
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 3px; }
.review-card p { font-size: 14px; color: var(--text-dim); line-height: 1.85; font-style: italic; margin-bottom: 20px; font-weight: 300; }
.reviewer { font-size: 11px; font-weight: 400; color: var(--warm-white); letter-spacing: 0.12em; text-transform: uppercase; }
.reviewer span { font-weight: 300; color: var(--text-dim); }

/* ─── Stijl detail pagina ────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px;
}
.feature-item {
  background: var(--surface-2); padding: 36px;
  border-left: 2px solid var(--gold);
  transition: background .25s;
}
.feature-item:hover { background: var(--surface-3); }
.feature-item .feat-icon { font-size: 24px; margin-bottom: 16px; opacity: .7; }
.feature-item h3 { font-size: 14px; font-weight: 400; margin-bottom: 10px; color: var(--warm-white); letter-spacing: 0.06em; text-transform: uppercase; }
.feature-item p { font-size: 13px; color: var(--text-dim); line-height: 1.75; font-weight: 300; }

/* ─── Gallery masonry ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-item {
  overflow: hidden;
  background: var(--surface-2); background-size: cover; background-position: center;
  cursor: pointer; position: relative; aspect-ratio: 4/3;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item .overlay {
  position: absolute; inset: 0; background: rgba(14,12,9,.55);
  opacity: 0; transition: .3s; display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  border: 1px solid rgba(200,168,118,.6); color: var(--gold);
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 22px;
}

/* ─── Contact form ───────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 10px; font-weight: 400; color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px; border: 1px solid rgba(200,168,118,.2);
  background: var(--surface-2); color: var(--text);
  font-size: 14px; font-weight: 300; transition: border-color .25s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,118,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { color: var(--text-dim); }
.form-group select option { background: var(--surface-2); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Formulier validatie states */
.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,.15) !important;
}
.field-error {
  color: #e74c3c; font-size: 12px; font-weight: 400;
  margin-top: -4px; display: block;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: var(--dark); color: var(--text-dim); border-top: 1px solid rgba(200,168,118,.12); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; padding: 80px 48px 64px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; margin: 20px 0 28px; color: var(--text-dim); font-weight: 300; }
.footer-brand-logo { margin-bottom: 20px; }
.footer-logo-img { height: 52px; width: auto; opacity: .9; }
.footer-logo-text {
  font-size: 20px; font-weight: 500; color: var(--warm-white);
  display: flex; flex-direction: column; line-height: 1.15; letter-spacing: 0.08em;
}
.footer-logo-text strong { color: var(--gold); font-weight: 500; }
.footer-logo-text span { font-size: 8px; font-weight: 300; letter-spacing: 0.22em; color: var(--text-dim); text-transform: uppercase; margin-top: 3px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px; background: var(--surface-2); border: 1px solid rgba(200,168,118,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 14px; transition: .25s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { color: var(--warm-white); font-size: 10px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 24px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: var(--text-dim); font-size: 13px; font-weight: 300; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; font-size: 13px; font-weight: 300; }
.footer-col .contact-item strong { color: var(--text-dim); }
.contact-label {
  font-size: 9px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold) !important; opacity: .7; min-width: 34px; padding-top: 2px; flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(200,168,118,.08); padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--text-dim); letter-spacing: 0.06em;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-dim); transition: color .2s; font-size: 11px; letter-spacing: 0.08em; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── Sticky phone ───────────────────────────────────────── */
.sticky-phone {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--gold); color: var(--dark); padding: 14px 24px;
  font-weight: 500; font-size: 13px; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px; transition: .25s;
}
.sticky-phone:hover { background: var(--gold-dk); transform: translateY(-2px); }

/* ─── Hero h1 em – premium goud gradient ────────────────── */
.hero h1 em {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 300;
}

/* ─── Gold shimmer op labels ─────────────────────────────── */
@keyframes goldShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-label,
.section-label {
  background: linear-gradient(
    90deg,
    var(--gold-dk) 0%,
    var(--gold-lt) 40%,
    var(--gold) 55%,
    var(--gold-lt) 70%,
    var(--gold-dk) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s linear infinite;
  color: var(--gold); /* fallback */
}

/* ─── CTA banner – rijker achtergrond ───────────────────── */
.cta-banner::before {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(200,168,118,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(200,168,118,.06) 0%, transparent 55%);
}

/* ─── Sticky phone – telefoon prefix ────────────────────── */
.sticky-phone::before {
  content: '↗';
  font-size: 11px;
  opacity: .7;
  margin-right: -2px;
}

/* ─── Will-change hints voor GPU ─────────────────────────── */
.card,
.portfolio-item,
.gallery-item,
nav,
.sticky-phone {
  will-change: transform;
}

/* ─── Prefers-reduced-motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-label,
  .section-label {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
  }
}

/* ─── CTA buttons alias ──────────────────────────────────── */
.btn-outline-white { background: transparent; color: var(--warm-white); border: 1px solid rgba(255,255,255,.35); padding: 14px 32px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; transition: .25s; }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – Mobile (≤768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Topbar: volledig verbergen op mobiel */
  .topbar { display: none; }

  /* Header */
  .nav-wrap { padding: 0 20px; height: 64px; }
  .logo-img { height: 46px; }

  /* Breadcrumb */
  .breadcrumb { padding: 12px 20px; }

  /* Page hero */
  .page-hero { height: auto; min-height: 320px; }
  .page-hero-content { padding: 48px 20px 48px; max-width: 100%; }

  /* Sections */
  .section { padding: 64px 20px; }
  .cta-banner { padding: 64px 20px; }

  /* Split */
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-media { order: 2; }
  .split-media { height: 280px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item:first-child { grid-column: span 1; grid-row: span 1; }
  .portfolio-grid-large { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item-featured { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  /* Cross-link */
  .cross-link-section { grid-template-columns: 1fr; }
  .cross-link-panel { height: 280px; padding: 28px; }

  /* Also-grid */
  .also-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  /* USP bar */
  .usp-bar { justify-content: flex-start; flex-wrap: wrap; padding: 0; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(200,168,118,.1); padding: 14px 20px; width: 50%; }
  .usp-item:nth-child(odd) { border-right: 1px solid rgba(200,168,118,.1); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Sticky phone */
  .sticky-phone { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 12px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 2px; }
}

/* ─── Tablet (769px – 1024px) ────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-wrap { padding: 0 28px; }
  .section { padding: 80px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .split { gap: 48px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-item:first-child { grid-column: span 2; grid-row: span 1; }
  .also-grid { gap: 2px; }
}

/* ─── Awards bar ─────────────────────────────────────────── */
.awards-bar {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 20px 40px;
  background: var(--surface);
  border-top: 1px solid rgba(200,168,118,.2);
  border-bottom: 1px solid rgba(200,168,118,.2);
}
.award-item { display: flex; align-items: center; gap: 14px; }
.award-icon { color: var(--gold); line-height: 0; }
.award-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .04em; }
.award-text span { font-size: 11px; color: var(--text-dim); letter-spacing: .03em; }

/* ─── Services strip ─────────────────────────────────────── */
.services-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; background: var(--dark);
}
.service-card {
  background: var(--surface); padding: 28px 16px; text-align: center;
  text-decoration: none; transition: background .2s, color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.service-card:hover { background: var(--surface-2); }
.service-card.active { background: var(--surface-2); border-top: 2px solid var(--gold); }
.service-card .sc-icon { color: var(--gold); line-height: 0; }
.service-card h3 { font-size: 13px; font-weight: 600; color: var(--text); margin: 0; letter-spacing: .04em; text-transform: uppercase; }
.service-card p { font-size: 11px; color: var(--text-dim); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .awards-bar { gap: 20px; padding: 20px; }
}
