/* ============================================================
   Van Kerckhoven Draadhandel — Modern Site Redesign
   Concept pitch v1 — Mei 2026
   ============================================================ */

:root {
  /* Brand palette — heritage groen + bronze accent */
  --forest: #2D4A37;
  --forest-deep: #1B3024;
  --forest-soft: #486B53;
  --green-light: #6B8A6F;
  --cream: #F5F0E8;
  --cream-warm: #EDE5D6;
  --bronze: #B8763E;
  --bronze-dark: #8F5A2C;
  --charcoal: #1A1A1A;
  --gray-700: #3F3F3F;
  --gray-500: #6B6B6B;
  --gray-300: #C9C4BC;
  --gray-100: #EFECE6;
  --white: #FFFFFF;
  --line: rgba(45, 74, 55, 0.14);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container: 1280px;
  --pad: clamp(1rem, 3vw, 2rem);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--gray-700);
}

/* ============================================================
   LAYOUT
   ============================================================ */

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

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bronze);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bronze-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(184, 118, 62, 0.4);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.4);
}
.btn-ghost:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--forest-deep);
  border: 1px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.3s var(--ease);
  background: transparent;
}

.site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--line), 0 8px 28px -16px rgba(0,0,0,0.12);
  padding: 0.7rem 0;
}

.site-header.scrolled .nav-link,
.site-header.scrolled .brand {
  color: var(--forest-deep);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: currentColor;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }

.brand-text { line-height: 1.1; }
.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.7rem 1.3rem;
  font-size: 0.88rem;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--cream);
}
.site-header.scrolled .mobile-toggle { color: var(--forest-deep); }
.mobile-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(27,48,36,0.85) 0%, rgba(45,74,55,0.55) 55%, rgba(27,48,36,0.45) 100%),
    url('https://vankerckhovendraadhandel.be/wp-content/uploads/2020/06/vkh-slide2-1024x421.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  padding-top: 5rem;
}

.hero-eyebrow {
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--bronze);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 500;
}

.hero-lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: var(--pad);
  background: rgba(20, 32, 29, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 118, 62, 0.3);
  padding: 1.25rem 1.5rem;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--bronze);
  line-height: 1;
}
.hero-badge-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--cream);
}

/* ============================================================
   USP STRIP
   ============================================================ */

.usp-strip {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--forest-soft);
}

.usp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 240, 232, 0.85);
}
.usp-item svg { width: 18px; height: 18px; color: var(--bronze); flex-shrink: 0; }

/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header.left {
  text-align: left;
  margin-left: 0;
}
.section-header p { color: var(--gray-700); font-size: 1.1rem; margin-top: 1rem; }

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.product-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--forest);
  cursor: pointer;
}
.product-card.large {
  grid-column: span 6;
  aspect-ratio: 1/1;
}
.product-card.small {
  grid-column: span 3;
}
@media (max-width: 900px) {
  .product-card.large { grid-column: span 12; aspect-ratio: 4/3; }
  .product-card.small { grid-column: span 6; aspect-ratio: 1/1; }
}

.product-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 32, 29, 0) 30%,
    rgba(20, 32, 29, 0.4) 60%,
    rgba(20, 32, 29, 0.9) 100%);
}

.product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  color: var(--cream);
}
.product-content h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-content p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bronze);
}
.product-link::after { content: '→'; transition: transform 0.25s var(--ease); }
.product-card:hover .product-link::after { transform: translateX(4px); }

/* ============================================================
   HERITAGE / STORY
   ============================================================ */

.heritage {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .heritage-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.heritage h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.heritage h2 em {
  color: var(--bronze);
  font-style: italic;
}

.heritage p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.heritage-image {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.heritage-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 118, 62, 0.4);
  transform: translate(20px, 20px);
  border-radius: 2px;
  pointer-events: none;
}

.timeline {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(184, 118, 62, 0.2);
  align-items: baseline;
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bronze);
}
.timeline-text { color: rgba(245, 240, 232, 0.85); font-size: 0.95rem; }

