/* ============================================================
   ZONWERING VISION — Main Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #A8883C;
  --black:      #0A0A0A;
  --dark:       #111111;
  --card:       #1A1A1A;
  --border:     #2A2A2A;
  --white:      #FFFFFF;
  --grey:       #888888;
  --light-grey: #CCCCCC;
  --max-w:      1200px;
  --nav-h:      80px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.gold { color: var(--gold); }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem 0 1.75rem;
}
.gold-line.center { margin: 0.75rem auto 1.75rem; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background 0.3s;
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img { height: 54px; width: auto; mix-blend-mode: screen; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }
.nav-logo-text .sub { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 2px; }

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta { margin-left: 1.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem 1rem;
  z-index: 999;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  /*
   * === HERO BACKGROUND ===
   * Placeholder gradient is active now.
   * When client photos arrive, replace with:
   *   background-image: url('images/hero-bg.jpg');
   *   background-size: cover;
   *   background-position: center;
   * Then change ::before to: background: rgba(0, 0, 0, 0.65);
   */
  /* TO SWAP HERO PHOTO: change the url() below */
  background-image: url('../images/hero-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-color: var(--black);
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-logo-wrap {
  margin-bottom: 2rem;
}
.hero-logo-wrap img {
  width: 160px;
  height: auto;
  margin: 0 auto;
  mix-blend-mode: screen;
}

.hero h1 { margin-bottom: 1rem; }

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.hero-sub {
  color: var(--grey);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

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

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.scroll-hint::after { content: ''; display: block; width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   SERVICES STRIP — Home
   ============================================================ */
.services-strip {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.services-strip .section-header { text-align: center; margin-bottom: 2.5rem; }

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display:flex; align-items:center; justify-content:center; }
.service-card h3 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--gold); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.service-card p { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }

/* ============================================================
   WORK TEASER — Home
   ============================================================ */
.work-teaser { background: var(--black); }

.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.teaser-tile {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  transition: border-color 0.3s;
}
.teaser-tile:hover { border-color: var(--gold); }
.teaser-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.teaser-tile:hover img { transform: scale(1.05); }

.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--grey); font-size: 0.8rem; letter-spacing: 0.05em;
}
.photo-placeholder svg { width: 36px; height: 36px; stroke: var(--gold); opacity: 0.4; fill: none; stroke-width: 1.5; }

.section-cta { margin-top: 0.5rem; }

/* ============================================================
   ABOUT TEASER — Home
   ============================================================ */
.about-teaser {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p { color: var(--light-grey); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }

.about-logo img { max-width: 260px; width: 100%; margin: 0 auto; opacity: 0.9; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--card);
  border-top: 1px solid rgba(201,168,76,0.4);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p { color: var(--grey); margin: 0 auto 2rem; max-width: 480px; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--dark);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { color: var(--grey); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   DIENSTEN PAGE
   ============================================================ */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.dienst-card:first-child { grid-column: 1 / -1; }

.dienst-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.dienst-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.dienst-icon { font-size: 2.25rem; margin-bottom: 1rem; display:flex; align-items:center; justify-content:center; }
.dienst-card h3 { color: var(--gold); font-size: 1.25rem; margin-bottom: 0.75rem; }
.dienst-card p { color: var(--light-grey); line-height: 1.8; }

/* ============================================================
   ONS WERK PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s;
}
.gallery-item:hover { border-color: var(--gold); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }

.gallery-zoom-icon {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: var(--white);
  font-size: 2.25rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.lightbox-close:hover { color: var(--gold); }

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.over-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.over-text p { color: var(--light-grey); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }

.over-logo img { max-width: 260px; width: 100%; margin: 0 auto; }

.values-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; display:flex; align-items:center; justify-content:center; }
.value-card h3 { color: var(--gold); margin-bottom: 0.75rem; font-size: 1.1rem; }
.value-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; }

.team-section { background: var(--black); }

.team-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 220px;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  margin: 0 auto 1rem;
  object-fit: cover;
}

.team-avatar-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  background: var(--border);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--grey);
}

.team-card .name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--gold); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-col h2 { margin-bottom: 0.5rem; }
.contact-form-col > p { color: var(--grey); margin-bottom: 2rem; font-size: 0.95rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: 0.8rem; color: var(--grey); margin-top: 1rem; }

.contact-info-col h2 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-of-type { padding-top: 0; }
.contact-item:last-of-type { border-bottom: none; }

.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; display:flex; align-items:center; justify-content:center; }

.contact-item-body .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.3rem;
}
.contact-item-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
  display: block;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.contact-item-body a:hover { color: var(--gold-light); }
.contact-item-body p { color: var(--light-grey); font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-logo { height: 56px; width: auto; margin-bottom: 1rem; mix-blend-mode: screen; }

.footer-brand p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--grey); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--grey); }
.footer-contact-item a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--grey);
  font-size: 0.78rem;
}

.footer-bottom a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 3.5rem 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-logo-wrap img { width: 120px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .teaser-grid { grid-template-columns: 1fr 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-logo { display: none; }

  .diensten-grid { grid-template-columns: 1fr; }
  .dienst-card:first-child { grid-column: auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .over-intro { grid-template-columns: 1fr; gap: 2rem; }
  .over-logo { display: none; }

  .values-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT HERO — Two-column impact header
   ============================================================ */
.contact-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  border-bottom: 1px solid var(--border);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-hero-left h1 { margin-bottom: 0.75rem; }
.contact-hero-left p  { color: var(--grey); font-size: 1.05rem; max-width: 420px; margin-top: 0.5rem; }

.contact-quick-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: border-color 0.3s, transform 0.25s;
}
.contact-quick-card:last-child { margin-bottom: 0; }
.contact-quick-card:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}

.cq-icon { font-size: 1.75rem; flex-shrink: 0; display:flex; align-items:center; justify-content:center; }

.cq-text .cq-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.2rem;
}
.cq-text .cq-value {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-quick-card:hover .cq-value { color: var(--gold); }

@media (max-width: 768px) {
  .contact-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-hero-left p { max-width: 100%; }
}

/* ============================================================
   PRODUCT CATALOGUE — Buiten & Binnen Zonwering
   ============================================================ */
.product-section {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.product-section:nth-of-type(even) { background: var(--dark); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.product-icon { font-size: 1.75rem; margin-bottom: 0.6rem; display:flex; align-items:center; justify-content:center; }
.product-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.product-card p { font-size: 0.75rem; color: var(--grey); line-height: 1.5; }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

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