/* =========================================================
   DESIGN TOKENS — patrz design.md
   ========================================================= */
:root {
  /* Kolory */
  --color-deep-blade:      #1F5C3A;
  --color-natural-blade:   #3C8752;
  --color-studio-white:    #F7F8F4;
  --color-base-sand:       #C9B79C;
  --color-edge-anthracite: #20242B;
  --color-signal-lime:     #A8E063;

  /* Fonty */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-utility: 'JetBrains Mono', monospace;

  /* Skala typograficzna */
  --text-hero:    clamp(48px, 6vw, 84px);
  --text-h2:      clamp(28px, 3.5vw, 40px);
  --text-h3:      clamp(20px, 2vw, 26px);
  --text-body:    17px;
  --text-caption: 13px;

  /* Spacing */
  --section-gap:  clamp(72px, 10vw, 120px);
  --container:    1280px;
  --radius-card:  12px;
  --radius-btn:   6px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--color-studio-white);
  color: var(--color-edge-anthracite);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   TYPOGRAFIA
   ========================================================= */
.text-display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }

h2 {
  font-size: var(--text-h2);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--text-h3);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.text-utility {
  font-family: var(--font-utility);
  font-size: var(--text-caption);
  letter-spacing: 0.03em;
}

.text-caption {
  font-size: var(--text-caption);
  color: color-mix(in srgb, var(--color-edge-anthracite) 60%, transparent);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  transition: transform 0.2s var(--ease-standard),
              box-shadow 0.2s var(--ease-standard),
              background 0.2s var(--ease-standard);
}

.btn:focus-visible {
  outline: 3px solid var(--color-signal-lime);
  outline-offset: 3px;
}

/* Primary CTA — Signal Lime + donny tekst */
.btn-primary {
  background: var(--color-signal-lime);
  color: var(--color-edge-anthracite);
}
.btn-primary:hover {
  background: #b8ed72;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 224, 99, 0.35);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost button */
.btn-ghost {
  border: 1.5px solid currentColor;
  color: var(--color-edge-anthracite);
}
.btn-ghost:hover {
  background: var(--color-edge-anthracite);
  color: var(--color-studio-white);
}

/* Ghost button op donkere hero-achtergrond */
.hero-cta-group .btn-ghost {
  color: var(--color-studio-white);
  border-color: rgba(247, 248, 244, 0.45);
  background: rgba(247, 248, 244, 0.08);
}
.hero-cta-group .btn-ghost:hover {
  background: var(--color-studio-white);
  color: var(--color-edge-anthracite);
  border-color: var(--color-studio-white);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 92, 58, 0.1);
  transition: box-shadow 0.3s var(--ease-standard);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-deep-blade);
  letter-spacing: -0.02em;
}

.header-logo-icon {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.header-logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-edge-anthracite);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 1; }
.header-nav a:focus-visible {
  outline: 2px solid var(--color-deep-blade);
  outline-offset: 3px;
  border-radius: 3px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Przełącznik języka */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.lang-switch a {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--color-edge-anthracite);
  opacity: 0.5;
  transition: opacity 0.2s, background 0.2s;
}
.lang-switch a:hover { opacity: 0.8; }
.lang-switch a.active {
  opacity: 1;
  background: var(--color-deep-blade);
  color: var(--color-studio-white);
}
.lang-switch a:focus-visible {
  outline: 2px solid var(--color-deep-blade);
  outline-offset: 2px;
}

.lang-divider {
  width: 1px; height: 14px;
  background: color-mix(in srgb, var(--color-edge-anthracite) 25%, transparent);
}