/* ============================================================
   WIZARD TEASER
   ============================================================ */

.wizard-teaser {
  background: var(--cream-warm);
  position: relative;
}

.wizard-card {
  background: var(--white);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  border-radius: 2px;
  box-shadow: 0 30px 80px -40px rgba(20,32,29,0.25);
}
@media (max-width: 900px) {
  .wizard-card { grid-template-columns: 1fr; gap: 2rem; }
}

.wizard-preview {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 2rem;
  border-radius: 2px;
}
.wizard-step-mock {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.wizard-step-dot {
  flex: 1;
  height: 3px;
  background: rgba(245, 240, 232, 0.15);
  border-radius: 2px;
}
.wizard-step-dot.active { background: var(--bronze); }

.wizard-options-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.wizard-option-mock {
  padding: 1rem 0.85rem;
  border: 1px solid rgba(245, 240, 232, 0.15);
  font-size: 0.85rem;
  text-align: center;
  border-radius: 2px;
  transition: all 0.2s;
}
.wizard-option-mock.selected {
  border-color: var(--bronze);
  background: rgba(184, 118, 62, 0.12);
  color: var(--bronze);
}

/* ============================================================
   STATS / SHOWROOM CTA
   ============================================================ */

.showroom {
  background: var(--forest);
  color: var(--cream);
  position: relative;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .showroom-grid { grid-template-columns: 1fr; }
}

.showroom h2 { color: var(--cream); font-weight: 400; margin-bottom: 1.5rem; }
.showroom h2 em { color: var(--bronze); font-style: italic; }
.showroom p { color: rgba(245, 240, 232, 0.8); font-size: 1.05rem; margin-bottom: 1rem; }

.hours-grid {
  display: grid;
  gap: 0.6rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(20, 32, 29, 0.5);
  border-left: 2px solid var(--bronze);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.85);
}
.hours-row strong { color: var(--cream); font-weight: 500; }

.map-box {
  aspect-ratio: 4/5;
  background: var(--forest-deep);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.map-box iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
  background: transparent;
  cursor: pointer;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 1.5rem; max-width: 90%; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--forest-deep);
  color: rgba(245, 240, 232, 0.7);
  padding: 5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(245, 240, 232, 0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--bronze); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ============================================================
   UTILITY — REVEAL ON SCROLL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */

@media (max-width: 850px) {
  .nav-menu, .nav-cta { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .nav-menu.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--forest-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-menu.open .nav-link { color: var(--cream); font-size: 1.5rem; font-family: var(--font-serif); }
}

/* ============================================================
   PRODUCT PAGE LAYOUT
   ============================================================ */

.page-hero {
  padding: 11rem 0 5rem;
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
}
.page-hero h1 { color: var(--cream); max-width: 800px; font-weight: 400; }
.page-hero h1 em { color: var(--bronze); font-style: italic; }
.page-hero .lead { color: rgba(245, 240, 232, 0.8); max-width: 640px; margin-top: 1.5rem; }
.breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(245, 240, 232, 0.6); }
.breadcrumb a:hover { color: var(--bronze); }

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.cat-tab {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray-700);
  transition: all 0.2s;
  cursor: pointer;
}
.cat-tab:hover { border-color: var(--forest); color: var(--forest); }
.cat-tab.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.subcat {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.subcat:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(20,32,29,0.2); }
.subcat-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
}
.subcat-body { padding: 1.5rem; }
.subcat-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.subcat-body p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1rem; }
.subcat-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.subcat-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }

/* ============================================================
   WIZARD PAGE
   ============================================================ */

.wizard-page {
  min-height: 100vh;
  background: var(--cream);
  padding: 8rem 0 4rem;
}

.wizard {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 30px 80px -40px rgba(20,32,29,0.2);
  overflow: hidden;
}

.wizard-header {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 2.5rem 3rem 2rem;
}
.wizard-header h1 { color: var(--cream); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.4rem; }
.wizard-header h1 em { color: var(--bronze); font-style: italic; }
.wizard-header p { color: rgba(245, 240, 232, 0.7); font-size: 0.95rem; }

