/* ============================================================
   OVER-ONS.CSS — Mensen, geen brochure
   ============================================================ */

/* ── Openingsscherm: één zin, veel lucht ────────────────────── */
.hero-over {
    padding: 160px 5% 120px;
    border-bottom: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-over .sec-label { margin-bottom: 28px; }

.hero-over h1 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
    color: var(--ink);
    max-width: 820px;
}
.hero-over h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-soft);
}


/* ── Drie portretten — de kern van de pagina ────────────────── */
.portraits {
    border-bottom: 1px solid var(--border);
}

.portrait {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    border-bottom: 1px solid var(--border);
}
.portrait:last-child { border-bottom: none; }

/* Wissel links/rechts per persoon */
.portrait:nth-child(even) { direction: rtl; }
.portrait:nth-child(even) > * { direction: ltr; }

/* Foto helft */
.portrait-photo {
    position: relative;
    overflow: hidden;
    background: var(--surface-2);
}

.portrait-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Placeholder */
.portrait-photo .ph-bg {
    position: absolute;
    inset: 0;
}
.ph-ahmed { background: #E8F0FE; }
.ph-anass { background: #EDE9FE; }

.portrait-photo .ph-letter {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 220px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}
.ph-ahmed .ph-letter { color: rgba(37,99,235,0.08); }
.ph-anass .ph-letter { color: rgba(109,40,217,0.08); }

.ph-label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px dashed;
}
.ph-ahmed .ph-label { color: rgba(37,99,235,0.4); border-color: rgba(37,99,235,0.2); background: rgba(255,255,255,0.8); }
.ph-anass .ph-label { color: rgba(109,40,217,0.4); border-color: rgba(109,40,217,0.2); background: rgba(255,255,255,0.8); }

/* Tekst helft */
.portrait-text {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.portrait:nth-child(even) .portrait-text {
    background: var(--surface);
}

.portrait-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 20px;
}

.portrait-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 6px;
}

.portrait-discipline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 36px;
}

/* De persoonlijke quote — het hart van elk portret */
.portrait-quote {
    font-size: clamp(17px, 1.6vw, 20px);
    font-style: italic;
    color: var(--ink);
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 2px solid var(--ink);
}

.portrait-bio {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.85;
    margin-bottom: 32px;
}

/* Kleine persoonlijke details */
.portrait-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-mid);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 3px;
}
.portrait:nth-child(even) .pd-item {
    background: #fff;
}
.pd-icon {
    font-size: 13px;
    line-height: 1;
}


/* ── Skills binnen portretten ──────────────────────────────── */
.portrait-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.ps-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--ink);
    margin-bottom: 14px;
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ps-item {
    font-size: 13px;
    color: var(--ink-mid);
    line-height: 1.5;
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.portrait:nth-child(even) .ps-item {
    background: #fff;
}

.ps-certs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ps-cert {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.portrait:nth-child(even) .ps-cert {
    background: #fff;
}

.ps-cert-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.ps-cert-org {
    font-size: 12px;
    color: var(--ink-faint);
}


/* ── Het verhaal — kort en eerlijk ─────────────────────────── */
.verhaal {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.verhaal-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.verhaal-left {}

.verhaal-left h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 32px;
}

.verhaal-left p {
    font-size: 16.5px;
    color: var(--ink-soft);
    line-height: 1.9;
    margin-bottom: 20px;
}
.verhaal-left p:last-child { margin-bottom: 0; }

.verhaal-right {
    padding-top: 8px;
}

/* Drie korte waarden — geen opsomming, maar zinnen */
.waarden {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.waarde {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.waarde:first-child { border-top: 1px solid var(--border); }

.waarde-titel {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.waarde-tekst {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.75;
}


/* ── Outro — donkere afsluiter ──────────────────────────────── */
.outro {
    background: var(--ink);
    padding: 120px 0;
}

.outro-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 5%;
}

.outro-inner .sec-label {
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.outro-inner h2 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.outro-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
    margin-bottom: 14px;
}

.outro-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.outro-inner .btn-primary {
    background: #fff;
    color: var(--ink);
}
.outro-inner .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .portrait               { grid-template-columns: 1fr; min-height: auto; }
    .portrait:nth-child(even) { direction: ltr; }
    .portrait-photo         { height: 360px; }
    .portrait-text          { padding: 48px 40px; }
    .verhaal-inner          { grid-template-columns: 1fr; gap: 56px; }
    .portrait-skills        { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-over              { padding: 120px 5% 80px; }
    .portrait-photo         { height: 360px; }
    .portrait-text          { padding: 40px 5%; }
    .nav-links              { display: none; }
    .hamburger              { display: flex; }
}

@media (max-width: 480px) {
    .outro-btns             { flex-direction: column; }
}