/* Hamburger mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(31, 92, 58, 0.08); }
.menu-toggle:focus-visible {
  outline: 2px solid var(--color-deep-blade);
  outline-offset: 2px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-edge-anthracite);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-standard), opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--color-studio-white);
  border-bottom: 1px solid rgba(31, 92, 58, 0.1);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(31, 92, 58, 0.08);
  color: var(--color-edge-anthracite);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--color-deep-blade); padding-left: 16px; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn-primary { margin-top: 12px; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: 68px;
  overflow: hidden;
  background: linear-gradient(160deg, #142a1c 0%, var(--color-edge-anthracite) 55%, #16301f 100%);
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-decor-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-decor-glow-a {
  width: 560px; height: 560px;
  top: -220px; right: -160px;
  background: var(--color-signal-lime);
  opacity: 0.16;
}

.hero-decor-glow-b {
  width: 440px; height: 440px;
  bottom: -180px; left: -140px;
  background: var(--color-natural-blade);
  opacity: 0.22;
}

.hero-decor-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(247, 248, 244, 0.035) 0px,
    rgba(247, 248, 244, 0.035) 2px,
    transparent 2px,
    transparent 64px
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-block: clamp(64px, 10vw, 104px);
  color: var(--color-studio-white);
}

.hero-content {
  position: relative;
  max-width: 560px;
  color: var(--color-studio-white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-signal-lime);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-signal-lime);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--color-studio-white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-headline em {
  font-style: normal;
  color: var(--color-signal-lime);
}

.hero-subline {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(247, 248, 244, 0.75);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 248, 244, 0.14);
  opacity: 0;
  transform: translateY(12px);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-size: 12.5px;
  color: rgba(247, 248, 244, 0.72);
}

.hero-trust-item svg {
  width: 15px; height: 15px;
  color: var(--color-signal-lime);
  flex-shrink: 0;
}

/* Visual — grote projectfoto + detailfoto + badge */
.hero-visual {
  position: relative;
}

.hero-visual-main {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(247, 248, 244, 0.06);
}

.hero-visual-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-visual-badge {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 210px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-edge-anthracite);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.35;
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.4);
}

.hero-visual-badge svg {
  width: 18px; height: 18px;
  color: var(--color-deep-blade);
  flex-shrink: 0;
}

.hero-visual-thumb {
  position: absolute;
  left: -28px; bottom: -28px;
  width: clamp(130px, 32%, 180px);
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--color-studio-white);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-visual-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Animacje wejścia hero (JS dodaje klasę .is-visible) */
@media (prefers-reduced-motion: no-preference) {
  .hero-content.is-visible .hero-eyebrow {
    animation: fadeUp 0.7s var(--ease-out-expo) 0.5s forwards;
  }
  .hero-content.is-visible .hero-headline {
    animation: fadeUp 0.8s var(--ease-out-expo) 0.65s forwards;
  }
  .hero-content.is-visible .hero-subline {
    animation: fadeUp 0.7s var(--ease-out-expo) 0.85s forwards;
  }
  .hero-content.is-visible .hero-cta-group {
    animation: fadeUp 0.7s var(--ease-out-expo) 1.0s forwards;
  }
  .hero-content.is-visible .hero-trust-row {
    animation: fadeUp 0.7s var(--ease-out-expo) 1.15s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(var(--ty, 16px)); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-headline, .hero-subline, .hero-cta-group, .hero-trust-row {
    opacity: 1; transform: none;
  }
}

/* =========================================================
   SEKCJA OGÓLNA — fade-in przy scrollu
   ========================================================= */
.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}
.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   PASEK PRZEJŚCIA — sygnaturowy element rolki (między hero a trawami)
   ========================================================= */
.roll-transition {
  height: 6px;
  background: var(--color-deep-blade);
  position: relative;
  overflow: visible;
}

.roll-transition::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--color-deep-blade);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--color-studio-white), 0 0 0 6px var(--color-deep-blade);
}

/* =========================================================
   SEKCJA: RODZAJE TRAWY
   ========================================================= */
.grass-types {
  padding-block: var(--section-gap);
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 640px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* Deep Blade op Studio White = 7.37:1 — WCAG AA ✓ */
  color: var(--color-deep-blade);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--color-deep-blade);
  border-radius: 2px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  color: color-mix(in srgb, var(--color-edge-anthracite) 65%, transparent);
  font-size: 17px;
  line-height: 1.65;
}

/* Carousel wrapper */
.grass-carousel {
  position: relative;
}

/* Fade-out hint aan de rechterkant */
.grass-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 60px; /* boven de nav-knoppen */
  width: 72px;
  background: linear-gradient(to right, transparent, var(--color-studio-white));
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.25s;
}
.grass-carousel.is-at-end::after { opacity: 0; }

