.why-page {
    min-width: 320px;
}

.why-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    padding: clamp(32px, 5vh, 56px) clamp(32px, 5.2vw, 80px) 0;
}

.why-header__identity {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55em;
    margin: 0;
    color: #747474;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1.55;
    text-transform: uppercase;
}

.why-header__identity a {
    color: var(--ink);
    text-decoration: none;
}

.why-header__back {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-top: 1px;
    padding: 4px 0 5px;
    border-bottom: 1px solid rgba(11, 11, 11, 0.35);
    color: #5f5f5f;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease;
}

.why-header__back:hover,
.why-header__back:focus-visible {
    border-color: var(--ink);
    color: var(--ink);
}

.why-header__identity a:focus-visible,
.why-header__back:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 4px;
}

.why-main {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(420px, 680px);
    column-gap: clamp(56px, 6vw, 92px);
    row-gap: 0;
    align-items: start;
    width: min(calc(100% - clamp(64px, 11.3vw, 176px)), 1240px);
    margin: clamp(72px, 10vw, 148px) auto clamp(96px, 12vw, 168px);
}

.why-intro {
    min-width: 0;
}

.why-intro__heading {
    min-width: 0;
}

.why-intro__eyebrow {
    margin: 0 0 28px;
    color: #747474;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    line-height: 1.4;
    text-transform: uppercase;
}

.why-intro h1 {
    width: fit-content;
    max-width: 1180px;
    margin: 0;
    background: var(--paper);
    font-family: var(--sans);
    font-size: clamp(64px, 8vw, 112px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.why-intro h1 span {
    display: block;
}

.why-intro h1 span + span {
    margin-top: 0.08em;
}

.why-intro__portrait {
    width: 84%;
    margin-top: clamp(64px, 7vw, 104px);
}

.why-story {
    min-width: 0;
}

.why-portrait {
    min-width: 0;
    margin: 0;
}

.why-portrait img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 13px;
    border: 1px solid var(--guide-line);
    border-radius: 3px;
    background: #fff;
}

.why-portrait figcaption {
    margin-top: 12px;
    color: #888;
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-align: center;
}

.why-copy {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(44px, 5vw, 72px);
    background: rgba(251, 251, 250, 0.97);
}

.why-copy p {
    max-width: 44ch;
    margin: 0;
    color: #585858;
    font-family: "Inter", var(--sans);
    font-size: 17px;
    line-height: 1.72;
}

.why-copy p + p {
    margin-top: 24px;
}

.why-copy .why-copy__opening {
    color: #303030;
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.66;
}

.why-copy__divider {
    width: 52px;
    height: 1px;
    margin: clamp(40px, 5vw, 60px) 0;
    background: rgba(11, 11, 11, 0.35);
}

.why-copy .why-copy__closing {
    margin-top: 38px;
    color: var(--ink);
    font-weight: 500;
}

.why-copy .why-copy__welcome {
    margin-top: 8px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.25;
}

.why-signature {
    display: block;
    width: min(100%, 230px);
    height: auto;
    margin: 8px 0 0 auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 900px) {
    .why-main {
        display: block;
        width: min(calc(100% - 64px), 760px);
        margin-top: clamp(72px, 10vw, 112px);
        margin-bottom: 104px;
    }

    .why-intro h1 {
        font-size: clamp(58px, 10.5vw, 86px);
    }

    .why-intro__portrait {
        width: min(64%, 340px);
        margin-top: 56px;
    }

    .why-story {
        width: 100%;
        margin-top: 64px;
    }

    .why-copy {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .why-header {
        padding: 25px 20px 0;
    }

    .why-header__identity {
        display: block;
        max-width: 16ch;
        font-size: 11px;
        letter-spacing: 0.18em;
        line-height: 1.7;
    }

    .why-header__back {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .why-main {
        width: calc(100% - 40px);
        margin-top: 84px;
        margin-bottom: 88px;
    }

    .why-intro__eyebrow {
        margin-bottom: 22px;
        font-size: 11px;
        letter-spacing: 0.2em;
    }

    .why-intro h1 {
        font-size: clamp(46px, 15vw, 68px);
        line-height: 0.94;
    }

    .why-intro__portrait {
        width: min(72%, 280px);
        margin-top: 46px;
    }

    .why-story {
        margin-top: 56px;
    }

    .why-portrait figcaption {
        margin-top: 9px;
        font-size: 11px;
    }

    .why-copy {
        width: 100%;
        padding: 34px 26px 38px;
    }

    .why-copy p,
    .why-copy .why-copy__opening {
        font-size: 16px;
        line-height: 1.68;
    }

    .why-copy__divider {
        margin: 42px 0;
    }

    .why-signature {
        width: 180px;
        margin-top: 14px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .why-intro__eyebrow,
    .why-intro h1,
    .why-story {
        animation: why-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .why-intro h1 {
        animation-delay: 80ms;
    }

    .why-story {
        animation-delay: 160ms;
    }
}

@keyframes why-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
