/* =========================
   INFO PAGES
========================= */

.info-page {
    width: 100%;
    min-height: calc(100vh - 96px);
    background: #f3f2ee;
    color: #050505;
}

.info-page__inner {
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
    padding: clamp(34px, 3.4vw, 58px) 0 clamp(58px, 5vw, 86px);
}

/* =========================
   COMMON BACK LINK
========================= */

.info-back {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: clamp(18px, 1.8vw, 28px);
    color: #050505;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: color 0.18s ease;
}

.info-back:hover {
    color: #ff2118;
}

/* =========================
   ABOUT HERO
========================= */

.info-hero {
    margin-bottom: clamp(30px, 3.2vw, 52px);
}

.info-hero__accent {
    width: 58px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
}

.info-hero__accent span {
    width: 9px;
    height: 24px;
    display: block;
    background: #ff2118;
    transform: skewX(-16deg);
}

.info-hero h1 {
    max-width: 960px;
    margin: 0;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(54px, 6vw, 110px);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.085em;
    text-transform: uppercase;
    transform: scaleX(0.96) scaleY(1.1);
    transform-origin: left bottom;
}

.info-hero p {
    max-width: 760px;
    margin: clamp(20px, 1.6vw, 28px) 0 0;
    color: rgba(5, 5, 5, 0.58);
    font-size: clamp(14px, 0.96vw, 17px);
    font-weight: 800;
    line-height: 1.36;
}

/* =========================
   ABOUT GRID
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: clamp(14px, 1.5vw, 22px);
    margin-bottom: clamp(28px, 3vw, 46px);
}

.about-card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(22px, 2.2vw, 32px);
    border: 1px solid rgba(5, 5, 5, 0.16);
    background: rgba(255, 255, 255, 0.16);
}

.about-card--main {
    background: #050505;
    color: #ffffff;
}

.about-card span {
    color: #ff2118;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.4vw, 44px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.075em;
}

.about-card h2 {
    margin: auto 0 14px;
    color: currentColor;
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 54px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.078em;
    text-transform: uppercase;
}

.about-card p {
    margin: 0;
    color: rgba(5, 5, 5, 0.62);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.38;
}

.about-card--main p {
    color: rgba(255, 255, 255, 0.64);
}

/* =========================
   INFO DOC LINKS
========================= */

.info-docs {
    padding-top: clamp(28px, 3vw, 44px);
    border-top: 2px solid #050505;
}

.info-docs__head {
    margin-bottom: clamp(18px, 2vw, 28px);
}

.info-docs__head span {
    display: block;
    margin-bottom: 10px;
    color: rgba(5, 5, 5, 0.54);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}

.info-docs__head h2 {
    margin: 0;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.078em;
    text-transform: uppercase;
}

.info-docs__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.info-docs__links a {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 clamp(14px, 1.6vw, 24px);
    border-bottom: 1px solid rgba(5, 5, 5, 0.16);
    color: #050505;
    font-size: clamp(13px, 0.96vw, 16px);
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        padding-left 0.18s ease;
}

.info-docs__links a:nth-child(odd) {
    border-right: 1px solid rgba(5, 5, 5, 0.16);
}

.info-docs__links a span {
    color: #ff2118;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.info-docs__links a:hover {
    padding-left: clamp(20px, 2vw, 32px);
    background: rgba(255, 33, 24, 0.07);
    color: #ff2118;
}

/* =========================
   DOCUMENT PAGE
========================= */

.info-page--document .info-page__inner {
    width: min(100% - 32px, 980px);
}

.info-document-head {
    margin-bottom: clamp(26px, 3vw, 44px);
    padding-bottom: clamp(22px, 2.4vw, 34px);
    border-bottom: 1px solid rgba(5, 5, 5, 0.16);
}

.info-document-label {
    width: fit-content;
    margin-bottom: 14px;
    color: #ff2118;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.info-document-head h1 {
    max-width: 860px;
    margin: 0;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(34px, 3.4vw, 58px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.info-document-head p {
    max-width: 760px;
    margin: clamp(14px, 1.4vw, 20px) 0 0;
    color: rgba(5, 5, 5, 0.62);
    font-size: clamp(14px, 0.96vw, 17px);
    font-weight: 800;
    line-height: 1.45;
}

.info-document-date {
    width: fit-content;
    margin-top: 18px;
    color: rgba(5, 5, 5, 0.48);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.info-document {
    width: 100%;
}

.info-document-section {
    margin-bottom: clamp(24px, 2.4vw, 34px);
}

.info-document-section:last-child {
    margin-bottom: 0;
}

.info-document-section h2 {
    margin: 0 0 12px;
    color: #050505;
    font-family: var(--font-display);
    font-size: clamp(20px, 1.45vw, 27px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.info-document-section p {
    max-width: 880px;
    margin: 0;
    color: rgba(5, 5, 5, 0.72);
    font-size: clamp(14px, 0.96vw, 16px);
    font-weight: 650;
    line-height: 1.65;
}

.info-document-section p + p {
    margin-top: 11px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        min-height: 230px;
    }

    .info-docs__links {
        grid-template-columns: 1fr;
    }

    .info-docs__links a:nth-child(odd) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .info-page__inner,
    .info-page--document .info-page__inner {
        width: min(100% - 18px, 1320px);
        padding-top: 26px;
        padding-bottom: 52px;
    }

    .info-hero h1 {
        font-size: clamp(42px, 14vw, 70px);
        transform: scaleX(0.98) scaleY(1.08);
    }

    .info-hero p {
        font-size: 13px;
    }

    .about-card {
        min-height: 210px;
        padding: 20px 16px;
    }

    .info-document-head h1 {
        font-size: clamp(30px, 8vw, 44px);
        line-height: 0.96;
        letter-spacing: -0.05em;
    }

    .info-document-head p {
        font-size: 13px;
    }

    .info-document-section h2 {
        font-size: clamp(19px, 5.6vw, 26px);
    }

    .info-document-section p {
        font-size: 13px;
        line-height: 1.58;
    }
}

@media (max-width: 420px) {
    .info-page__inner,
    .info-page--document .info-page__inner {
        width: min(100% - 14px, 1320px);
    }

    .info-hero h1 {
        font-size: 38px;
        transform: none;
    }

    .info-hero__accent {
        margin-bottom: 14px;
    }

    .about-card h2 {
        font-size: 30px;
    }

    .info-docs__links a {
        min-height: 68px;
        font-size: 13px;
    }

    .info-document-head {
        margin-bottom: 24px;
        padding-bottom: 22px;
    }

    .info-document-head h1 {
        font-size: 30px;
    }

    .info-document-section {
        margin-bottom: 26px;
    }
}