/* Scrollbare kaartbaan */
.grass-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.grass-grid::-webkit-scrollbar { display: none; }

/* Navigatieknoppen onder de baan */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 92, 58, 0.2);
  background: var(--color-studio-white);
  color: var(--color-deep-blade);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s,
              box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--color-deep-blade);
  color: var(--color-studio-white);
  border-color: var(--color-deep-blade);
  box-shadow: 0 4px 16px rgba(31,92,58,0.2);
}
.carousel-btn:focus-visible {
  outline: 2px solid var(--color-deep-blade);
  outline-offset: 2px;
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-scroll-hint {
  font-family: var(--font-utility);
  font-size: 11px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 40%, transparent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: auto;
}

/* Footer onder de grass-carousel: tip + "Bekijk alle soorten" knop */
.grass-types-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.grass-types-tip {
  font-size: 14px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 55%, transparent);
  margin: 0;
  flex: 1 1 200px;
}

.grass-types-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.grass-card {
  min-width: 264px;
  width: 264px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--color-studio-white);
  border: 1.5px solid rgba(31, 92, 58, 0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo),
              border-color 0.3s;
  cursor: pointer;
}

.grass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31, 92, 58, 0.15);
  border-color: var(--color-natural-blade);
}

.grass-card:focus-within {
  outline: 2px solid var(--color-deep-blade);
  outline-offset: 3px;
}

/* Swatch koloru/tekstury trawy */
.grass-swatch {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: var(--color-deep-blade);
}

.grass-swatch-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback CSS texture gdy brak zdjęcia */
.grass-swatch[data-texture] {
  background: repeating-linear-gradient(
    180deg,
    var(--swatch-dark, #1F5C3A) 0px,
    var(--swatch-dark, #1F5C3A) 2px,
    var(--swatch-light, #2E7A4F) 2px,
    var(--swatch-light, #2E7A4F) 5px
  );
}

.grass-swatch-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(32, 36, 43, 0.75);
  color: var(--color-studio-white);
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.grass-card-body {
  padding: 20px;
}

.grass-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-deep-blade);
  margin-bottom: 4px;
}

.grass-card-tagline {
  font-size: 13px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 60%, transparent);
  margin-bottom: 16px;
}

.grass-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.grass-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.grass-spec-label {
  font-size: 10px;
  font-family: var(--font-utility);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-edge-anthracite) 45%, transparent);
}

.grass-spec-value {
  font-family: var(--font-utility);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-edge-anthracite);
}

.grass-spec-value.price {
  font-size: 17px;
  color: var(--color-deep-blade);
  font-weight: 400;
}