.progress-bar {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.75rem;
}
.progress-step {
  flex: 1;
  height: 3px;
  background: rgba(245, 240, 232, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.progress-step.done { background: var(--bronze); }
.progress-step.current {
  background: rgba(184, 118, 62, 0.3);
}
.progress-step.current::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  background: var(--bronze);
}

.wizard-body { padding: 3rem; }
@media (max-width: 600px) {
  .wizard-header, .wizard-body { padding: 2rem 1.5rem; }
}

.step { display: none; animation: fadeIn 0.35s var(--ease); }
.step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}
.step h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.step p.step-help {
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
}
.option {
  position: relative;
  padding: 1.5rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.option:hover { border-color: var(--forest); transform: translateY(-2px); }
.option.selected {
  border-color: var(--bronze);
  background: rgba(184, 118, 62, 0.06);
}
.option-icon {
  width: 38px;
  height: 38px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--forest);
}
.option.selected .option-icon { background: var(--bronze); color: var(--white); }
.option-title { font-weight: 600; color: var(--forest-deep); margin-bottom: 0.25rem; }
.option-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.4; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.4rem;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--bronze);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-full { grid-column: 1 / -1; }

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.btn-back {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  padding: 0.85rem 0;
  background: none;
}
.btn-back:hover { color: var(--forest); }
.btn-back::before { content: '← '; }

.summary-card {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.summary-card h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.summary-row:last-child { border-bottom: 0; }
.summary-row .label { color: var(--gray-700); }
.summary-row .value { color: var(--forest-deep); font-weight: 600; }

.price-band {
  background: var(--forest);
  color: var(--cream);
  padding: 1.5rem 1.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-band .price-label { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.price-band .price { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 500; color: var(--bronze); }
.price-band .price-note { font-size: 0.78rem; opacity: 0.7; margin-top: 0.3rem; max-width: 240px; }

.success {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--white);
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
}
.success h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.success p { color: var(--gray-700); max-width: 480px; margin: 0 auto 1.5rem; }

/* ============================================================
   SHARED PRODUCT-CATALOG COMPONENTS
   (used on afsluitingen, tuinpoorten, tennisdraad, poorten)
   ============================================================ */

.height-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.height-pill {
  background: var(--cream-warm);
  color: var(--forest-deep);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(184,118,62,0.2);
  white-space: nowrap;
}
.height-pill.popular {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}
.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.08);
}
.color-pill::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--swatch, var(--gray-300));
  border: 1px solid rgba(0,0,0,0.12);
}

.spec-list {
  list-style: none;
  margin: 0.85rem 0;
  padding: 0;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  gap: 1rem;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list .spec-key { color: var(--gray-500); flex-shrink: 0; }
.spec-list .spec-val { color: var(--forest-deep); font-weight: 600; text-align: right; }

.product-rich {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.product-rich:hover { box-shadow: 0 20px 50px -25px rgba(20,32,29,0.18); }
.product-rich.reverse { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 800px) {
  .product-rich,
  .product-rich.reverse { grid-template-columns: 1fr; }
}
.product-rich-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
  min-height: 320px;
}
.product-rich-body { padding: 2rem 2.25rem; }
.product-rich-body .eyebrow { margin-bottom: 0.5rem; }
.product-rich-body h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.product-rich-body p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.product-rich-tag {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--forest-deep);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 0.4rem;
  margin-bottom: 0.3rem;
}
.product-rich-tag.bronze { background: var(--bronze); color: #fff; }

.cat-section {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--line);
}
.cat-section-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cat-section-header h2 { margin-top: 0.5rem; }
.cat-section-header p {
  color: var(--gray-700);
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.cat-grid {
  display: grid;
  gap: 1.5rem;
}
.cat-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 850px) {
  .cat-grid.cols-2 { grid-template-columns: 1fr; }
}

