/* ========================================
    01. Base / Global
    ======================================== */

:root {
    --bg: #f1f1ed;
    --surface: #fff;
    --dark: #171717;
    --muted: #686868;
    --border: #deded8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--dark);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
    02. Hero / Portrait
    ======================================== */

.about-hero {
    min-height: calc(100dvh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(64px, 9vh, 112px) 6vw;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.55), transparent 52%), var(--bg);
}

.eyebrow {
    margin: 0;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(48px, 8vw, 132px);
    align-items: center;
    margin-top: clamp(42px, 7vh, 72px);
}

.about-hero-copy { max-width: 800px; }

.about-hero h1 {
    margin: 0;
    font-size: clamp(58px, 7.5vw, 116px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.about-hero-copy p,
.about-story-copy > p:not(.large-copy),
.focus-grid p {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.about-portrait {
    width: min(100%, 520px);
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 14px;
    background: #dfe2dc;
    box-shadow: 0 28px 70px rgba(23, 23, 23, 0.13);
}

.about-portrait img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1122 / 1294;
    object-fit: cover;
}

.about-portrait span {
    display: block;
    padding: 14px 16px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========================================
    03. Werdegang
    ======================================== */

.about-story {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: clamp(90px, 11vh, 140px) 6vw;
    background: var(--surface);
}

.about-story-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 9vw;
    align-items: start;
}

.about-story h2,
.about-focus-heading h2,
.about-cta h2 {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: clamp(40px, 5vw, 72px);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.large-copy {
    max-width: 680px;
    margin: 0 0 32px;
    color: var(--dark);
    font-size: clamp(25px, 2.4vw, 38px);
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 520px;
    margin: 44px 0 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.about-facts span {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-facts p {
    margin: 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
}

.text-link {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* ========================================
    04. Arbeitsweise
    ======================================== */

.about-focus {
    padding: clamp(90px, 11vh, 140px) 6vw;
    background: var(--bg);
}

.about-focus-heading { max-width: 900px; }

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(52px, 7vh, 78px);
}

.focus-grid article {
    min-height: 300px;
    padding: 28px 28px 0 0;
    border-right: 1px solid var(--border);
}

.focus-grid article:not(:first-child) { padding-left: 28px; }
.focus-grid article:last-child { border-right: 0; }

.focus-grid span {
    display: block;
    margin-bottom: 64px;
    color: #999;
    font-size: 12px;
    font-weight: 700;
}

.focus-grid h3 {
    margin: 0 0 16px;
    font-size: 25px;
    letter-spacing: -0.025em;
}

/* ========================================
    05. Call to Action
    ======================================== */

.about-cta {
    min-height: 64dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 6vw;
    background: var(--dark);
    color: #fff;
    text-align: center;
}

.about-cta .eyebrow { color: #888; }
.about-cta h2 { max-width: 900px; }

.about-cta-link {
    margin-top: 38px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .about-hero-grid,
    .about-story-grid {
        grid-template-columns: 1fr 0.72fr;
        gap: 48px;
    }

    .about-hero h1 { font-size: clamp(54px, 7vw, 88px); }

    .about-portrait {
        width: min(100%, 460px);
        justify-self: start;
    }
}

@media (min-width: 701px) and (max-width: 1100px) and (orientation: landscape) {
    .about-story {
        min-height: 100dvh;
        padding: 52px;
    }

    .about-story-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 52px;
    }

    .about-story h2 {
        font-size: clamp(40px, 4.6vw, 58px);
    }

    .large-copy {
        margin-bottom: 24px;
        font-size: clamp(22px, 2.4vw, 30px);
    }

    .about-facts {
        gap: 16px;
        margin: 28px 0 24px;
        padding-top: 20px;
    }

    .about-facts p {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .about-hero {
        min-height: calc(100dvh - 70px);
        padding: 56px 24px 72px;
    }

    .about-hero-grid { margin-top: 44px; }
    .about-hero h1 { font-size: clamp(48px, 14vw, 68px); }

    .about-hero-copy p,
    .about-story-copy > p:not(.large-copy),
    .focus-grid p { font-size: 17px; }

    .about-portrait {
        width: min(100%, 330px);
        justify-self: center;
        border-radius: 10px;
    }

    .about-story {
        min-height: 0;
        padding: 84px 24px 96px;
    }

    .about-story h2,
    .about-focus-heading h2,
    .about-cta h2 { font-size: clamp(38px, 11vw, 54px); }

    .about-facts {
        gap: 20px;
        margin-top: 40px;
    }

    .about-focus { padding: 84px 24px 96px; }
    .focus-grid { grid-template-columns: 1fr; margin-top: 50px; }

    .focus-grid article,
    .focus-grid article:not(:first-child) {
        min-height: 0;
        padding: 28px 0 42px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .focus-grid article:last-child { border-bottom: 0; }
    .focus-grid span { margin-bottom: 42px; }

    .about-cta {
        min-height: 70dvh;
        padding: 88px 24px;
    }
}