/* Pasek miękkości */
.softness-bar {
  height: 4px;
  background: rgba(31, 92, 58, 0.12);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.softness-fill {
  height: 100%;
  background: linear-gradient(to right, var(--color-deep-blade), var(--color-natural-blade));
  border-radius: 4px;
  width: var(--softness, 60%);
}

.grass-card-cta {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1.5px solid var(--color-deep-blade);
  color: var(--color-deep-blade);
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.grass-card-cta:hover, .grass-card-cta:focus-visible {
  background: var(--color-deep-blade);
  color: var(--color-studio-white);
}

.grass-card-cta:focus-visible {
  outline: 2px solid var(--color-signal-lime);
  outline-offset: 2px;
}

/* =========================================================
   SEKCJA: DLACZEGO SZTUCZNA TRAWA
   ========================================================= */
.why-section {
  padding-block: var(--section-gap);
  background: var(--color-edge-anthracite);
  color: var(--color-studio-white);
}

.why-section .section-label { color: var(--color-signal-lime); }
.why-section .section-label::before { background: var(--color-signal-lime); }
.why-section h2 { color: var(--color-studio-white); }
.why-section .section-header p { color: rgba(247, 248, 244, 0.65); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* Op desktop: vergelijkingstabel rekt uit tot dezelfde hoogte als de linkerkolom (kaarten) */
@media (min-width: 1025px) {
  .why-layout { align-items: stretch; }
  .why-layout > div:last-child { display: flex; flex-direction: column; }
  .why-layout > div:last-child .compare-table { flex: 1; display: flex; flex-direction: column; }
  .why-layout > div:last-child .compare-row { flex: 1; }
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  transition: background 0.3s;
}

.why-card:hover { background: rgba(255, 255, 255, 0.08); }

.why-card-icon {
  width: 40px; height: 40px;
  background: rgba(168, 224, 99, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--color-signal-lime);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card-text h3 {
  font-size: 16px;
  color: var(--color-studio-white);
  margin-bottom: 4px;
}

.why-card-text p {
  font-size: 14px;
  color: rgba(247, 248, 244, 0.6);
  line-height: 1.55;
}

/* Tabela porównawcza */
.compare-table {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-header-cell {
  padding: 16px 18px;
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-header-cell:first-child { color: rgba(247, 248, 244, 0.4); text-align: center; }
.compare-header-cell.ours {
  color: var(--color-signal-lime);
  text-align: center;
  background: rgba(168, 224, 99, 0.1);
  border-inline: 1px solid rgba(168, 224, 99, 0.2);
}
.compare-header-cell.natural { color: rgba(247, 248, 244, 0.5); text-align: center; }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}
.compare-row:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255, 255, 255, 0.045); }

.compare-cell {
  padding: 16px 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-cell:first-child {
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(247, 248, 244, 0.85);
  font-family: var(--font-body);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.compare-cell.ours {
  background: rgba(168, 224, 99, 0.06);
  border-inline: 1px solid rgba(168, 224, 99, 0.14);
}

.check-yes {
  width: 26px; height: 26px;
  background: rgba(168, 224, 99, 0.18);
  border: 1px solid rgba(168, 224, 99, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(168, 224, 99, 0.15);
}
.check-yes svg { width: 13px; height: 13px; stroke: var(--color-signal-lime); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.check-no {
  width: 26px; height: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-no svg { width: 11px; height: 11px; stroke: rgba(247, 248, 244, 0.28); fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* =========================================================
   SEKCJA: MONTAŻ 01–04
   ========================================================= */
.install-section {
  padding-block: var(--section-gap);
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 56px;
}

/* Linia łącząca kroki */
.install-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 2px;
  background: linear-gradient(to right, var(--color-deep-blade), var(--color-natural-blade));
  z-index: 0;
}

.install-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.install-step-number {
  width: 56px; height: 56px;
  background: var(--color-deep-blade);
  color: var(--color-signal-lime);
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--color-studio-white), 0 0 0 8px rgba(31, 92, 58, 0.2);
  transition: transform 0.3s var(--ease-out-expo);
}

.install-step:hover .install-step-number {
  transform: scale(1.1);
}

.install-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--color-deep-blade);
}

.install-step p {
  font-size: 14px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 60%, transparent);
  line-height: 1.6;
}

/* =========================================================
   SEKCJA: REALIZACJE
   ========================================================= */
.projects-section {
  padding-block: var(--section-gap);
  background: var(--color-base-sand);
  background: linear-gradient(to bottom, var(--color-studio-white), rgba(201, 183, 156, 0.18));
}

/* Iets minder ruimte tussen het installatieproces en de fotogalerij op desktop */
@media (min-width: 1025px) {
  .projects-section {
    padding-top: calc(var(--section-gap) * 0.65);
  }
}

.projects-carousel {
  position: relative;
  margin-top: 40px;
  max-width: 620px;
  margin-inline: auto;
}

.projects-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-track::-webkit-scrollbar { display: none; }

.project-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 21/20;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.project-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out-expo);
}
.project-item:hover img { transform: scale(1.02); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 22, 17, 0.85) 0%, rgba(15, 22, 17, 0.25) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.project-item:hover .project-overlay,
.project-item:focus-visible .project-overlay { opacity: 1; }

.project-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-studio-white);
}

.project-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-signal-lime);
  flex-shrink: 0;
}

.projects-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

.projects-footer-tip {
  font-size: 15px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 65%, transparent);
  margin: 0;
  flex: 1 1 280px;
}

.projects-footer .btn {
  flex-shrink: 0;
}

.project-item:focus-visible {
  outline: 3px solid var(--color-signal-lime);
  outline-offset: 3px;
}

