/* Floral Profit — testimonial wall (landing) + case-study pages.
   Reuses tokens from styles.css. Loaded after styles.css. */

/* ════════════════════════════════════════════════════════════════════
   LANDING — testimonial wall additions
   ════════════════════════════════════════════════════════════════════ */

/* Photo avatar inside the featured case cards */
.fp-case-avatar.has-photo {
  background: var(--fp-accent-soft);
  overflow: hidden;
  padding: 0;
}
.fp-case-avatar.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fp-case-avatar-lg { width: 52px; height: 52px; }

/* whole featured card is a link */
a.fp-case { text-decoration: none; color: inherit; }

/* Second tier — short quotes (no photo, no story) */
.fp-quotes-sub {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--fp-content);
  margin: 56px auto 28px;
  color: var(--fp-muted);
}
.fp-quotes-sub::before,
.fp-quotes-sub::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--fp-line);
}
.fp-quotes-sub span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fp-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fp-quote-card {
  background: var(--fp-bg-warm);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fp-quote-card p {
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--fp-ink);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.fp-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fp-quote-mono {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fp-accent-soft);
  color: var(--fp-accent);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-quote-name { font-weight: 700; color: var(--fp-ink); font-size: 15px; }
.fp-quote-meta { font-size: 13px; color: var(--fp-muted); margin-top: 2px; }

/* ════════════════════════════════════════════════════════════════════
   CASE-STUDY PAGES
   ════════════════════════════════════════════════════════════════════ */
.cs-body { background: var(--fp-bg); }

/* hero band */
.cs-hero {
  background: var(--fp-bg-warm);
  border-bottom: 1px solid var(--fp-line);
}
.cs-hero-inner {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 28px 32px 60px;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-muted);
  margin-bottom: 40px;
}
.cs-back:hover { color: var(--fp-accent); }
.cs-back .cs-arrow-l { transition: transform .15s ease; }
.cs-back:hover .cs-arrow-l { transform: translateX(-3px); }

.cs-hero-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 18px;
}
.cs-hero-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--fp-ink);
  margin: 0 0 14px;
  max-width: 16ch;
  text-wrap: balance;
}
.cs-hero-title.is-quote { font-family: var(--fp-font-serif); font-weight: 700; font-style: italic; letter-spacing: -0.01em; max-width: 20ch; }
.cs-hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fp-ink-2);
  max-width: 60ch;
  margin: 0 0 32px;
}
.cs-hero-person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs-portrait {
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--fp-accent-soft);
  flex-shrink: 0;
  box-shadow: var(--fp-shadow-sm);
}
.cs-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-person-name { font-weight: 800; color: var(--fp-ink); font-size: 17px; }
.cs-person-meta { font-size: 14px; color: var(--fp-muted); margin-top: 2px; }

/* layout */
.cs-layout {
  max-width: var(--fp-content);
  margin: 0 auto;
  padding: 64px 32px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

/* article */
.cs-article { min-width: 0; }
.cs-article > *:first-child { margin-top: 0; }
.cs-article h3 {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fp-ink);
  margin: 40px 0 14px;
}
.cs-article p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fp-ink-2);
  margin: 0 0 20px;
}
.cs-q {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin: 40px 0 12px;
}
.cs-note {
  font-size: 14px;
  color: var(--fp-muted);
  background: var(--fp-bg-2);
  border: 1px solid var(--fp-line);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 32px;
}
.cs-note a { color: var(--fp-accent); font-weight: 700; }

/* pull quote */
.cs-pull {
  border-left: 3px solid var(--fp-accent);
  padding: 6px 0 6px 28px;
  margin: 36px 0;
}
.cs-pull p {
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-size: 27px;
  line-height: 1.35;
  color: var(--fp-ink);
  margin: 0;
  text-wrap: pretty;
}

/* three words highlight (Nenah) */
.cs-words {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 8px;
}
.cs-word {
  background: var(--fp-accent-soft);
  color: var(--fp-accent);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
}

