/* ─── Brand intro sectie ─────────────────────────────────────────────────────── */

.pf-brand-intro__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
}

.pf-brand-intro__text {
  max-width: 600px;
}

.pf-brand-intro__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  margin-bottom: 32px;
}

.pf-brand-intro__body p {
  margin-bottom: 1em;
}

.pf-brand-intro__usps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-brand-intro__usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wp--preset--color--dark);
}

.pf-brand-intro__usps li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--wp--preset--color--green);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.pf-brand-intro__why {
  font-size: 14px;
  line-height: 1.7;
  color: var(--wp--preset--color--text-muted);
  padding: 20px;
  background: var(--wp--preset--color--cream);
  border-left: 3px solid var(--wp--preset--color--green);
  border-radius: 0 4px 4px 0;
  margin: 0;
}

.pf-brand-intro__image {
  position: sticky;
  top: 120px;
}

.pf-brand-intro__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.pf-brand-intro__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wp--preset--color--cream);
  border-radius: 8px;
  min-height: 300px;
}

.pf-brand-intro__name-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  padding: 48px;
}

.pf-brand-intro__name-card span {
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  color: var(--wp--preset--color--dark);
  text-align: center;
  line-height: 1.1;
}

/* ─── Brand gallery ──────────────────────────────────────────────────────────── */

.pf-brand-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.pf-brand-gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .pf-brand-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }

  .pf-brand-intro__image {
    position: static;
    order: -1;
  }

  .pf-brand-intro__img {
    max-height: 300px;
  }
}