/* =========================================================
   LIGHTBOX — foto's uit de galerij vergroot bekijken
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 16, 13, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out-expo);
  padding: clamp(16px, 5vw, 56px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out-expo);
}

.lightbox.is-open .lightbox-stage {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: min(78vh, 780px);
  width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-studio-white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(247, 248, 244, 0.1);
  color: var(--color-studio-white);
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(247, 248, 244, 0.2);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--color-signal-lime);
  outline-offset: 2px;
}

.lightbox-close {
  top: clamp(8px, 3vw, 24px);
  right: clamp(8px, 3vw, 24px);
  width: 44px; height: 44px;
}
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-nav svg { width: 20px; height: 20px; }

.lightbox-prev { left: clamp(4px, 2vw, 24px); }
.lightbox-next { right: clamp(4px, 2vw, 24px); }

.lightbox-counter {
  position: absolute;
  top: clamp(8px, 3vw, 24px);
  left: clamp(8px, 3vw, 24px);
  color: rgba(247, 248, 244, 0.7);
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-stage, .lightbox-nav { transition: none; }
}

/* =========================================================
   SEKCJA: OPINIE
   ========================================================= */
.reviews-section {
  padding-block: var(--section-gap);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--color-studio-white);
  border: 1.5px solid rgba(31, 92, 58, 0.1);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(31, 92, 58, 0.2);
  box-shadow: 0 8px 32px rgba(31, 92, 58, 0.08);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars svg {
  width: 16px; height: 16px;
  fill: var(--color-signal-lime);
  stroke: none;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-edge-anthracite);
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-deep-blade), var(--color-natural-blade));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-studio-white);
  flex-shrink: 0;
}

.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-edge-anthracite);
}
.review-location {
  font-size: 12px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 50%, transparent);
}

/* =========================================================
   SEKCJA: FORMULARZ OFERTY
   ========================================================= */
.quote-section {
  padding-block: var(--section-gap);
  background: var(--color-deep-blade);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,224,99,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.quote-intro { color: var(--color-studio-white); }
.quote-intro .section-label { color: var(--color-signal-lime); }
.quote-intro .section-label::before { background: var(--color-signal-lime); }
.quote-intro h2 { margin-bottom: 16px; }
.quote-intro p { color: rgba(247, 248, 244, 0.7); font-size: 16px; line-height: 1.7; }

.quote-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(247, 248, 244, 0.7);
}

.trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--color-signal-lime);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Formularz */
.quote-form {
  background: var(--color-studio-white);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 24px; }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-edge-anthracite);
  margin-bottom: 6px;
}

.form-label .req {
  color: var(--color-deep-blade);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-studio-white);
  border: 1.5px solid rgba(31, 92, 58, 0.2);
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-edge-anthracite);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-deep-blade);
  box-shadow: 0 0 0 3px rgba(31, 92, 58, 0.12);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--color-signal-lime);
  outline-offset: 2px;
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-textarea { resize: vertical; min-height: 100px; line-height: 1.55; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2320242B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1.5px dashed rgba(31, 92, 58, 0.25);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 60%, transparent);
  transition: border-color 0.2s, background 0.2s;
}
.form-file-label:hover {
  border-color: var(--color-deep-blade);
  background: rgba(31, 92, 58, 0.03);
  color: var(--color-deep-blade);
}

.form-file-label svg {
  width: 18px; height: 18px;
  stroke: var(--color-natural-blade);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.form-file-input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.form-file-name { font-size: 12px; font-family: var(--font-utility); }

.form-error {
  display: none;
  font-size: 12px;
  color: #C0392B;
  margin-top: 5px;
}

.form-error.is-visible { display: block; }

/* Honeypot — ukryty przed użytkownikiem, widoczny dla botów */
.form-honeypot { display: none; }

.form-submit { width: 100%; font-size: 16px; padding: 16px; }

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 50%, transparent);
  text-align: center;
  line-height: 1.55;
}

/* Stan sukcesu formularza */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-visible { display: block; }

.success-icon {
  width: 56px; height: 56px;
  background: rgba(31, 92, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--color-deep-blade);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-deep-blade);
}

