/* ═══════════════════════════════════
   PAGE-SPECIFIC — Natuurlijk.fit
═══════════════════════════════════ */

/* ── HOME: Hero ── */

.hero {
  background: var(--deep);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,183,136,.3), transparent);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 2;
  animation: fadeInUp .8s var(--ease-out) both;
  max-width: 620px;
}

/* Video achtergrond */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Donkere overlay over de video zodat tekst leesbaar blijft */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(27,67,50,.88) 0%, rgba(27,67,50,.7) 40%, rgba(27,67,50,.35) 100%),
    linear-gradient(180deg, rgba(27,67,50,.3) 0%, transparent 30%, transparent 70%, rgba(27,67,50,.5) 100%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: var(--sp-8);
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--acc);
  border-radius: 1px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: var(--sp-6);
}

.hero h1 em {
  color: var(--acc);
  font-style: italic;
}

.hero__desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 240, 232, .82);
  max-width: 480px;
  margin-bottom: var(--sp-8);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  animation: fadeInUp .8s var(--ease-out) .3s both;
}

/* Hero right side — visual */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s var(--ease-out) .4s both;
}


/* ── HOME: Product categories ── */

.categories-section .grid-5 {
  gap: var(--sp-4);
}

.categories-section .card {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/* ── HOME: Professionals dark section ── */

.pro-section {
  background: var(--deep);
  color: var(--cream);
}

.pro-section .section-label {
  color: var(--acc);
}

.pro-section h2 {
  color: var(--cream);
}

.pro-section h2 em {
  color: var(--acc);
  font-style: italic;
}

.pro-section p {
  color: rgba(245, 240, 232, .55);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: var(--sp-4);
}

.pro-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}

.pro-feature:first-child {
  border-top: 1px solid rgba(255,255,255,.08);
}

.pro-dot {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.pro-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--acc);
  border-radius: 50%;
}

.pro-feature__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.pro-feature__desc {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, .45);
  font-weight: 400;
  line-height: 1.55;
}

/* ── HOME: Quality section ── */

.quality-section {
  background: var(--pale);
}

/* ── SHOP: Product grid ── */

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ── PRODUCT DETAIL ── */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.product-visual {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-6));
}

.product-detail__cats {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.product-detail__name {
  font-family: var(--heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.product-detail__sub {
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 400;
  margin-bottom: var(--sp-6);
}

.product-detail__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: var(--sp-4);
}

.product-detail__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--sp-6) 0;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-detail__price {
  font-family: var(--heading);
  font-size: var(--text-2xl);
  color: var(--deep);
  font-weight: 500;
}

.product-specs {
  margin-top: var(--sp-6);
}

.product-specs__label {
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.product-specs__row {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 2.2;
  font-weight: 400;
}

.product-specs__row strong {
  color: var(--deep);
}

/* ── VOOR THERAPEUTEN ── */

.ther-hero {
  background: var(--deep);
  padding: var(--sp-24) var(--gutter);
  text-align: center;
}

.ther-hero h1 {
  color: var(--cream);
  margin: 0 auto var(--sp-4);
  max-width: 680px;
}

.ther-hero .lead {
  color: rgba(245, 240, 232, .55);
  margin: 0 auto var(--sp-8);
  text-align: center;
}

.ther-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.process-step {
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  border-right: 1px solid var(--border);
}

.process-step:last-child {
  border-right: none;
}

.process-step__num {
  font-family: var(--heading);
  font-size: 2.8rem;
  color: var(--border);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.process-step__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: var(--sp-1);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
}

/* ── OVER ONS ── */

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: var(--sp-16);
  align-items: start;
}

.founder-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pale) 0%, var(--border) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-initials {
  font-family: var(--heading);
  font-size: 3.5rem;
  color: var(--deep);
  opacity: .35;
  font-weight: 300;
}

.founder-role {
  font-size: var(--text-sm);
  color: var(--acc);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-6);
}

.founder-bio {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:first-child {
  border-top: 1px solid var(--border);
}

.timeline__year {
  font-family: var(--heading);
  font-size: var(--text-lg);
  color: var(--acc);
  font-weight: 500;
  padding-top: 2px;
}

.timeline__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 2px;
}

.timeline__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ── CONTACT ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
}

/* ── RESPONSIVE: Pages ── */

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--sp-16) var(--gutter) var(--sp-12);
  }

  .hero__video-bg {
    display: none;
  }

  .hero__video-overlay {
    display: none;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .product-visual {
    position: static;
    min-height: 280px;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .process-step:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .founder-photo {
    max-width: 200px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .ther-hero {
    padding: var(--sp-16) var(--gutter);
  }

  .ther-hero h1 {
    font-size: var(--text-2xl);
  }

  /* Productie: 6-stappen grid → 1 kolom op mobile */
  .process-steps[style*="repeat(5"] {
    grid-template-columns: 1fr !important;
  }

  .process-step:nth-child(odd) {
    border-right: none;
  }

  /* Shop header stacking */
  .shop-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: var(--sp-2);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