.brochure-note {
  background: var(--cream-warm);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--bronze);
  font-size: 0.88rem;
  color: var(--forest-deep);
  margin-top: 1rem;
  line-height: 1.55;
}
.brochure-note strong { color: var(--bronze); }

/* ============================================================
   RESPONSIVE FIXES + FILTER (juni 2026)
   ============================================================ */

/* Grid/flex-items mogen nooit breder worden dan hun kolom.
   .product-rich-img heeft aspect-ratio + min-height, wat een
   minimumbreedte (~427px) afdwong en de kaart breder dan het
   scherm maakte -> tekst werd rechts afgeknipt op mobiel. */
.product-rich,
.product-rich-img,
.product-rich-body,
.cat-grid > *,
.cat-section-header > * { min-width: 0; }
.product-rich-body { overflow-wrap: break-word; word-break: break-word; }
.product-rich-img { width: 100%; min-height: 220px; }
@media (max-width: 800px) {
  .product-rich-img { aspect-ratio: 16 / 10; min-height: 200px; }
}

/* Homepage brochure-sectie: cover-mockup + tekst stapelen op mobiel
   (anders werd de cover tot ~60px platgeknepen) */
@media (max-width: 760px) {
  .brochure-split,
  .contact-split { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* Mobiel menu: sluitknop (kruisje) rechtsboven + "Offerte op maat"-knop in de overlay */
.nav-close,
.nav-menu-cta { display: none; }
@media (max-width: 850px) {
  body.nav-open { overflow: hidden; }
  body.nav-open .mobile-toggle { display: none; }
  .nav-menu.open .nav-menu-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    font-size: 1.05rem;
  }
  .nav-menu.open .nav-close {
    display: grid;
    place-items: center;
    position: fixed;
    top: 0.9rem;
    right: var(--pad);
    width: 46px;
    height: 46px;
    color: var(--cream);
    background: none;
    z-index: 101;
  }
  .nav-close svg { width: 30px; height: 30px; }
}

/* Homepage hero-badge ('98 jaar...') mag de CTA-knoppen niet overlappen op mobiel:
   onder de inhoud plaatsen i.p.v. absoluut rechtsonder. */
@media (max-width: 700px) {
  .hero { flex-direction: column; justify-content: center; }
  .hero-content { padding-top: 7rem; }
  .hero-badge {
    position: static;
    margin: 2rem 0 1rem;
    max-width: none;
    align-self: stretch;
    backdrop-filter: none;
    background: rgba(20, 32, 29, 0.82);
  }
}

/* Drie-koloms infoblokken (paaltypes, houtsoorten op /afsluitingen) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Geschiedenis — intro + generatie-rijen stapelen op mobiel
   (anders loopt de tekstkolom buiten beeld) */
@media (max-width: 680px) {
  .hist-intro { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .gen-row {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
    padding: 1.5rem 0 !important;
  }
}

/* Tuinpoorten — vergelijkingstabel wordt gestapelde kaartjes op mobiel
   (zo blijft de 3e kolom zichtbaar i.p.v. buiten beeld) */
@media (max-width: 720px) {
  #vergelijk table,
  #vergelijk thead,
  #vergelijk tbody,
  #vergelijk tr,
  #vergelijk th,
  #vergelijk td { display: block; width: 100%; }
  #vergelijk thead { display: none; }
  #vergelijk tr { border-bottom: 1px solid var(--line); padding: 0.35rem 0; }
  #vergelijk tr:last-child { border-bottom: 0; }
  #vergelijk td { padding: 0.4rem 1.25rem !important; text-align: left; }
  #vergelijk td:first-child {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--forest-deep) !important;
    padding-top: 1rem !important;
  }
  #vergelijk td:nth-child(2)::before { content: 'Ronde palen — 5/5 cm'; }
  #vergelijk td:nth-child(3)::before { content: 'D.D. — 5/20 cm'; }
  #vergelijk td:nth-child(2)::before,
  #vergelijk td:nth-child(3)::before {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 0.15rem;
  }
}