.form-success p { font-size: 15px; color: color-mix(in srgb, var(--color-edge-anthracite) 65%, transparent); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-edge-anthracite);
  color: var(--color-studio-white);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .header-logo {
  color: var(--color-studio-white);
  margin-bottom: 16px;
}

.footer-brand .header-logo-icon { background: rgba(255,255,255,0.08); }

.footer-tagline {
  font-size: 14px;
  color: rgba(247, 248, 244, 0.5);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-link:hover { background: rgba(255,255,255,0.12); }
.social-link:focus-visible {
  outline: 2px solid var(--color-signal-lime);
  outline-offset: 2px;
}
.social-link svg { width: 16px; height: 16px; stroke: rgba(247,248,244,0.7); fill: none; stroke-width: 1.75; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 248, 244, 0.4);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(247, 248, 244, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-studio-white); }
.footer-links a:focus-visible {
  outline: 2px solid var(--color-signal-lime);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(247, 248, 244, 0.6);
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 15px; height: 15px;
  stroke: var(--color-natural-blade);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 24px;
}

.footer-bottom-text {
  font-size: 13px;
  color: rgba(247, 248, 244, 0.35);
}

.footer-bottom-text a { color: rgba(247, 248, 244, 0.5); transition: color 0.2s; }
.footer-bottom-text a:hover { color: var(--color-studio-white); }

.footer-lang {
  display: flex;
  gap: 8px;
}

.footer-lang a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  color: rgba(247, 248, 244, 0.4);
  transition: color 0.2s, background 0.2s;
}

.footer-lang a:hover { color: var(--color-studio-white); }
.footer-lang a.active {
  color: var(--color-edge-anthracite);
  background: var(--color-signal-lime);
}

/* =========================================================
   RESPONSYWNOŚĆ
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { display: contents; }
  .hero-text-top { order: 1; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: 2; }
  .hero-text-bottom { order: 3; }

  .why-layout { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .install-steps::before { display: none; }
  .install-steps { gap: 24px; }
  .install-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
  .install-step-number { margin-bottom: 0; }
}

/* Header schakelt over naar hamburgermenu ruim vóór de navigatie + CTA
   gaan overlappen/wrappen (bij lange bedrijfsnaam anders al rond 1230px) */
@media (max-width: 1260px) {
  .header-nav { display: none; }
  .header-right .btn { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }

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

  .compare-header-cell, .compare-cell { padding: 10px 10px; font-size: 12px; }

  .hero-trust-row { gap: 12px 20px; }
  .hero-visual-thumb { left: -16px; bottom: -16px; width: 120px; }
  .hero-visual-badge { max-width: 180px; font-size: 12px; padding: 10px 14px; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .grass-card { min-width: 240px; width: 240px; }
  .carousel-nav { display: none; }
  .grass-carousel::after { width: 40px; }

  .hero-visual-thumb { display: none; }
  .hero-visual-badge { top: 14px; right: 14px; }
}

/* =========================================================
   PODSTRONY PRODUKTOWE (Amsterdam / London / Dubai / Ibiza)
   ========================================================= */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(247, 248, 244, 0.6);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(247, 248, 244, 0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--color-studio-white); }
.breadcrumb a:focus-visible { outline: 2px solid var(--color-signal-lime); outline-offset: 2px; border-radius: 3px; }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: rgba(247, 248, 244, 0.9); }

/* Hero produktu */
.product-hero {
  position: relative;
  min-height: 70vh;
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--color-edge-anthracite);
}

.product-hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

/* ============================================================
   PRODUCT FOTO SLIDER
   ============================================================ */
.product-gallery {
  margin-top: 40px;
}

.product-gallery--top {
  margin-top: 0;
  margin-bottom: 0;
}

/* Slider + beschrijving links, specs rechts */
.product-top-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.product-left-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Slider wrapper */
.gallery-slider {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-edge-anthracite);
  user-select: none;
}

/* Track */
.gallery-slider-track {
  display: flex;
  transition: transform 0.45s var(--ease-out-expo);
  will-change: transform;
}