/* video */
.cs-video {
  position: relative;
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  background: #0d1117;
  aspect-ratio: 16 / 9;
  margin: 0 0 36px;
  box-shadow: var(--fp-shadow-md);
  cursor: pointer;
}
.cs-video img, .cs-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cs-video-poster::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,12,14,0.45), rgba(8,12,14,0.05));
}
.cs-video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--fp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,152,90,0.45);
  z-index: 2;
  transition: transform .15s ease;
}
.cs-video:hover .cs-video-play { transform: translate(-50%, -50%) scale(1.06); }
.cs-video-play::before {
  content: "\25B6";
  color: #fff;
  font-size: 30px;
  line-height: 1;
  margin-left: 5px;
}
.cs-video-label {
  position: absolute;
  left: 22px; bottom: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* sidebar */
.cs-aside { position: sticky; top: 28px; display: flex; flex-direction: column; gap: 24px; }
.cs-aside-card {
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 24px;
  background: #fff;
}
.cs-aside-h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-muted);
  margin-bottom: 18px;
}
.cs-mini {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--fp-line);
}
.cs-mini:first-of-type { border-top: none; padding-top: 0; }
.cs-mini-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--fp-accent-soft);
  flex-shrink: 0;
}
.cs-mini-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-mini-name { font-weight: 700; font-size: 14.5px; color: var(--fp-ink); }
.cs-mini-name .cs-mini-arrow { color: var(--fp-accent); transition: transform .15s ease; display: inline-block; }
.cs-mini:hover .cs-mini-arrow { transform: translateX(3px); }
.cs-mini-meta { font-size: 12.5px; color: var(--fp-muted); margin-top: 1px; }
.cs-mini-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--fp-accent); color: #fff; font-size: 6px;
  vertical-align: middle; margin-left: 4px;
}

/* sidebar CTA */
.cs-cta-card {
  background: var(--fp-ink);
  color: #fff;
  border-radius: var(--fp-radius-lg);
  padding: 28px 24px;
}
.cs-cta-card h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.cs-cta-card p { font-size: 14px; color: rgba(255,255,255,0.72); margin: 0 0 20px; line-height: 1.5; }
.cs-cta-card .fp-btn { width: 100%; justify-content: center; }
.cs-cta-note { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 14px; text-align: center; }

/* bottom CTA reuses .fp-final look but scoped tweaks */
.cs-final .fp-final-inner { max-width: 760px; }

/* responsive */
@media (max-width: 920px) {
  .cs-layout { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 72px; }
  .cs-aside { position: static; }
  .fp-quotes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cs-hero-inner { padding: 24px 24px 44px; }
  .cs-back { margin-bottom: 28px; }
}

/* ════════════════════════════════════════════════════════════════════
   VBW — echte logo-tegel + endorsement-quote (Bram Rijkers)
   ════════════════════════════════════════════════════════════════════ */
.fp-vbw-card { row-gap: 16px; }

/* logo tile: neutrale rand i.p.v. groen, gecentreerd beeldmerk */
.fp-vbw-mark-img {
  border-color: var(--fp-line);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.fp-vbw-mark-img img {
  width: 100%;
  max-width: 132px;
  height: auto;
  display: block;
}

/* endorsement quote, volle breedte onder de twee kolommen */
.fp-vbw-quote {
  position: relative;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--fp-line);
  display: flex;
  align-items: center;
  gap: 20px;
}
.fp-vbw-quote-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--fp-accent-soft);
  box-shadow: var(--fp-shadow-sm);
}
.fp-vbw-quote-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-vbw-quote-body { min-width: 0; }
.fp-vbw-quote blockquote {
  margin: 0 0 8px;
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.42;
  color: var(--fp-ink);
  max-width: 68ch;
  text-wrap: pretty;
}
.fp-vbw-quote figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-vbw-quote-name { font-weight: 800; font-size: 14px; color: var(--fp-ink); white-space: nowrap; }
.fp-vbw-quote-role { font-size: 13px; color: var(--fp-muted); }

@media (max-width: 560px) {
  .fp-vbw-quote { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fp-vbw-quote blockquote { font-size: 18px; }
}
