/* ============================================================
   Over Sarrai — eigen ritme, geen hero-spotlight,
   meer ruimte voor tekst, typografische hiërarchie via
   eyebrows en nummering. Bouwt op site.css + tokens.css.
   ============================================================ */

/* Crumb + eyebrow */
.ab-crumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 32px;
}
.ab-crumb a { color: var(--fg-3); }
.ab-crumb a:hover { color: var(--brand-navy); }
.ab-crumb svg { opacity: 0.5; }

.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--brand-navy-100);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.ab-eyebrow__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand-orange);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--brand-orange) 18%, transparent);
}

/* ============================================================
   Hero — rustig, geen radial-spotlight. Alles hangt aan type.
   ============================================================ */
.ab-hero {
  padding-block: clamp(72px, 7vw, 112px) clamp(56px, 6vw, 88px);
  background: var(--bg-app);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side,
    color-mix(in oklch, var(--brand-orange) 11%, transparent) 0%,
    transparent 70%);
  pointer-events: none;
}
.ab-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 900px) {
  .ab-hero__grid { grid-template-columns: 1fr; gap: 24px; }
}
.ab-hero__title {
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(2.25rem, 1.1rem + 3.6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.03;
  color: var(--brand-navy-800);
  max-width: 18ch;
  margin: 0;
  text-wrap: balance;
}
.ab-hero__lede {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 46ch;
  margin: 0;
}

/* ============================================================
   Section-scaffold: eyebrow/nummer + title, gedeeld door 3 secties
   ============================================================ */
.ab-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.ab-section-tag > span {
  width: 28px; height: 28px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.ab-section__title {
  font-size: clamp(1.75rem, 1.1rem + 2vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-navy-800);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 0 24px;
  text-wrap: balance;
}
.ab-section__title--side {
  font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
  max-width: 18ch;
  margin-top: 0;
}

.ab-prose p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0 0 18px;
}
.ab-prose p:last-child { margin-bottom: 0; }
.ab-prose b { color: var(--fg-1); font-weight: 600; }

/* ============================================================
   Waarom (sectie 01)
   ============================================================ */
.ab-why {
  padding-block: clamp(56px, 6vw, 96px);
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
}

/* ============================================================
   Founder quote — tekst-only, geen foto
   ============================================================ */
.ab-founder {
  padding-block: clamp(48px, 5vw, 80px);
  background: var(--bg-app);
}
.ab-founder__card {
  position: relative;
  background: linear-gradient(180deg,
    color-mix(in oklch, var(--brand-navy) 96%, #fff) 0%,
    var(--brand-navy) 100%);
  color: rgba(255,255,255,0.94);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 20px 48px -24px rgba(37,43,72,0.35);
  overflow: hidden;
  isolation: isolate;
}
.ab-founder__card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(235,120,14,0.28), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.ab-founder__mark {
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 0.8;
  margin-bottom: -10px;
  margin-left: -4px;
}
.ab-founder__quote {
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(1.2rem, 0.95rem + 1.2vw, 1.75rem);
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 50ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.ab-founder__who {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.ab-founder__avatar {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: grid; place-items: center;
  letter-spacing: 0.02em;
}
.ab-founder__who b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.ab-founder__who span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.ab-founder__link {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  display: inline-grid; place-items: center;
  transition: background 180ms, color 180ms;
}
.ab-founder__link:hover {
  background: #fff;
  color: var(--brand-navy);
}

/* ============================================================
   Principes (sectie 02) — genummerde rijen, geen kaarten-grid
   ============================================================ */
.ab-principles {
  padding-block: clamp(56px, 6vw, 96px);
  background: #fff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.ab-principles__list {
  display: grid;
  gap: 0;
}
.ab-principle {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}
.ab-principle:first-child { border-top: none; padding-top: 8px; }
.ab-principle:last-child { padding-bottom: 8px; }
.ab-principle__num {
  font-family: var(--font-display, var(--font-sans));
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-orange);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
  line-height: 1.2;
}
.ab-principle__body h3 {
  font-size: clamp(1.125rem, 0.95rem + 0.7vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-navy-800);
  margin: 0 0 10px;
  line-height: 1.3;
  text-wrap: balance;
}
.ab-principle__body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
}
.ab-principle__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-navy-50);
  color: var(--brand-navy);
  display: inline-grid; place-items: center;
  flex: none;
}
.ab-principle:nth-child(1) .ab-principle__ico { background: color-mix(in oklch, var(--brand-orange) 14%, #fff); color: var(--brand-orange-700); }
.ab-principle:nth-child(3) .ab-principle__ico { background: var(--success-bg); color: var(--success-fg); }
@media (max-width: 720px) {
  .ab-principle {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .ab-principle__ico { display: none; }
}

/* ============================================================
   Aanpak (sectie 03)
   ============================================================ */
.ab-approach {
  padding-block: clamp(56px, 6vw, 96px);
  background: var(--bg-app);
}
.ab-approach__tags {
  margin-top: 28px;
  display: flex; flex-wrap: wrap;
  gap: 10px 12px;
}
.ab-approach__tags span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-2);
}
.ab-approach__tags svg {
  color: var(--success);
}

/* ============================================================
   CTA
   ============================================================ */
.ab-cta {
  padding-block: clamp(64px, 7vw, 104px);
  background: var(--bg-app);
  border-top: 1px solid var(--border-subtle);
}
.ab-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 48px);
  background: linear-gradient(160deg,
    color-mix(in oklch, var(--brand-orange) 12%, #fff) 0%,
    #fff 60%);
  border: 1px solid color-mix(in oklch, var(--brand-orange) 25%, transparent);
  border-radius: var(--r-2xl);
  box-shadow: 0 18px 40px -24px rgba(235,120,14,0.25);
}
.ab-cta h2 {
  font-size: clamp(1.75rem, 1.1rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-800);
  margin: 0 0 14px;
}
.ab-cta p {
  color: var(--fg-2);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto 28px;
}
.ab-cta__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