/* Één slide */
.gallery-slide {
  min-width: 100%;
  height: 460px;
  flex-shrink: 0;
  cursor: zoom-in;
  line-height: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Pijlknoppen */
.gallery-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 12, 8, 0.50);
  color: var(--color-studio-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.gallery-slider-btn:hover  { background: rgba(10, 12, 8, 0.80); }
.gallery-slider-btn:focus-visible { outline: 2px solid var(--color-signal-lime); outline-offset: 2px; }
.gallery-slider-btn--prev  { left: 12px; }
.gallery-slider-btn--next  { right: 12px; }

/* Teller "1 / 4" */
.gallery-slider-counter {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(247, 248, 244, 0.9);
  background: rgba(10, 12, 8, 0.50);
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Dot-indicators */
.gallery-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-deep-blade) 25%, transparent);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-dot.is-active {
  background: var(--color-deep-blade);
  transform: scale(1.5);
}
.gallery-dot:focus-visible { outline: 2px solid var(--color-deep-blade); outline-offset: 3px; }

/* Lightbox overlay */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 12, 8, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.gallery-lightbox.is-open { display: flex; }

.gallery-lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.6);
  cursor: default;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(247,248,244,0.12);
  border: none;
  color: var(--color-studio-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gallery-lightbox-close:hover  { background: rgba(247,248,244,0.22); }
.gallery-lightbox-close:focus-visible { outline: 2px solid var(--color-signal-lime); outline-offset: 2px; }

/* Lightbox navigatiepijlen */
.gallery-lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(247,248,244,0.2);
  background: rgba(247,248,244,0.08);
  color: var(--color-studio-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gallery-lightbox-btn:hover  { background: rgba(247,248,244,0.18); }
.gallery-lightbox-btn:focus-visible { outline: 2px solid var(--color-signal-lime); outline-offset: 2px; }
.gallery-lightbox-btn--prev { left: 20px; }
.gallery-lightbox-btn--next { right: 20px; }

@media (max-width: 600px) {
  .gallery-slide { height: 260px; }
  .gallery-lightbox-btn { display: none; }
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(32,36,43,0.1) 0%, rgba(32,36,43,0.65) 100%);
  z-index: 1;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(40px, 6vw, 80px);
  color: var(--color-studio-white);
  max-width: 740px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(168, 224, 99, 0.15);
  color: var(--color-signal-lime);
  border: 1px solid rgba(168, 224, 99, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.product-hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.product-hero-tagline {
  font-size: 18px;
  color: rgba(247, 248, 244, 0.75);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 520px;
}

.product-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.product-spec-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: rgba(247, 248, 244, 0.9);
}

.product-spec-pill strong {
  font-family: var(--font-utility);
  font-weight: 400;
  color: var(--color-signal-lime);
}

/* Sekcja główna produktu */
.product-detail {
  padding-block: var(--section-gap);
}

.product-page-header {
  padding-bottom: 32px;
}

.product-page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--color-deep-blade);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Breadcrumb op lichte achtergrond */
.breadcrumb--light a,
.breadcrumb--light .breadcrumb-current {
  color: color-mix(in srgb, var(--color-edge-anthracite) 55%, transparent);
}
.breadcrumb--light a:hover { color: var(--color-deep-blade); }

/* Badge inline naast h1 */
.product-badge--inline {
  font-size: 12px;
  font-family: var(--font-utility);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 100px;
  background: #2A6845;
  color: #fff;
  white-space: nowrap;
  margin-left: 10px;
  margin-top: 18px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.product-description h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
  color: var(--color-deep-blade);
}

.product-description p {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--color-edge-anthracite) 78%, transparent);
  margin-bottom: 24px;
}

.product-description h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--color-edge-anthracite);
}

.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-edge-anthracite) 78%, transparent);
}

