/* ═══════════════════════════════════════════════════════
   Component: About — O mnie
   ═══════════════════════════════════════════════════════ */

.dc-about {
    padding: 14vh 0 10vh;
}

/* ── Intro ────────────────────────────────────────────── */

.dc-about__intro {
    margin-bottom: 60px;
}

.dc-about__heading {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
}

/* ── Hero split — portrait + bio ──────────────────────── */

.dc-about__hero {
    display: grid;
    grid-template-columns: 0.48fr 0.52fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 14vh;
}

/* Portrait */
.dc-about__portrait {
    position: relative;
}

.dc-about__portrait-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 2;
}

.dc-about__portrait-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.dc-about__portrait-accent {
    position: absolute;
    inset: 14px -14px -14px 14px;
    border-radius: 30px;
    border: 2px solid var(--accent-blue);
    opacity: 0.2;
    z-index: 1;
}

/* Bio */
.dc-about__role {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.76rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.dc-about__name {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 22px;
    line-height: 1.05;
}

.dc-about__bio p {
    max-width: 52ch;
}

.dc-about__quote {
    margin-top: 28px;
    padding-left: 22px;
    border-left: 3px solid var(--accent-blue);
    font-family: var(--dc-font-heading);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    line-height: 1.55;
    max-width: 44ch;
}

/* ── Story block ──────────────────────────────────────── */

.dc-about__story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 14vh;
}

.dc-about__story-visual {
    position: relative;
    min-height: 520px;
}

.dc-about__story-img {
    position: absolute;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dc-about__story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-about__story-img--main {
    width: 72%;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
}

.dc-about__story-img--small {
    width: 52%;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.dc-about__section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    margin-bottom: 18px;
    line-height: 1;
}

/* Checklist */
.dc-about__checklist {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dc-about__checklist li {
    position: relative;
    padding-left: 28px;
    line-height: 1.65;
    color: var(--muted);
    font-size: 0.95rem;
}

.dc-about__checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1rem;
}

.dc-about__insight {
    margin-top: 18px;
    font-weight: 500;
    color: var(--text);
    font-style: italic;
    font-family: var(--dc-font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    border-left: 3px solid var(--accent-pink);
    padding-left: 18px;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

/* ── Values block ─────────────────────────────────────── */

.dc-about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 6vh;
}

.dc-about__values-collage {
    position: relative;
    min-height: 520px;
}

.dc-about__values-img {
    position: absolute;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dc-about__values-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-about__values-img--a {
    width: 60%;
    height: 400px;
    top: 0;
    right: 0;
    z-index: 2;
}

.dc-about__values-img--b {
    width: 52%;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.dc-about__values-badge {
    position: absolute;
    right: 24px;
    bottom: 80px;
    z-index: 4;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
    text-align: center;
}

.dc-about__values-badge strong {
    display: block;
    font-family: var(--dc-font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-pink);
    line-height: 1;
    margin-bottom: 4px;
}

.dc-about__values-badge span {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 1080px) {
    .dc-about__hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dc-about__portrait-frame img {
        max-height: 520px;
    }

    .dc-about__story,
    .dc-about__values {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .dc-about__story-visual {
        min-height: 400px;
    }

    .dc-about__values-collage {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .dc-about__heading {
        max-width: none;
    }

    .dc-about__hero,
    .dc-about__story {
        margin-bottom: 8vh;
    }

    .dc-about__values {
        margin-bottom: 0;
    }

    .dc-about__story-visual {
        min-height: 340px;
    }

    .dc-about__story-img--main {
        width: 72%;
        height: 300px;
    }

    .dc-about__story-img--small {
        width: 52%;
        height: 200px;
    }

    .dc-about__values-collage {
        min-height: 340px;
    }

    .dc-about__values-img--a {
        width: 62%;
        height: 300px;
    }

    .dc-about__values-img--b {
        width: 50%;
        height: 220px;
    }

    /* On mobile, swap values order so copy comes first */
    .dc-about__values {
        direction: ltr;
    }

    .dc-about__values-copy {
        order: -1;
    }

    .dc-about__section-title {
        max-width: none;
    }
}