.product-feature-icon {
  width: 22px; height: 22px;
  background: rgba(31, 92, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-feature-icon svg {
  width: 12px; height: 12px;
  stroke: var(--color-deep-blade);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Toepassingen (chips) */
.applications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 32px;
}

.application-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(31, 92, 58, 0.07);
  border: 1.5px solid rgba(31, 92, 58, 0.15);
  border-radius: 100px;
  font-size: 13px;
  color: var(--color-deep-blade);
  font-family: var(--font-display);
  font-weight: 500;
}

/* Spec panel (rechterkant) */
.product-specs-panel {
  position: sticky;
  top: 88px;
}

.specs-card {
  background: var(--color-edge-anthracite);
  border-radius: var(--radius-card);
  padding: 28px;
  color: var(--color-studio-white);
}

.specs-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 248, 244, 0.45);
  margin-bottom: 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 12px;
}
.spec-row:last-of-type { border-bottom: none; }

.spec-row-label {
  font-size: 13px;
  color: rgba(247, 248, 244, 0.55);
  flex-shrink: 0;
}

.spec-row-value {
  font-family: var(--font-utility);
  font-size: 14px;
  color: var(--color-studio-white);
  text-align: right;
}

.spec-row-value.highlight {
  color: var(--color-signal-lime);
  font-size: 16px;
}

/* Softness bar in specs panel */
.spec-softness {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.spec-softness-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(247, 248, 244, 0.55);
}
.spec-softness-label span:last-child {
  font-family: var(--font-utility);
  color: var(--color-studio-white);
}
.spec-softness-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.spec-softness-fill {
  height: 100%;
  background: linear-gradient(to right, var(--color-deep-blade), var(--color-signal-lime));
  border-radius: 5px;
  width: var(--softness, 60%);
}

.specs-card-cta {
  margin-top: 24px;
  display: block;
  width: 100%;
  text-align: center;
}

/* Certificaten badges */
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cert-badge {
  font-size: 11px;
  font-family: var(--font-utility);
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(168, 224, 99, 0.12);
  color: var(--color-signal-lime);
  border: 1px solid rgba(168, 224, 99, 0.2);
}

/* Product nav — andere soorten */
.other-products {
  padding-block: clamp(48px, 6vw, 72px);
  background: linear-gradient(to bottom, rgba(201,183,156,0.12), var(--color-studio-white));
}

.other-products h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 24px;
  color: var(--color-edge-anthracite);
}

.other-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.other-product-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid rgba(31, 92, 58, 0.1);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--color-edge-anthracite);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out-expo);
}
.other-product-card:hover {
  border-color: var(--color-natural-blade);
  box-shadow: 0 6px 20px rgba(31,92,58,0.1);
  transform: translateY(-2px);
}
.other-product-card:focus-visible {
  outline: 2px solid var(--color-deep-blade);
  outline-offset: 3px;
}

.other-product-swatch {
  width: 40px; height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
}

.other-product-info { display: flex; flex-direction: column; gap: 2px; }
.other-product-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-blade);
}
.other-product-mm {
  font-family: var(--font-utility);
  font-size: 11px;
  color: color-mix(in srgb, var(--color-edge-anthracite) 50%, transparent);
}

/* Responsywność podstron produktowych */
@media (max-width: 768px) {
  .product-layout,
  .product-top-row {
    grid-template-columns: 1fr;
  }
  .product-specs-panel { position: static; }
  .specs-card { max-width: 480px; }
}

@media (max-width: 768px) {
  .product-quick-specs { gap: 8px; }
  .product-spec-pill { font-size: 12px; padding: 5px 10px; }
  .product-hero h1 { font-size: clamp(36px, 8vw, 56px); }
}

/* Kaart actie-links (Meer info + Offerte) */
.grass-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.grass-card-link {
  flex: 1;
  padding: 11px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: block;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.grass-card-link.primary {
  background: var(--color-deep-blade);
  color: var(--color-studio-white);
  border: 1.5px solid var(--color-deep-blade);
}
.grass-card-link.primary:hover { background: #174a2d; }
.grass-card-link.primary:focus-visible { outline: 2px solid var(--color-signal-lime); outline-offset: 2px; }

.grass-card-link.ghost {
  background: transparent;
  border: 1.5px solid rgba(31, 92, 58, 0.3);
  color: var(--color-deep-blade);
}
.grass-card-link.ghost:hover { border-color: var(--color-deep-blade); background: rgba(31,92,58,0.05); }
.grass-card-link.ghost:focus-visible { outline: 2px solid var(--color-deep-blade); outline-offset: 2px; }
